diff options
author | Trent Richardson <trentdrichardson@gmail.com> | 2012-12-02 07:34:43 -0500 |
---|---|---|
committer | Trent Richardson <trentdrichardson@gmail.com> | 2012-12-02 07:34:43 -0500 |
commit | a0597a78be23f15fc17a50cc4c0c99ab50790440 (patch) | |
tree | fab648a9fc22fa912f5673a0faba745936fea10d /demos | |
parent | f1cb86982f2fae230a69b94d6046e515f2fa6831 (diff) | |
download | jQuery-Impromptu-a0597a78be23f15fc17a50cc4c0c99ab50790440.zip jQuery-Impromptu-a0597a78be23f15fc17a50cc4c0c99ab50790440.tar.gz jQuery-Impromptu-a0597a78be23f15fc17a50cc4c0c99ab50790440.tar.bz2 |
Cleanup examples for new versionv4.1
Diffstat (limited to 'demos')
-rw-r--r-- | demos/survey.html | 2 | ||||
-rw-r--r-- | demos/user_manager.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/demos/survey.html b/demos/survey.html index 43ff180..ee4ae24 100644 --- a/demos/survey.html +++ b/demos/survey.html @@ -79,7 +79,7 @@ } $.prompt(temp,{ - callback: function(e,v,m,f){ + close: function(e,v,m,f){ var str = "You can now process with this given information:<br />"; $.each(f,function(i,obj){ str += i + " - <em>" + obj + "</em><br />"; diff --git a/demos/user_manager.html b/demos/user_manager.html index 3f6d556..f9af4de 100644 --- a/demos/user_manager.html +++ b/demos/user_manager.html @@ -61,7 +61,7 @@ } return flag; }, - callback: function(e,v,m,f){ + close: function(e,v,m,f){ if(v){ //Here is where you would do an ajax post to edit the user @@ -90,7 +90,7 @@ $.prompt(txt,{ buttons:{Delete:true, Cancel:false}, - callback: function(e,v,m,f){ + close: function(e,v,m,f){ if(v){ var uid = f.userid; |