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

Unified Diff: chrome/browser/resources/settings/search_engines_page/search_engines_list.html

Issue 2454483002: Make search engine iron-list aware of the global scrollTarget. (Closed)
Patch Set: Created 4 years, 2 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/settings/search_engines_page/search_engines_list.html
diff --git a/chrome/browser/resources/settings/search_engines_page/search_engines_list.html b/chrome/browser/resources/settings/search_engines_page/search_engines_list.html
index a1c3ea5462a06311c415931b860cc671b792a8eb..469207deaa2699d99699adabb3909e14cc57be69 100644
--- a/chrome/browser/resources/settings/search_engines_page/search_engines_list.html
+++ b/chrome/browser/resources/settings/search_engines_page/search_engines_list.html
@@ -1,7 +1,7 @@
-<link rel="import" href="chrome://resources/cr_elements/cr_scrollable_behavior.html">
<link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.html">
+<link rel="import" href="/global_scroll_target_behavior.html">
<link rel="import" href="/search_engines_page/search_engine_entry.html">
<dom-module id="settings-search-engines-list">
@@ -35,8 +35,8 @@
</style>
<div id="outer">
<content></content>
- <div id="container" class="scroll-container" scrollable>
- <iron-list items="[[engines]]" scroll-target="container">
+ <div id="container" class="scroll-container">
+ <iron-list items="[[engines]]" scroll-target="[[scrollTarget]]">
<template>
<settings-search-engine-entry engine="[[item]]"
tabindex$="[[tabIndex]]">

Powered by Google App Engine
This is Rietveld 408576698