From: kondou Date: Mon, 3 Mar 2014 16:11:23 +0000 (+0100) Subject: Some readability improvements X-Git-Tag: v7.0.0alpha2~149^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=770382aea9007c8034781b14fa3184b7f0c6708c;p=nextcloud-server.git Some readability improvements --- diff --git a/core/js/listview.js b/core/js/listview.js index 239792d6346..71466c90207 100644 --- a/core/js/listview.js +++ b/core/js/listview.js @@ -46,7 +46,7 @@ ListView.prototype={ $.each(this.hoverElement,function(index,collumn){ $.each(collumn,function(index,element){ var html=''; - element=$(html); + element = $(html); element.append($('')); element.click(element.callback); tr.children('td.'+collumn).append(element); @@ -61,7 +61,7 @@ ListView.prototype={ }, addHoverElement:function(column,icon,title,callback){ if(!this.hoverElements[column]){ - this.hoverElements[column]=[]; + this.hoverElements[column] = []; } this.hoverElements[row].push({icon:icon,callback:callback,title:title}); }, diff --git a/core/js/multiselect.js b/core/js/multiselect.js index 03408033db5..2174b74622d 100644 --- a/core/js/multiselect.js +++ b/core/js/multiselect.js @@ -279,7 +279,7 @@ } list.append(list.find('li.creator')); var pos=button.position(); - if(($(document).height() > (button.offset().top+button.outerHeight() + list.children().length * button.height()) && + if(($(document).height() > (button.offset().top + button.outerHeight() + list.children().length * button.height()) && $(document).height() - button.offset().top > (button.offset().top+button.outerHeight() + list.children().length * button.height())) || $(document).height()/2 > button.offset().top ) {