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

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

Issue 10826092: Fix issue with the Buy Plan button. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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/options2/chromeos/internet_detail.js
diff --git a/chrome/browser/resources/options2/chromeos/internet_detail.js b/chrome/browser/resources/options2/chromeos/internet_detail.js
index 3d71534281bd2fdb1876a81e66963e4af1f3d7a5..af0a7b5ef0f8dd07c50c1f064153d21a15238ad6 100644
--- a/chrome/browser/resources/options2/chromeos/internet_detail.js
+++ b/chrome/browser/resources/options2/chromeos/internet_detail.js
@@ -124,7 +124,8 @@ cr.define('options.internet', function() {
});
$('buyplan-details').addEventListener('click', function(event) {
- chrome.send('buyDataPlan', [params.servicePath]);
+ var data = $('connection-state').data;
+ chrome.send('buyDataPlan', [String(data.servicePath)]);
OptionsPage.closeOverlay();
});
« 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