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

Unified Diff: chrome/browser/resources/options/chromeos/internet_detail.js

Issue 15997006: Fix incorrect loadTimeData checks in internet_details.js. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/chromeos/internet_detail.js
diff --git a/chrome/browser/resources/options/chromeos/internet_detail.js b/chrome/browser/resources/options/chromeos/internet_detail.js
index 7cd2d107fabf59a25734b033cfde3019f1ce5821..5033dd5043e0c407564f3061e3633aa3a490a63f 100644
--- a/chrome/browser/resources/options/chromeos/internet_detail.js
+++ b/chrome/browser/resources/options/chromeos/internet_detail.js
@@ -288,7 +288,7 @@ cr.define('options.internet', function() {
// stored) is not accessible from the login screen.
// TODO(pneubeck): Remove this once i18n of the proxy dialog on the login
// page is fixed. http://crbug.com/242865
- if (loadTimeData.data) {
+ if (loadTimeData.data_) {
$('google-dns-label').innerHTML =
loadTimeData.getString('googleNameServers');
}
@@ -405,7 +405,7 @@ cr.define('options.internet', function() {
*/
updateProxyBannerVisibility_: function() {
var bannerDiv = $('network-proxy-info-banner');
- if (!loadTimeData.data) {
+ if (!loadTimeData.data_) {
// TODO(pneubeck): This temporarily prevents an exception below until
// i18n of the proxy dialog on the login page is
// fixed. http://crbug.com/242865
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698