Merge pull request #1060 from tbureck/master

Create jquery.sortElements.d.ts
This commit is contained in:
Diullei Gomes
2013-09-18 07:00:12 -07:00
+10
View File
@@ -0,0 +1,10 @@
// Typescript type definitions for jQuery.sortElements by James Padolsey <http://james.padolsey.com/javascript/sorting-elements-with-jquery/>
// Project: http://james.padolsey.com/javascript/sorting-elements-with-jquery/
// Definitions by: Tim Bureck <https://github.com/tbureck>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path='../jquery/jquery.d.ts'/>
interface JQuery {
sortElements(comparator:Function, getSortable?:Function):JQuery;
}