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)
17 lines (16 loc) • 380 B
JavaScript
;
// Watches files for changes and runs tasks based on the changed files
module.exports = {
js: {
files: [
'Gruntfile.js',
'tasks/**/*.js',
'angular-block-spinner.js'
],
tasks: ['newer:jshint:src']
},
tests: {
files: ['tests/**/*.js'],
tasks: ['newer:jshint:tests', 'karma:local', 'protractor:local']
}
};