Skip to content

Instantly share code, notes, and snippets.

@yknx4
Last active February 20, 2017 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yknx4/640360a7b04efa810cba582b187700a6 to your computer and use it in GitHub Desktop.
Save yknx4/640360a7b04efa810cba582b187700a6 to your computer and use it in GitHub Desktop.
var settings = {
spinner: {
enabled: false
}
}
if (typeof module != 'undefined') {
module.exports = settings;
}
if (typeof exports != 'undefined') {
exports.FeatureSettings = settings;
}
if (typeof define === 'function') {
define(['feature-settings'], settings);
}
if (typeof window != 'undefined') {
window.FeatureSettings = settings;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment