UNPKG

jquery-table-fixer

Version:

TableHeadFixer is a simple [jQuery](http:/jquery.com/ "jQuery") plugin for fixer HTML tables header, footer or columns.<br/> This plugin will only add elements events and css attributes necessary for fix tables header, footer or columns, you can customiz

17 lines (14 loc) 345 B
var gulp = require("gulp"); var watch = require("gulp-watch"); var livereload = require("gulp-livereload"); var watchFiles = [ "tableHeadFixer.js", "examples/*.html" ]; gulp.task("watch", function() { livereload.listen(); gulp.watch(watchFiles, function() { livereload.reload(); }); }); gulp.task("default", ["watch"]);