Commit Graph

4 Commits

Author SHA1 Message Date
Darren Embry
f51d5d57a6 feature #2320: JS helper to toggle subnet mask for ipv4/v6 during input
http://redmine.pfsense.org/issues/2320
2012-03-28 18:50:02 -04:00
Darren Embry
980ded5a1b prep work for feature #2320: stub js function 2012-03-28 16:58:22 -04:00
Vinicius Coque
1c3351bd08 Adapted the AjaxQueue code to work with jQuery 2011-12-11 20:52:50 -02:00
Scott Ullrich
2687a6fa51 Adding Ajax queue system.
Example usage:

AjaxQueue.setBatchSize(1);
AjaxQueue.push("http://www.testingqueue.com/process/",{onSucess: funcSuccess, onfailure: funcFailure});
AjaxQueue.push("http://www.testingqueue.com/process1/",{onSucess: funcSuccess1, onfailure: funcFailure1}, "myDiv");
AjaxQueue.push("http://www.testingqueue.com/process2/",{onSucess: funcSuccess2, onfailure: funcFailure2});
AjaxQueue.push("http://www.testingqueue.com/process3/",{onSucess: funcSuccess3, onfailure: funcFailure3});
AjaxQueue.push("http://www.testingqueue.com/process4/",{onSucess: funcSuccess4, onfailure: funcFailure4});
AjaxQueue.push("http://www.testingqueue.com/process5/",{onSucess: funcSuccess5, onfailure: funcFailure5});
2009-03-14 14:16:34 -04:00