Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1997)

Unified Diff: chrome/browser/resources/print_preview/margins_ui.js

Issue 8605001: Print Preview: Fixing code style issues reported by gsjlint. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebasing Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/print_preview/margins_ui.js
diff --git a/chrome/browser/resources/print_preview/margins_ui.js b/chrome/browser/resources/print_preview/margins_ui.js
index 53786632975d27977f5024a247f590dec8b69f1d..994c46608f9a3e3447047b7bfe94a8643e61f0ba 100644
--- a/chrome/browser/resources/print_preview/margins_ui.js
+++ b/chrome/browser/resources/print_preview/margins_ui.js
@@ -79,7 +79,7 @@ cr.define('print_preview', function() {
/**
* Updates the state of the margins UI.
- * @param {print_preview.Rect}
+ * @param {print_preview.Rect} marginsRectangle
* @param {Margins} marginValues
* @param {array} valueLimits
*/
@@ -129,7 +129,7 @@ cr.define('print_preview', function() {
applyClippingMask_: function() {
var bottom = previewArea.height;
var right = previewArea.width;
- this.style.clip = "rect(0, " + right + "px, " + bottom + "px, 0)";
+ this.style.clip = 'rect(0, ' + right + 'px, ' + bottom + 'px, 0)';
},
/**
« no previous file with comments | « chrome/browser/resources/print_preview/margin_utils.js ('k') | chrome/browser/resources/print_preview/margins_ui_pair.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698