mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
4c72c318d5
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.
36 lines
664 B
Plaintext
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
|
|
}
|
|
}
|