| Index: chrome/browser/resources/options/chromeos/display_options.js
|
| diff --git a/chrome/browser/resources/options/chromeos/display_options.js b/chrome/browser/resources/options/chromeos/display_options.js
|
| index 3e1a820290331e564f16b9e3ee7a3833388f1c15..61f837db0215aa7f67e11e6bf625f7331996784a 100644
|
| --- a/chrome/browser/resources/options/chromeos/display_options.js
|
| +++ b/chrome/browser/resources/options/chromeos/display_options.js
|
| @@ -74,6 +74,7 @@ cr.define('options', function() {
|
| /**
|
| * Encapsulated handling of the 'Display' page.
|
| * @constructor
|
| + * @extends {cr.ui.pageManager.Page}
|
| */
|
| function DisplayOptions() {
|
| Page.call(this, 'display',
|
| @@ -401,7 +402,7 @@ cr.define('options', function() {
|
| this.layout_ = this.dragging_.display.isPrimary ?
|
| SecondaryDisplayLayout.LEFT : SecondaryDisplayLayout.RIGHT;
|
| else if (newPosition.x + draggingDiv.offsetWidth <
|
| - baseDiv.offstLeft)
|
| + baseDiv.offsetLeft)
|
| this.layout_ = this.dragging_.display.isPrimary ?
|
| SecondaryDisplayLayout.RIGHT : SecondaryDisplayLayout.LEFT;
|
| }
|
|
|