Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
csuwildcat committed Nov 16, 2015
1 parent 2b41d6c commit 99690f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "x-tag-core",
"description": "X-Tag core library for creating custom elements as defined by the w3c Web Components spec.",
"version": "1.1.24",
"version": "1.1.25",
"keywords": [
"web-components",
"core",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "x-tag",
"description": "The X-Tag core library",
"version": "1.1.24",
"version": "1.1.25",
"homepage": "http://www.x-tags.org",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@
var template = document.createElement('template');
if (content) {
if (content.nodeName) toArray(arguments).forEach(function(e){
template.content.appendChild(e)
template.content.appendChild(e);
});
else template.innerHTML = parseMultiline(content);
}
Expand Down

0 comments on commit 99690f9

Please sign in to comment.