Bugs fixxed:
- I've renamed $.eval to $.execute (since $.$$exec is allready there?) - Commited sam's form function - Removed $.fn.formValues() - Removed $.fn.update() - Removed $.fn.serialize()
This commit is contained in:
parent
69ae9aeab0
commit
6656522705
2 changed files with 198 additions and 106 deletions
6
jquery/jquery.js
vendored
6
jquery/jquery.js
vendored
|
@ -318,7 +318,7 @@ function $(a,c) {
|
|||
return self;
|
||||
}
|
||||
|
||||
$.eval = eval;
|
||||
$.execute = eval;
|
||||
|
||||
$.apply = function(o,f,a) {
|
||||
a = a || [];
|
||||
|
@ -330,7 +330,7 @@ $.apply = function(o,f,a) {
|
|||
p[i] = 'a['+i+']';
|
||||
}
|
||||
o.$$exec = this;
|
||||
var r = $.eval('o.$$exec(' + p.join(',') + ')');
|
||||
var r = $.execute('o.$$exec(' + p.join(',') + ')');
|
||||
o.$$exec = null;
|
||||
return r;
|
||||
}
|
||||
|
@ -625,7 +625,7 @@ $.filter = function(t,r,not) {
|
|||
}
|
||||
|
||||
if ( f !== null ) {
|
||||
$.eval('f = function(a,i){return ' + f + '}');
|
||||
$.execute('f = function(a,i){return ' + f + '}');
|
||||
r = g( r, f );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue