Prinzhorn / skrollr-menu

skrollr plugin for hash navigation
MIT License
285 stars 143 forks source link

No support for require.js #79

Open haggis777 opened 9 years ago

haggis777 commented 9 years ago

Love your code, but I have an issue with the menu plugin. In skrollr you check for the existence of require and load it as a modal if its there or else add it to the window instance. In the menu control, you just assume that require.js does not exist and just try to pull it from the window object:

var MENU_DURATION_ATTR = 'data-menu-duration'; var MENU_IGNORE_ATTR = 'data-menu-ignore';

var skrollr = window.skrollr; <-------- is this right?
var history = window.history;
var supportsHistory = !!history.pushState;

Is this by design?

Prinzhorn commented 9 years ago

All this module stuff wasn't written by me and nobody updated the plugins. https://github.com/Prinzhorn/skrollr#amd

Please note that only skrollr core has AMD support so far.