diff options
| author | Mark Otto <[email protected]> | 2013-12-18 13:01:43 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-18 13:01:43 -0800 |
| commit | 3f577ab86c4e07493d5d24f5fdd3dba30c199400 (patch) | |
| tree | ebce071d4991a8de6ea8440aef9093b92bb5d66b /js/transition.js | |
| parent | ee709db67952c53b417a172534f24034eb2a92c8 (diff) | |
| parent | ba3639b2025b8f0c510087ff8fe522c2bf0b06f1 (diff) | |
| download | bootstrap-3f577ab86c4e07493d5d24f5fdd3dba30c199400.tar.xz bootstrap-3f577ab86c4e07493d5d24f5fdd3dba30c199400.zip | |
Merge pull request #11881 from ZDroid/patch-1
Require comma on left side
Diffstat (limited to 'js/transition.js')
| -rw-r--r-- | js/transition.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/transition.js b/js/transition.js index 5be3b01d4..1a842eb28 100644 --- a/js/transition.js +++ b/js/transition.js @@ -27,10 +27,10 @@ var el = document.createElement('bootstrap') var transEndEventNames = { - 'WebkitTransition' : 'webkitTransitionEnd' - , 'MozTransition' : 'transitionend' - , 'OTransition' : 'oTransitionEnd otransitionend' - , 'transition' : 'transitionend' + 'WebkitTransition' : 'webkitTransitionEnd', + 'MozTransition' : 'transitionend', + 'OTransition' : 'oTransitionEnd otransitionend', + 'transition' : 'transitionend' } for (var name in transEndEventNames) { |
