Updated Readme
This commit is contained in:
parent
9174ceb6dd
commit
ac1bd247b9
@ -19,13 +19,19 @@ Browser support: IE8+, Latest versions of Firefox, Chrome, Safari, Opera
|
|||||||
|
|
||||||
functions:
|
functions:
|
||||||
|
|
||||||
*each: For applying changes to every item matched by a selector
|
* each: For applying changes to every item matched by a selector
|
||||||
Use:
|
Use:
|
||||||
$_(selector).dom.each(callback);
|
$_(selector).dom.each(callback);
|
||||||
|
|
||||||
Example : $_(".foo").dom.each(function(e){
|
Example : $_(".foo").dom.each(function(e){
|
||||||
$_(e).dom.text(value);
|
$_(e).dom.text(value);
|
||||||
}):
|
}):
|
||||||
|
|
||||||
|
* ext: For extending the library, adds this.el to the object or function supplied
|
||||||
|
Use: $_.ext("name", functionOrObject)
|
||||||
|
|
||||||
|
Example: $_.ext("zip", function(){ //function });
|
||||||
|
Adds 'zip' function to $_.
|
||||||
|
|
||||||
|
|
||||||
**Ajax**: simple, jQuery-like ajax functions
|
**Ajax**: simple, jQuery-like ajax functions
|
||||||
|
4
kis.js
4
kis.js
@ -166,13 +166,15 @@
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// --------------------------------------------------------------------------
|
|
||||||
}());
|
}());
|
||||||
|
|
||||||
|
// --------------------------------------------------------------------------
|
||||||
|
|
||||||
(function(){
|
(function(){
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
//Fix $_ is not defined errors
|
||||||
var $_ = $_ || window.$_;
|
var $_ = $_ || window.$_;
|
||||||
|
|
||||||
// Property name for expandos on DOM objects
|
// Property name for expandos on DOM objects
|
||||||
|
Loading…
Reference in New Issue
Block a user