mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
use element classList to add animations (#1436)
This commit is contained in:
parent
f54ca688d4
commit
3629c2c0d5
@ -820,12 +820,17 @@
|
||||
setValueForElement(el);
|
||||
afterValSetFunc(el);
|
||||
setValueForElementByEvent(el);
|
||||
canSeeElementToStyle(el) && (el.className += ' com-bitwarden-browser-animated-fill',
|
||||
setTimeout(function () {
|
||||
|
||||
// START MODIFICATION
|
||||
el && el.className && (el.className = el.className.replace(/(\\s)?com-bitwarden-browser-animated-fill/, ''));
|
||||
if (canSeeElementToStyle(el)) {
|
||||
el.classList.add('com-bitwarden-browser-animated-fill');
|
||||
setTimeout(function () {
|
||||
if (el) {
|
||||
el.classList.remove('com-bitwarden-browser-animated-fill');
|
||||
}
|
||||
}, styleTimeout);
|
||||
}
|
||||
// END MODIFICATION
|
||||
}, styleTimeout));
|
||||
}
|
||||
|
||||
document.elementForOPID = getElementByOpId;
|
||||
|
Loading…
Reference in New Issue
Block a user