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

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

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: CSSOM Created 4 years 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/help/help_page.js
diff --git a/chrome/browser/resources/help/help_page.js b/chrome/browser/resources/help/help_page.js
index 5053ff20ba111da301b7eaa36747275d4793effe..4c9b996a628d4df185c057c62c18ccad8b4e24c7 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) {

Powered by Google App Engine
This is Rietveld 408576698