mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-27 17:50:24 +00:00
sometimes i get emotional about semicolons
This commit is contained in:
parent
24c4ca0391
commit
52c624079e
1 changed files with 3 additions and 3 deletions
6
examples/assets/js/bootstrap-modals.js
vendored
6
examples/assets/js/bootstrap-modals.js
vendored
|
|
@ -6,9 +6,9 @@
|
|||
$.support.transition = (function(){
|
||||
var thisBody = document.body || document.documentElement
|
||||
, thisStyle = thisBody.style
|
||||
, support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined;
|
||||
return support;
|
||||
})();
|
||||
, support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined
|
||||
return support
|
||||
})()
|
||||
|
||||
|
||||
/* SHARED VARS
|
||||
|
|
|
|||
Loading…
Reference in a new issue