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

Unified Diff: chrome/browser/resources/help/help_page.js

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only Created 3 years, 10 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 | « chrome/browser/resources/help/help_content.css ('k') | chrome/browser/resources/history/history.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/help/help_page.js
diff --git a/chrome/browser/resources/help/help_page.js b/chrome/browser/resources/help/help_page.js
index 018b252a61f264d192c40f62d44315290a60dd21..977ce38fd7605797baa16ff2b38be3de9b5945a2 100644
--- a/chrome/browser/resources/help/help_page.js
+++ b/chrome/browser/resources/help/help_page.js
@@ -226,7 +226,7 @@ cr.define('help', function() {
moreInfo.classList.toggle('visible', visible);
moreInfo.style.height = visible ? moreInfo.scrollHeight + 'px' : '';
- moreInfo.addEventListener('webkitTransitionEnd', function(event) {
+ moreInfo.addEventListener('transitionend', function(event) {
$('more-info-expander').textContent = visible ?
loadTimeData.getString('hideMoreInfo') :
loadTimeData.getString('showMoreInfo');
@@ -321,8 +321,8 @@ cr.define('help', function() {
},
/**
- * @param {string} eolStatus: The EndofLife status of the device.
- * @param {string} eolMessage: The EndofLife message to display.
+ * @param {string} eolStatus The EndofLife status of the device.
+ * @param {string} eolMessage The EndofLife message to display.
* @private
*/
updateEolMessage_: function(eolStatus, eolMessage) {
« no previous file with comments | « chrome/browser/resources/help/help_content.css ('k') | chrome/browser/resources/history/history.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698