Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
auto slide with cross links bug
  • Loading branch information
Kevin Batdorf committed Apr 10, 2014
1 parent b7c6d4e commit 89de7a8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Expand Up @@ -18,7 +18,7 @@ module.exports = function (grunt) {
options: {
mangle: true,
compress: true,
sourceMap: true,
sourceMap: false,
banner: "/*\n * Liquid Slider v2.0.12\n * Copyright 2012 Kevin Batdorf\n * http://liquidslider.com\n * MIT license\n */"
},
main: {
Expand All @@ -29,7 +29,7 @@ module.exports = function (grunt) {
watch: {
scripts: {
files: ["src/js/jquery.liquid-slider.js"],
tasks: ["jshint"],
tasks: ["jshint", "uglify"],
options: {
livereload: true
}
Expand All @@ -41,6 +41,6 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');

grunt.registerTask('default', ['jshint', 'uglify']);
grunt.registerTask('default', ['jshint', 'uglify', 'watch']);

};

0 comments on commit 89de7a8

Please sign in to comment.