jQuery: removed undocumented properties

This commit is contained in:
John Reilly
2014-01-28 13:57:58 +00:00
parent 72f432b112
commit e65a30bcc8
2 changed files with 0 additions and 9 deletions

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
jquery/jquery.d.ts vendored
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;
}
/**