diff --git a/.jshintrc b/.jshintrc index dce6f09d..a457dda2 100644 --- a/.jshintrc +++ b/.jshintrc @@ -7,5 +7,8 @@ "es3": true, "esnext": true, "unused": true, - "maxlen" : 80 + "maxlen" : 80, + "trailing": true, + "quotmark": "single", + "immed": true } \ No newline at end of file diff --git a/dist/tablefilter/tablefilter.js b/dist/tablefilter/tablefilter.js index cdcfc326..8bcf60f5 100644 --- a/dist/tablefilter/tablefilter.js +++ b/dist/tablefilter/tablefilter.js @@ -1,6 +1,6 @@ /** * TableFilter v0.0.0 by Max Guglielmi - * build date: 2015-07-20T08:11:50.564Z + * build date: 2015-07-25T08:31:07.539Z * MIT License */ diff --git a/dist/tablefilter/tf-1.js b/dist/tablefilter/tf-1.js index 25965b10..10a0904b 100644 --- a/dist/tablefilter/tf-1.js +++ b/dist/tablefilter/tf-1.js @@ -1,6 +1,6 @@ /** * TableFilter v0.0.0 by Max Guglielmi - * build date: 2015-07-20T08:11:50.564Z + * build date: 2015-07-25T08:31:07.539Z * MIT License */ diff --git a/src/dom.js b/src/dom.js index c65b7123..175bda92 100644 --- a/src/dom.js +++ b/src/dom.js @@ -72,7 +72,7 @@ export default { ele.className = cls; } else if(!this.hasClass(ele, cls)){ - ele.className += " " + cls; + ele.className += ' ' + cls; } }, diff --git a/webpack.config.js b/webpack.config.js index 3a9aa538..7d81a5be 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,7 +1,7 @@ var webpack = require('webpack'); var path = require('path'); var Clean = require('clean-webpack-plugin'); -var StringReplacePlugin = require("string-replace-webpack-plugin"); +var StringReplacePlugin = require('string-replace-webpack-plugin'); var fs = require('fs'); var pkg = JSON.parse(fs.readFileSync('package.json', 'utf8'));