Created
April 23, 2010 01:02
-
Star
(158)
You must be signed in to star a gist -
Fork
(18)
You must be signed in to fork a gist
-
-
Save makinde/376039 to your computer and use it in GitHub Desktop.
Revisions
-
makinde created this gist
Apr 23, 2010 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,57 @@ !function() { var doc = document, htm = doc.documentElement, lct = null, // last click target nearest = function(elm, tag) { while (elm && elm.nodeName != tag) { elm = elm.parentNode; } return elm; }; // Listeners for our most common interations htm.onclick = function(e) { e = e || window.event; lct = e.target || e.srcElement; var elem = nearest(lct, 'A') || htm, href = elem.getAttribute('ajaxify') || elem.href; switch (elem.rel) { case 'dialog': case 'dialog-post': Bootloader.loadComponents('dialog', function() { Dialog.bootstrap(href, null, elem.rel == 'dialog'); }); break; case 'async': case 'async-post': Bootloader.loadComponents('async', function() { AsyncRequest.bootstrap(href, elem); }); break; default: return; } return false; }; htm.onsubmit = function(e) { e = e || window.event; var elem = e.target || e.srcElement; if (!elem || elem.nodeName != 'FORM' || !elem.getAttribute('ajaxify')) { return; } Bootloader.loadComponents('dom-form', function() { bootstrap_form(elem, lct); }); return false; }; // Remove the no JS class, if it is here htm.className = htm.className.replace('no_js', ''); }();