mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
519528daa2
- inlines dasherize helper in sk - uses an ajax helper to load wizard's ajax lib when in wizard - amends wizard's ajax lib to work with string as first arg - disabled loading spinner in wizard as it's not available
9 lines
154 B
JavaScript
9 lines
154 B
JavaScript
let ajax;
|
|
if (window.Discourse) {
|
|
ajax = requirejs("discourse/lib/ajax").ajax;
|
|
} else {
|
|
ajax = requirejs("wizard/lib/ajax").ajax;
|
|
}
|
|
|
|
export { ajax };
|