Open schuesslerf opened 8 years ago
Update: I've created a pull request in #68 to fix this.
/cc @abhikmitra
bump!
I created a joyride directive which doesn't rely on jquery or bootstrap, you can check it out here: https://github.com/ahmed-wagdi/angular-joyride
+1 on this as well.
I just noticed, that ng-joyride is not working with jQuery3 yet, I tried for hours to get it working until I figured out the error. In ng-joyride.js, line 473 you write "if ($fkEl.size() === 0) {", but size() is deprecated since jQuery 1.8, and it v3 it doesn't seem to work at all any more. If changing .size() to the attribute .length it works fine, but I'm now using jQuery 2.2.4, where it's working without changing anything as well.
Please fix that for the next version (so change .size() to .length), so it works with jQuery3 as well.