Skip to content
Snippets Groups Projects
Commit ceddf81c authored by Guillaume ROUSSE's avatar Guillaume ROUSSE
Browse files

kill unused javascript functions

parent 46cf218c
Branches
Tags
No related merge requests found
// To confirm on a link (A HREF)
function request_confirm_link(my_url, my_message) {
question = confirm(my_message);
if (question !="0") {
top.location = my_url;
}
}
function showhide(div){
var oDiv = document.getElementById(div);
if(oDiv.style.display == "none"){
oDiv.style.display = "block";
}else{
oDiv.style.display = "none";
}
}
function hide(div) {
var oDiv = document.getElementById(div);
oDiv.style.display = "none";
}
jQuery(function($){
$.widget( "custom.combobox", {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment