UNPKG

jquery.are-you-sure

Version:

A light-weight jQuery "dirty forms" Plugin - it monitors HTML forms and alerts users to unsaved changes if they attempt to close the browser or navigate away from the page. (Are you sure?)

27 lines (24 loc) 800 B
module.exports = function(grunt) { grunt.config.init({ karma: { options: { browsers: [ 'Chrome', 'Firefox', 'Safari', 'IE' ], frameworks: [ 'jasmine' ], reportSlowerThan: 500, singleRun: true }, unit: { files: [ { pattern: 'bower_components/jquery/dist/jquery.min.js' }, { pattern: 'bower_components/jasmine-jquery/lib/jasmine-jquery.js' }, { pattern: 'jquery.are-you-sure.js' }, { pattern: 'spec/javascripts/*.js' }, { pattern: 'spec/javascripts/fixtures/**/*.html', included: false } ] } } }); grunt.registerTask('test', 'Run tests.', [ 'karma' ]); grunt.registerTask('default', [ 'test' ]); grunt.loadNpmTasks('grunt-karma'); };