rikulo / bootjack

Twitter Bootstrap ported in Dart.
https://quire.io
Apache License 2.0
88 stars 15 forks source link

Fixed an issue affecting popovers in dart2js code #14

Closed nawafnaim closed 10 years ago

nawafnaim commented 10 years ago

I found that ($element.after(tip);) does not work in dart2js for popovers. I changed it to ($element.after('body');) and it works fine.

tomyeh commented 10 years ago

Invalid