/home/suroeste/public_html/gorbus.transportessuroeste.com/suroeste/_lib/lib/js
NameSizeModeActions
bluebird.min.js815300644editdlrm
daterangepicker.min.js326080644editdlrm
frameControl.js31100644editdlrm
GoJS.js3930644editdlrm
GoJS_.js3930644editdlrm
hotkeys.inc.js102440644editdlrm
hotkeys_setup.js16700644editdlrm
jquery.fieldSelection.js26840644editdlrm
jquery.fileupload.js376890644editdlrm
jquery.iframe-transport.js77470644editdlrm
jquery.mask.min.js83270644editdlrm
jquery.scInput.js500520644editdlrm
jquery.scInput2.js425560644editdlrm
menu_structure.js6140644editdlrm
moment.min.js514650644editdlrm
multigrab.js238140644editdlrm
nm_form_mobile.js640290644editdlrm
nm_mobile.js861910644editdlrm
nm_modal_panes.jquery.js110900644editdlrm
nm_position.js18270644editdlrm
nm_touchfix.jquery.js23610644editdlrm
scInput.js17900644editdlrm
sc_custom_scrollbar.js158400644editdlrm
sortable.jquery.js22240644editdlrm
sortable.js1514540644editdlrm
sortable.min.js441360644editdlrm
toastr.js155680644editdlrm
Edit: /home/suroeste/public_html/gorbus.transportessuroeste.com/suroeste/_lib/lib/js/hotkeys_setup.js (1670B)
function execOnTopFrame(funcExecCall, args) { var pageRoot = window; if (pageRoot.parent !== pageRoot) { pageRoot = pageRoot.parent; } else { return true; } if (typeof (pageRoot[funcExecCall]) === 'function') { var a; if (!args) { a = []; } else { if (typeof (args) === typeof ([])) { a = args; } else { a = [args]; } } return pageRoot[funcExecCall].apply(pageRoot, a); } else { return true; } } function hotkeyNotHere(e,h) { return execOnTopFrame('execHotKey', [e,h]); } function getHotkeyList() { return hotkeyList; } function updateHotkeyList() { hotkeyList = applicationKeys; // var parentKeyList = execOnTopFrame('getHotkeyList'); // var frames = window.frames; // var i = 0; // if (typeof(parentKeyList) === typeof('') && parentKeyList !== '') { // hotkeyList += parentKeyList; // } // for (i = 0; i < frames.length; i++) { // frames[i].updateHotkeys(); // } hotkeys.deleteScope('appScope'); hotkeyHandlerSetup(); } function hotkeyHandlerSetup() { var shortcuts = getHotkeyList(); hotkeys.filter = function(event, a){ if ( $('.blockUI:visible').length > 0 || $('#TB_overlay:visible').length > 0 ) { return false; } else { return true; } }; hotkeys(shortcuts, 'appScope', function (e, h) { return execHotKey(e, h); }); hotkeys.setScope('appScope'); } document.addEventListener("DOMContentLoaded", function(event) { updateHotkeyList(); });