diff options
| author | Aleksey V Zapparov <[email protected]> | 2012-07-23 20:55:27 +0200 |
|---|---|---|
| committer | Aleksey V Zapparov <[email protected]> | 2012-07-23 20:56:18 +0200 |
| commit | 76cfe1700248cd3c7086333b67050f418a897a03 (patch) | |
| tree | 72e30743615c6236bdfeec9913d1fc837d577df3 | |
| parent | e25bcb93fca98797629e689f11dba5f20432714a (diff) | |
| download | bootstrap-76cfe1700248cd3c7086333b67050f418a897a03.tar.xz bootstrap-76cfe1700248cd3c7086333b67050f418a897a03.zip | |
Fix transition end name for opera 11+12
Fix transition end name for Opera 11 and Opera 12.
Should fix issues: #3896, #3897, #4157, #4158
| -rw-r--r-- | js/bootstrap-transition.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/bootstrap-transition.js b/js/bootstrap-transition.js index 2f15dd009..0c37ebb18 100644 --- a/js/bootstrap-transition.js +++ b/js/bootstrap-transition.js @@ -36,7 +36,7 @@ , transEndEventNames = { 'WebkitTransition' : 'webkitTransitionEnd' , 'MozTransition' : 'transitionend' - , 'OTransition' : 'otransitionend' + , 'OTransition' : 'oTransitionEnd otransitionend' , 'msTransition' : 'MSTransitionEnd' , 'transition' : 'transitionend' } |
