mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
Prettier & eslint project style update
This commit is contained in:
parent
a0a482aa8e
commit
3eb4d2c341
116 changed files with 6216 additions and 5240 deletions
|
|
@ -3,11 +3,11 @@
|
|||
function whichTransitionEvent() {
|
||||
const el = document.createElement('fakeelement');
|
||||
const transitions = {
|
||||
transition:'transitionend',
|
||||
OTransition:'oTransitionEnd',
|
||||
MSTransition:'msTransitionEnd',
|
||||
MozTransition:'transitionend',
|
||||
WebkitTransition:'webkitTransitionEnd',
|
||||
transition: 'transitionend',
|
||||
OTransition: 'oTransitionEnd',
|
||||
MSTransition: 'msTransitionEnd',
|
||||
MozTransition: 'transitionend',
|
||||
WebkitTransition: 'webkitTransitionEnd',
|
||||
};
|
||||
|
||||
for (const t in transitions) {
|
||||
|
|
@ -21,11 +21,11 @@ function whichTransitionEvent() {
|
|||
function whichAnimationEvent() {
|
||||
const el = document.createElement('fakeelement');
|
||||
const transitions = {
|
||||
animation:'animationend',
|
||||
OAnimation:'oAnimationEnd',
|
||||
MSTransition:'msAnimationEnd',
|
||||
MozAnimation:'animationend',
|
||||
WebkitAnimation:'webkitAnimationEnd',
|
||||
animation: 'animationend',
|
||||
OAnimation: 'oAnimationEnd',
|
||||
MSTransition: 'msAnimationEnd',
|
||||
MozAnimation: 'animationend',
|
||||
WebkitAnimation: 'webkitAnimationEnd',
|
||||
};
|
||||
|
||||
for (const t in transitions) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue