Jakweb.ch stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
clouddesk/operator/template/js_buttons.php

20 lines
541 B

<!-- JavaScript for select all -->
<script type="text/javascript">
$(document).ready(function() {
$(".hover-button").hover(function() {
$(this).attr("src", function(index, attr){
return attr.replace("_on", "_off");
});
}, function(){
$(this).attr("src", function(index, attr){
return attr.replace("_off", "_on");
});
});
});
ls.main_url = "<?php echo BASE_URL_ADMIN;?>";
ls.orig_main_url = "<?php echo BASE_URL_ORIG;?>";
ls.main_lang = "<?php echo JAK_LANG;?>";
</script>