Skip to content

Commit 80b9925

Browse files
author
Alexey Kupriyanenko
committed
1.2.1
1 parent 4acaaff commit 80b9925

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jbone",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Library for DOM manipulation",
55
"main": "dist/jbone.js",
66
"homepage": "http://jbone.js.org",

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jbone",
33
"repo": "kupriyanenko/jbone",
44
"description": "JavaScript Library for DOM manipulation. Replacement jQuery for Backbone in browsers (2.5kb gzipped)",
5-
"version": "1.2.0",
5+
"version": "1.2.1",
66
"keywords": [
77
"jquery",
88
"jbone",

dist/jbone.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*!
2-
* jBone v1.2.0 - 2016-04-13 - Library for DOM manipulation
2+
* jBone v1.2.1 - 2017-09-19 - Library for DOM manipulation
33
*
44
* http://jbone.js.org
55
*
6-
* Copyright 2016 Alexey Kupriyanenko
6+
* Copyright 2017 Alexey Kupriyanenko
77
* Released under the MIT license.
88
*/
99

@@ -27,7 +27,7 @@ splice = [].splice,
2727
keys = Object.keys,
2828

2929
// Alias for global variables
30-
doc = document,
30+
doc = win.document,
3131

3232
isString = function(el) {
3333
return typeof el === "string";
@@ -1059,4 +1059,4 @@ else if (typeof define === "function" && define.amd) {
10591059
win.jBone = win.$ = jBone;
10601060
}
10611061

1062-
}(window));
1062+
}(typeof window !== "undefined" ? window : this));

dist/jbone.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)