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

Unified Diff: ui/webui/resources/js/cr/ui/page_manager/page.js

Issue 907553003: Fix closure compile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/extensions/extensions.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/webui/resources/js/cr/ui/page_manager/page.js
diff --git a/ui/webui/resources/js/cr/ui/page_manager/page.js b/ui/webui/resources/js/cr/ui/page_manager/page.js
index f0aff3a9bc441cd963da0e8fe7d2e920861cc57b..ab9bcc1fd52284cb531bb499bb017afc25871b47 100644
--- a/ui/webui/resources/js/cr/ui/page_manager/page.js
+++ b/ui/webui/resources/js/cr/ui/page_manager/page.js
@@ -23,7 +23,7 @@ cr.define('cr.ui.pageManager', function() {
this.name = name;
this.title = title;
this.pageDivName = pageDivName;
- this.pageDiv = $(this.pageDivName);
+ this.pageDiv = getRequiredElement(this.pageDivName);
// |pageDiv.page| is set to the page object (this) when the page is visible
// to track which page is being shown when multiple pages can share the same
// underlying div.
« no previous file with comments | « chrome/browser/resources/extensions/extensions.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698