Sha256: ac49f29eca61a3e6c96da02ab35d1833829c6f839eb153cec3b1568a0be4b8c9
Contents?: true
Size: 933 Bytes
Versions: 24
Compression:
Stored size: 933 Bytes
Contents
// initialize your global object will all your model names //YOUR_APP = { // //}; var fLoadingShow = function () { $("body").append($('<div id="loading"></div>')); }; var fLoadingHide = function () { $("#loading").remove(); }; //jQuery(document).ready(function ($) { // get the page action //var action, model, b = $("body"); //if (b.hasClass("edit")) { // action = "edit"; //} else if (b.hasClass("view")) { // action = "view"; //} else if (b.hasClass("index")) { // action = "index" //} else if (b.hasClass("new")) { // action = "new" //} // //run the code specific to a model and an action //for (var m in YOUR_APP) { // if (b.hasClass("admin_" + m)) { // if (YOUR_APP[m][action] && typeof YOUR_APP[m][action] == "function") { // YOUR_APP[m][action](); // break; // } // } //} //});
Version data entries
24 entries across 24 versions & 1 rubygems