Merge pull request #1639 from johnnyreilly/master

No apparent impact on any other typings (good since undocumented) and so will merge.
This commit is contained in:
John Reilly
2014-01-28 06:55:06 -08:00
2 changed files with 0 additions and 9 deletions
-5
View File
@@ -448,11 +448,6 @@ function test_toggle() {
});
}
function test_easing() {
var result: number = $.easing.linear(3);
var result: number = $.easing.swing(3);
}
function test_append() {
$('.inner').append('<p>Test</p>');
$('.container').append($('h2'));
-4
View File
@@ -1062,10 +1062,6 @@ interface JQueryStatic {
* @param keepScripts A Boolean indicating whether to include scripts passed in the HTML string
*/
parseHTML(data: string, context?: HTMLElement, keepScripts?: boolean): any[];
Animation(elem: any, properties: any, options: any): any;
easing: JQueryEasing;
}
/**