- Add Promise support to HTTP get/post/put/delete methods. Also remove HTTP#callback and #errback methods.
-
Add
Document.bodyandDocument.headshortcut to element instances. -
Add
Eventmethods:prevented?,prevent,stopped?andstopto replace longer javascript names. -
Add
LocalStorageimplementation. -
Fix
Element#data()to returnnilfor an undefined data attribute instead of null. -
Expose
#detachmethod onElement.
-
Support setting html content through
Element#html(). -
Add
Elementmethods:#get,#attrand#propby aliasing them to jquery implementations.
- Require
nativefrom stdlib forHTTPto use.
-
Add
Windowand$windowalias. -
Support
Zeptoas well asjQuery. -
Eventis now a wrapper around native event from dom listeners.
-
Revert earlier commit, and use
$documentas reference to jquery wrappeddocument. -
Introduce Element.document as wrapped document element
-
Depreceate $document.title and $document.title=.
-
Depreceate Document in favor of $document global.
-
Add HTTP.delete() for creating DELETE request.
-
Add Element#method_missing which forwards missing calls to try and call method as a native jquery function/plugin.
-
Depreceate Document finder methods (Document.find, Document[]). The finder methods on Element now replace them. Updated specs to suit.