Make code format more consistent with the rest of the file

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
Daniel Calviño Sánchez 2019-01-31 19:13:08 +01:00
parent 75edcad549
commit 3baa078f70
1 changed files with 11 additions and 12 deletions

View File

@ -65,32 +65,31 @@
this.$el.on('click', 'li a', _.bind(this._onClickItem, this));
this.$el.on('click', 'li button', _.bind(this._onClickMenuButton, this));
var trashElement=$('.nav-trashbin');
var trashElement = $('.nav-trashbin');
trashElement.droppable({
over: function( event, ui ) {
over: function (event, ui) {
trashElement.addClass('dropzone-background');
},
out: function( event, ui ) {
out: function (event, ui) {
trashElement.removeClass('dropzone-background');
},
activate: function( event, ui ) {
var elem=trashElement.find('a').first();
activate: function (event, ui) {
var elem = trashElement.find('a').first();
elem.addClass('nav-icon-trashbin-starred').removeClass('nav-icon-trashbin');
},
deactivate: function( event, ui ) {
var elem=trashElement.find('a').first();
deactivate: function (event, ui) {
var elem = trashElement.find('a').first();
elem.addClass('nav-icon-trashbin').removeClass('nav-icon-trashbin-starred');
},
drop: function( event, ui ) {
drop: function (event, ui) {
var $selectedFiles = $(ui.draggable);
if (ui.helper.find('tr').size()===1) {
if (ui.helper.find('tr').size() === 1) {
var $tr = $selectedFiles.closest('tr');
$selectedFiles.trigger('droppedOnTrash', $tr.attr('data-file'), $tr.attr('data-dir'));
}else{
} else {
var item = ui.helper.find('tr');
for(var i=0; i<item.length;i++){
for (var i = 0; i < item.length; i++) {
$selectedFiles.trigger('droppedOnTrash', item[i].getAttribute('data-file'), item[i].getAttribute('data-dir'));
}
}