Skip to content

Commit

Permalink
ver 1.0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
kupriyanenko committed Oct 11, 2014
1 parent 27e31bb commit 9abf442
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 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.18",
"version": "1.0.19",
"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.18",
"version": "1.0.19",
"keywords": [
"jquery",
"jbone",
Expand Down
13 changes: 12 additions & 1 deletion dist/jbone.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jBone v1.0.18 - 2014-07-08 - Library for DOM manipulation
* jBone v1.0.19 - 2014-10-12 - Library for DOM manipulation
*
* https://github.com/kupriyanenko/jbone
*
Expand Down Expand Up @@ -604,6 +604,17 @@ fn.attr = function(key, value) {
return this;
};

fn.removeAttr = function(key) {
var i = 0,
length = this.length;

for (; i < length; i++) {
this[i].removeAttribute(key);
}

return this;
};

fn.val = function(value) {
var i = 0,
length = this.length;
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.18",
"version": "1.0.19",
"description": "Library for DOM manipulation",
"main": "dist/jbone.js",
"homepage": "https://github.com/kupriyanenko/jbone",
Expand Down

0 comments on commit 9abf442

Please sign in to comment.