19 lines
380 B
PHP
19 lines
380 B
PHP
|
|
<script>
|
||
|
|
$(document).ready(function(){
|
||
|
|
var loader = document.getElementById('loadingOverlay');
|
||
|
|
if(loader)
|
||
|
|
loader.style.display = 'none';
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
function captureReturnKey(e) {
|
||
|
|
if(e.keyCode==13 && e.srcElement.type != 'textarea')
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
function recaptureReturnKey(e) {
|
||
|
|
if(e.keyCode==13 && e.srcElement.type != 'textarea')
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|