Added missing functions for multiselect
This commit is contained in:
parent
dd8de66bd3
commit
7b07f43d19
@ -18,6 +18,12 @@ build = {
|
||||
return "<div id='" + id + "' class='edit'><a class='icon-pencil'></a></div>";
|
||||
|
||||
},
|
||||
|
||||
multiselect: function(top, left) {
|
||||
|
||||
return "<div id='multiselect' style='top: " + top + "px; left: " + left + "px;'></div>";
|
||||
|
||||
},
|
||||
|
||||
album: function(albumJSON) {
|
||||
|
||||
|
@ -45,6 +45,11 @@ visible = {
|
||||
contextMenu: function() {
|
||||
if ($(".contextmenu").length>0) return true;
|
||||
else return false;
|
||||
},
|
||||
|
||||
multiselect: function() {
|
||||
if ($("#multiselect").length>0) return true;
|
||||
else return false;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user