Skip to content

Commit

Permalink
1.0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
kupriyanenko committed Nov 27, 2014
1 parent a6ccf14 commit a63597d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jbone",
"version": "1.0.19",
"version": "1.0.20",
"main": "dist/jbone.js",
"ignore": [
"**/.*",
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jbone",
"repo": "kupriyanenko/jbone",
"description": "JavaScript Library for DOM manipulation. Replacement jQuery for Backbone in browsers (2.5kb gzipped)",
"version": "1.0.19",
"version": "1.0.20",
"keywords": [
"jquery",
"jbone",
Expand Down
4 changes: 2 additions & 2 deletions dist/jbone.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jBone v1.0.19 - 2014-10-12 - Library for DOM manipulation
* jBone v1.0.20 - 2014-11-27 - Library for DOM manipulation
*
* https://github.com/kupriyanenko/jbone
*
Expand Down Expand Up @@ -780,7 +780,7 @@ fn.append = function(appended) {
setter = function(el, i) {
appended.forEach(function(node) {
if (i) {
el.appendChild(node.cloneNode());
el.appendChild(node.cloneNode(true));
} else {
el.appendChild(node);
}
Expand Down
4 changes: 2 additions & 2 deletions dist/jbone.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jbone",
"title": "jBone",
"version": "1.0.19",
"version": "1.0.20",
"description": "Library for DOM manipulation",
"main": "dist/jbone.js",
"homepage": "https://github.com/kupriyanenko/jbone",
Expand Down

0 comments on commit a63597d

Please sign in to comment.