angularjs-loading
Version:
Angular directive that lets you to prevent user interaction with part of the page and display loading/busy indicator (spinner based on spin.js)
32 lines (31 loc) • 745 B
JavaScript
;
// Make sure code styles are up to par and there are no obvious mistakes
module.exports = {
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
},
src: [
'Gruntfile.js',
'tasks/**/*.js',
'angular-block-spinner.js'
],
ci: {
options: {
reporter: 'checkstyle',
reporterOutput: '<%= settings.outputPath %>/jshint.xml'
},
src: [
'Gruntfile.js',
'tasks/**/*.js',
'<%= settings.appPath %>/*.js',
'<%= settings.appPath %>/<%= settings.packagesPath %>/**/*.js'
]
},
tests: {
options: {
jshintrc: '<%= settings.testsPath %>/.jshintrc'
},
src: ['<%= settings.testsPath %>/**/*.js']
}
};