Closed mcinp closed 10 years ago
Actually a good suggestion - are you able to fork the repo and create a Pull Request for this change? - I want to give credit where credit is due.
Thanks!
as to Pull Request - thank you for the proposal - maybe next time
In bootstrap-transition_prototype.js on line 59 following code is used to determine if Scriptaculous library is loaded
typeof Scriptaculous !== 'undefined' && typeof Effect !== 'undefined'
there is however a possibility that effects.js is loaded but scriptaculous.js is not, This can happen ifmy suggestion is to remove the
typeof Scriptaculous !== 'undefined'
and leave onlytypeof Effect !== 'undefined'
I tested it to work properly on IE8 & IE9