From 6596108635d88116be67f6d22183588822e41c44 Mon Sep 17 00:00:00 2001 From: Gilles van den Hoven Date: Fri, 9 Jun 2006 15:36:06 +0000 Subject: [PATCH] changed $.execute back to eval() --- ajax/ajax.js | 4 ++-- jquery/jquery.js | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/ajax/ajax.js b/ajax/ajax.js index f48f74c..21a9934 100644 --- a/ajax/ajax.js +++ b/ajax/ajax.js @@ -123,7 +123,7 @@ $.fn.load = function(a,o,f) { $.xml(t,a,o,function(res){ // Assign it and execute all scripts self.html(res.responseText).find("script").each(function(){ - try { $.execute( this.text || this.textContent || this.innerHTML || ""); } catch(e){} + try { eval( this.text || this.textContent || this.innerHTML || ""); } catch(e){} }); // Callback function @@ -316,7 +316,7 @@ $.fn.putForm = function(target, pre_cb, post_cb, url, mth) { $(target).load(url, this.vars, post_cb); } else { this.vars.push({name: 'evaljs', value: 1}); - $.xml(mth, url, $.param(this.vars), function(r) { $.execute(r.responseText); }); + $.xml(mth, url, $.param(this.vars), function(r) { eval(r.responseText); }); } return this; diff --git a/jquery/jquery.js b/jquery/jquery.js index a7629d5..a275b02 100644 --- a/jquery/jquery.js +++ b/jquery/jquery.js @@ -318,8 +318,6 @@ function $(a,c) { return self; } -$.execute = eval; - $.apply = function(o,f,a) { a = a || []; if ( f.apply ) { @@ -330,7 +328,7 @@ $.apply = function(o,f,a) { p[i] = 'a['+i+']'; } o.$$exec = this; - var r = $.execute('o.$$exec(' + p.join(',') + ')'); + var r = eval('o.$$exec(' + p.join(',') + ')'); o.$$exec = null; return r; } @@ -625,7 +623,7 @@ $.filter = function(t,r,not) { } if ( f !== null ) { - $.execute('f = function(a,i){return ' + f + '}'); + eval('f = function(a,i){return ' + f + '}'); r = g( r, f ); } } -- 1.7.10.4