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

Unified Diff: chrome/browser/resources/options/content_settings.js

Issue 7717016: Revert 97955 - First pass on intents options UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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
Index: chrome/browser/resources/options/content_settings.js
===================================================================
--- chrome/browser/resources/options/content_settings.js (revision 97964)
+++ chrome/browser/resources/options/content_settings.js (working copy)
@@ -45,20 +45,14 @@
};
}
- var manageHandlersButton = $('manage-handlers-button');
+ var manageHandlersButton =
+ this.pageDiv.querySelector('#manage-handlers-button');
if (manageHandlersButton) {
manageHandlersButton.onclick = function(event) {
OptionsPage.navigateToPage('handlers');
};
}
- var manageIntentsButton = $('manage-intents-button');
- if (manageIntentsButton) {
- manageIntentsButton.onclick = function(event) {
- OptionsPage.navigateToPage('intents');
- };
- }
-
// Cookies filter page ---------------------------------------------------
$('show-cookies-button').onclick = function(event) {
chrome.send('coreOptionsUserMetricsAction', ['Options_ShowCookies']);
@@ -69,7 +63,7 @@
$('click_to_play').hidden = true;
if (!templateData.enable_web_intents)
- $('intent-section').hidden = true;
+ $('intent-filter').hidden = true;
},
};
« no previous file with comments | « chrome/browser/resources/options/content_settings.html ('k') | chrome/browser/resources/options/intents_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698