/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/scInput.js (1790B)
var isEventSupported = (function(){ var TAGNAMES = { 'select':'input','change':'input', 'submit':'form','reset':'form', 'error':'img','load':'img','abort':'img' } function isEventSupported(eventName) { var el = document.createElement(TAGNAMES[eventName] || 'div'); eventName = 'on' + eventName; var isSupported = (eventName in el); if (!isSupported) { el.setAttribute(eventName, 'return;'); isSupported = typeof el[eventName] == 'function'; } el = null; return isSupported; } return isEventSupported; })(); function isMacOs() { //return navigator && navigator.appVersion && navigator.appVersion.indexOf('Mac') != -1; return false; } function scDetectBrowser() { var ua = navigator.userAgent.match(/(opera|chrome|safari|firefox|msie)\/?\s*(\.?\d+(\.\d+)*)/i); if (navigator.userAgent.match(/Edge/i) || navigator.userAgent.match(/Trident.*rv[ :]*11\./i)) { return 'msie'; } else { return ua[1].toLowerCase(); } } var _scOnInputSupport = isEventSupported('input'); var _scMacOs = isMacOs(); var _scBrowser = scDetectBrowser(); function scLoadScInput(elemSelector) { if (_scOnInputSupport && !_scMacOs) { $(elemSelector).scInput(); } else { $(elemSelector).listen(); } } var getStringCodePoints = (function() { function surrogatePairToCodePoint(charCode1, charCode2) { return ((charCode1 & 0x3FF) << 10) + (charCode2 & 0x3FF) + 0x10000; } return function(str) { var codePoints = [], i = 0, charCode; while (i < str.length) { charCode = str.charCodeAt(i); if ((charCode & 0xF800) == 0xD800) { codePoints.push(surrogatePairToCodePoint(charCode, str.charCodeAt(++i))); } else { codePoints.push(charCode); } ++i; } return codePoints; } })();