| Index: chrome/browser/resources/settings/languages_page/languages_page.js
|
| diff --git a/chrome/browser/resources/settings/languages_page/languages_page.js b/chrome/browser/resources/settings/languages_page/languages_page.js
|
| index 29eca7e3824f35efa2866b82ac36a3c8052afbc0..b8e8c728e9339131a1276092ae5fddfdcbf89cba 100644
|
| --- a/chrome/browser/resources/settings/languages_page/languages_page.js
|
| +++ b/chrome/browser/resources/settings/languages_page/languages_page.js
|
| @@ -100,7 +100,6 @@ Polymer({
|
| */
|
| onManageLanguagesTap_: function() {
|
| this.$.pages.setSubpageChain(['manage-languages']);
|
| - this.forceRenderList_('settings-manage-languages-page');
|
| },
|
|
|
| /**
|
| @@ -120,7 +119,6 @@ Polymer({
|
| */
|
| onEditDictionaryTap_: function() {
|
| this.$.pages.setSubpageChain(['edit-dictionary']);
|
| - this.forceRenderList_('settings-edit-dictionary-page');
|
| },
|
| </if>
|
|
|
| @@ -150,15 +148,5 @@ Polymer({
|
| assert(cr.isChromeOS);
|
| return id == currentId;
|
| },
|
| -
|
| - /**
|
| - * HACK(michaelpg): This is necessary to show the list when navigating to
|
| - * the sub-page. Remove this function when PolymerElements/neon-animation#60
|
| - * is fixed.
|
| - * @param {string} tagName Name of the element containing the <iron-list>.
|
| - */
|
| - forceRenderList_: function(tagName) {
|
| - this.$$(tagName).$$('iron-list').fire('iron-resize');
|
| - },
|
| });
|
| })();
|
|
|