| Index: chrome/browser/resources/print_preview/margins_ui_pair.js
|
| diff --git a/chrome/browser/resources/print_preview/margins_ui_pair.js b/chrome/browser/resources/print_preview/margins_ui_pair.js
|
| index 8794eb8e48206141a6a3a2d938c0193694481a74..0d0eb4ba8bb22b7a0bf78b3d051c0c0aede35b28 100644
|
| --- a/chrome/browser/resources/print_preview/margins_ui_pair.js
|
| +++ b/chrome/browser/resources/print_preview/margins_ui_pair.js
|
| @@ -165,7 +165,7 @@ cr.define('print_preview', function() {
|
|
|
| /**
|
| * Executes whenever a mousedown event occurs on |this| or its child nodes.
|
| - * @parameter {MouseEvent} e The event that occured.
|
| + * @param {MouseEvent} e The event that occured.
|
| */
|
| onMouseDown_: function(e) {
|
| if (e.button != 0)
|
| @@ -193,7 +193,7 @@ cr.define('print_preview', function() {
|
| */
|
| moveTo: function(point) {
|
| if (this.isTop_() || this.isBottom_())
|
| - this.style.top = point.y - this.mousePointerOffset.y + 'px';
|
| + this.style.top = point.y - this.mousePointerOffset.y + 'px';
|
| else
|
| this.style.left = point.x - this.mousePointerOffset.x + 'px';
|
| },
|
|
|