Ghost/core/client/.jshintrc
Maurice Williams 4c72c318d5 Re-implementing the loading indicator for the Ember admin
closes #2855 , closes #2848
- New  mixin that utilizes NProgress for displaying a loading indictor for all routes who's model issue a "loading" event (aka: when requesting data from the server during a route change).
- Also removing (the now unnecessary) "loading" template.
2014-06-23 10:01:33 -04:00

36 lines
664 B
Plaintext

{
"node": false,
"browser": true,
"nomen": false,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"plusplus": true,
"regexp": true,
"undef": true,
"unused": true,
"trailing": true,
"indent": 4,
"esnext": true,
"onevar": true,
"white": true,
"quotmark": "single",
"globals": {
"Ember": true,
"Em": true,
"DS": true,
"$": true,
"validator": true,
"ic": true,
"_": true,
"NProgress": true
}
}