Rename jQuery.subclass() to jQuery.sub().
This commit is contained in:
parent
d2384ad03a
commit
749d41f7de
2 changed files with 7 additions and 7 deletions
|
@ -957,7 +957,7 @@ jQuery.extend({
|
|||
return { browser: match[1] || "", version: match[2] || "0" };
|
||||
},
|
||||
|
||||
subclass: function(){
|
||||
sub: function() {
|
||||
function jQuerySubclass( selector, context ) {
|
||||
return new jQuerySubclass.fn.init( selector, context );
|
||||
}
|
||||
|
|
|
@ -1129,9 +1129,9 @@ test("jQuery.when() - joined", function() {
|
|||
});
|
||||
});
|
||||
|
||||
test("jQuery.subclass", function(){
|
||||
test("jQuery.sub() - Static Methods", function(){
|
||||
expect(18);
|
||||
var Subclass = jQuery.subclass();
|
||||
var Subclass = jQuery.sub();
|
||||
Subclass.extend({
|
||||
topLevelMethod: function() {return this.debug;},
|
||||
debug: false,
|
||||
|
@ -1151,7 +1151,7 @@ test("jQuery.subclass", function(){
|
|||
equal(jQuery.ajax, Subclass.ajax, 'The subclass failed to get all top level methods');
|
||||
|
||||
//Create a SubSubclass
|
||||
var SubSubclass = Subclass.subclass();
|
||||
var SubSubclass = Subclass.sub();
|
||||
|
||||
//Make Sure the SubSubclass inherited properly
|
||||
ok(SubSubclass.topLevelMethod() === false, 'SubSubclass.topLevelMethod thought debug was true');
|
||||
|
@ -1178,11 +1178,11 @@ test("jQuery.subclass", function(){
|
|||
equal(jQuery.ajax, Subclass.ajax, 'The subclass failed to get all top level methods');
|
||||
});
|
||||
|
||||
test("jQuery.subclass()", function(){
|
||||
test("jQuery.sub() - .fn Methods", function(){
|
||||
expect(378);
|
||||
|
||||
var Subclass = jQuery.subclass(),
|
||||
SubclassSubclass = Subclass.subclass(),
|
||||
var Subclass = jQuery.sub(),
|
||||
SubclassSubclass = Subclass.sub(),
|
||||
jQueryDocument = jQuery(document),
|
||||
selectors, contexts, methods, method, arg, description;
|
||||
|
||||
|
|
Loading…
Reference in a new issue