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

Side by Side Diff: chrome/browser/resources/feedback/js/feedback.js

Issue 151873002: Reduce the height of the feedback page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/feedback/js/event_handler.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** @type {string} 5 /** @type {string}
6 * @const 6 * @const
7 */ 7 */
8 var FEEDBACK_LANDING_PAGE = 8 var FEEDBACK_LANDING_PAGE =
9 'https://www.google.com/support/chrome/go/feedback_confirmation'; 9 'https://www.google.com/support/chrome/go/feedback_confirmation';
10 /** @type {number} 10 /** @type {number}
11 * @const 11 * @const
12 */ 12 */
13 var MAX_ATTACH_FILE_SIZE = 3 * 1024 * 1024; 13 var MAX_ATTACH_FILE_SIZE = 3 * 1024 * 1024;
14 14
15 /** 15 /**
16 * @type {number} 16 * @type {number}
17 * @const 17 * @const
18 */ 18 */
19 var FEEDBACK_MIN_WIDTH = 500; 19 var FEEDBACK_MIN_WIDTH = 500;
20 /** 20 /**
21 * @type {number} 21 * @type {number}
22 * @const 22 * @const
23 */ 23 */
24 var FEEDBACK_MIN_HEIGHT = 625; 24 var FEEDBACK_MIN_HEIGHT = 585;
25 25
26 /** @type {number} 26 /** @type {number}
27 * @const 27 * @const
28 */ 28 */
29 var CONTENT_MARGIN_HEIGHT = 40; 29 var CONTENT_MARGIN_HEIGHT = 40;
30 30
31 /** @type {number} 31 /** @type {number}
32 * @const 32 * @const
33 */ 33 */
34 var MAX_SCREENSHOT_WIDTH = 100; 34 var MAX_SCREENSHOT_WIDTH = 100;
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 chrome.windows.onRemoved.addListener(function(windowId, removeInfo) { 339 chrome.windows.onRemoved.addListener(function(windowId, removeInfo) {
340 if (windowId == systemInfoWindow.id) 340 if (windowId == systemInfoWindow.id)
341 systemInfoWindow.id = 0; 341 systemInfoWindow.id = 0;
342 else if (windowId == histogramsWindow.id) 342 else if (windowId == histogramsWindow.id)
343 histogramsWindow.id = 0; 343 histogramsWindow.id = 0;
344 }); 344 });
345 }); 345 });
346 } 346 }
347 347
348 initialize(); 348 initialize();
OLDNEW
« no previous file with comments | « chrome/browser/resources/feedback/js/event_handler.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698