Skip to content

Commit

Permalink
Order matters with native HTML imports in chrome.
Browse files Browse the repository at this point in the history
template was null, fixes #2.
  • Loading branch information
laat committed Jul 14, 2014
1 parent aab5c0e commit df83137
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.0.5 / 2014-07-14
=================
* Fixed: #2 Chashing in Chrome 36

0.0.4 / 2014-03-20
=================
* previous release broken by a typo
Expand Down
2 changes: 1 addition & 1 deletion dist/chess-board.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<meta charset="UTF-8">
<script src="chess-board.js"></script>
<template id="chessBoardTemplate">
<style>
:host {
Expand Down Expand Up @@ -527,3 +526,4 @@
<template id="emptyTemplate">
<span class="empty"></span>
</template>
<script src="chess-board.js"></script>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chess-board",
"version": "0.0.4",
"version": "0.0.5",
"description": "A web component for displaying chess positions.",
"author": "Sigurd Fosseng <[email protected]>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/chess-board.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<meta charset="UTF-8">
<script src="chess-board.js"></script>
<template id="chessBoardTemplate">
<style>
:host {
Expand Down Expand Up @@ -527,3 +526,4 @@
<template id="emptyTemplate">
<span class="empty"></span>
</template>
<script src="chess-board.js"></script>

0 comments on commit df83137

Please sign in to comment.