Skip to content

Commit

Permalink
Remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrylow committed Jan 30, 2021
1 parent d125c84 commit 837f750
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion dist/js/basictable.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ class basictable {
}
}
_resize(table) {
console.log("resize");
this.tables.forEach((table => {
if (table.getAttribute("data-bt-active")) {
this._check(table);
Expand Down
2 changes: 1 addition & 1 deletion dist/js/basictable.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "basictable",
"version": "2.0.1",
"version": "2.0.2",
"description": "Basic Table jQuery and Vanilla JS plugin for simple responsive tables.",
"main": "jquery.basictable.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile-js": "terser src/js/basictable.js --output dist/js/basictable.min.js -c -m --comments && terser src/js/basictable.js --output dist/js/basictable.js -b indent_level=2",
"compile-jquery": "terser src/js/jquery.basictable.js --output dist/js/jquery.basictable.min.js -c -m --comments && terser src/js/jquery.basictable.js --output dist/js/jquery.basictable.js -b indent_level=2",
"compile-css": "uglifycss src/css/basictable.css > dist/css/basictable.min.css --ugly-comments && beautify-css src/css/basictable.css dist/css/basictable.css",
"compile": "yarn compile-js && yarn compile-jquery && compile-css",
"compile": "yarn compile-js && yarn compile-jquery && yarn compile-css",
"lint": "yarn standard src/js/*.js"
},
"repository": {
Expand Down

0 comments on commit 837f750

Please sign in to comment.