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.
21 lines
541 B
21 lines
541 B
1 year ago
|
<!-- 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>
|