diff options
Diffstat (limited to 'lib/scripts/edit.js')
-rw-r--r-- | lib/scripts/edit.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/scripts/edit.js b/lib/scripts/edit.js index 74dc1b521..86ebb230d 100644 --- a/lib/scripts/edit.js +++ b/lib/scripts/edit.js @@ -65,9 +65,9 @@ function createPicker(id,props,edid){ if(props['class']){ picker.className += ' '+props['class']; } - picker.id = id; - picker.style.position = 'absolute'; - picker.style.left = '-10000px'; // no display none, to keep access keys working + picker.id = id; + picker.style.position = 'absolute'; + picker.style.marginLeft = '-10000px'; // no display none, to keep access keys working for(var key in list){ if (!list.hasOwnProperty(key)) continue; |