update
This commit is contained in:
12
Static/script/dropDown.js
Normal file
12
Static/script/dropDown.js
Normal file
@@ -0,0 +1,12 @@
|
||||
function dropDownChange(el, id) {
|
||||
var div = $(id);
|
||||
if ($(id).is(":visible") == true) {
|
||||
$(id).hide();
|
||||
$(el).addClass('');
|
||||
$(el).attr( "title", "Rozwiń" );
|
||||
} else {
|
||||
$(id).show();
|
||||
$(el).addClass('long');
|
||||
$(el).attr( "title", "Zwiń" );
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user