aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2007-08-24 01:06:23 +0000
committerJohn Resig <jeresig@gmail.com>2007-08-24 01:06:23 +0000
commit4df20c0c1b8506981087dd8702f3a076bd57d017 (patch)
tree78e4a0a1cf0c9dd6a8ac51f0429973e72a6b1895
parentf948f026809eab3d238cf6dc369cb5b86b61ce8c (diff)
downloadjquery-4df20c0c1b8506981087dd8702f3a076bd57d017.tar.gz
jquery-4df20c0c1b8506981087dd8702f3a076bd57d017.zip
Brought back a husk method to represent evalScripts. I didn't realize so many plugins relied on it (it's deprecated in this release).
-rw-r--r--src/ajax/ajax.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js
index 6c08391e0..0b2786a06 100644
--- a/src/ajax/ajax.js
+++ b/src/ajax/ajax.js
@@ -109,7 +109,12 @@ jQuery.fn.extend({
*/
serialize: function() {
return jQuery.param( this );
- }
+ },
+
+ // DEPRECATED
+ // This method no longer does anything - all script evaluation is
+ // taken care of within the HTML injection methods.
+ evalScripts: function(){}
});