summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-05-19 21:27:09 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-06-03 12:42:36 +0200
commitd60e4b9efa701e426640fcd3ec8bba8bfaba0244 (patch)
tree593695b01b029dc64106d6f6582c6cbaa66a2328 /core/js
parentde012667c7e1a99895bb8766dc07fc1a0c4a6e88 (diff)
downloadnextcloud-server-d60e4b9efa701e426640fcd3ec8bba8bfaba0244.tar.gz
nextcloud-server-d60e4b9efa701e426640fcd3ec8bba8bfaba0244.zip
remove +3 in multiselect.js
Diffstat (limited to 'core/js')
-rw-r--r--core/js/multiselect.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/js/multiselect.js b/core/js/multiselect.js
index d9a8057daf6..511070bfc45 100644
--- a/core/js/multiselect.js
+++ b/core/js/multiselect.js
@@ -161,7 +161,7 @@
button.animate({'width':newWidth},undefined,undefined,function(){
button.css('width','');
});
- list.animate({'width':newOuterWidth,'left':pos.left+3});
+ list.animate({'width':newOuterWidth,'left':pos.left});
self.change();
});
var li=$('<li></li>');
@@ -272,7 +272,7 @@
) {
list.css({
top:pos.top+button.outerHeight()-5,
- left:pos.left+3,
+ left:pos.left,
width:(button.outerWidth()-2)+'px',
'max-height':($(document).height()-(button.offset().top+button.outerHeight()+10))+'px'
});
@@ -283,7 +283,7 @@
list.css('max-height', $(document).height()-($(document).height()-(pos.top)+50)+'px');
list.css({
top:pos.top - list.height(),
- left:pos.left+3,
+ left:pos.left,
width:(button.outerWidth()-2)+'px'
});