Skip to content

Commit

Permalink
The browser will now no longer stick to the right side of the window.…
Browse files Browse the repository at this point in the history
… A padding was added.
  • Loading branch information
Johannes Schüth committed May 14, 2012
1 parent 209634f commit 4af6199
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions build/release-changelog.md
@@ -0,0 +1 @@
- **BUG**: browser-plugin: The browser will now open at a more centered position.
2 changes: 1 addition & 1 deletion src/plugins/extra/browser/lib/browser.js
Expand Up @@ -275,7 +275,7 @@ var Browser = Class.extend({
if (width - overflow > this.options.minimalWidth) {
this.list.setGridWidth(this.list.width() - overflow - padding);
this.element.width(width - overflow - padding);
jQuery('.aloha-browser-grid').css('width', (width - overflow));
jQuery('.aloha-browser-grid').css('width', (width - overflow - padding));

}
},
Expand Down

0 comments on commit 4af6199

Please sign in to comment.