Skip to content

Commit d7323f5

Browse files
committed
Fix noneOption undefined
noneOption now clears input value ('') Closes #622 WIP
1 parent ada2c55 commit d7323f5

13 files changed

+6
-9
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

jquery.timepicker.min.css

-1
This file was deleted.

jquery.timepicker.min.js

-7
This file was deleted.

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"url": "https://github.com/jonthornton"
88
},
99
"scripts": {
10+
"build": "webpack --config webpack.config.js",
1011
"format": "prettier-eslint --write \"jquery.timepicker.js\"",
1112
"lint": "eslint",
1213
"test": "jest"
@@ -23,7 +24,9 @@
2324
"grunt-contrib-uglify": "~0.11.0",
2425
"jest": "^21.1.0",
2526
"prettier-eslint": "^8.1.1",
26-
"prettier-eslint-cli": "^4.3.2"
27+
"prettier-eslint-cli": "^4.3.2",
28+
"uglifyjs-webpack-plugin": "^0.4.6",
29+
"webpack": "^3.6.0"
2730
},
2831
"main": "jquery.timepicker.min.js",
2932
"description": "A jQuery timepicker plugin inspired by Google Calendar. It supports both mouse and keyboard navigation.",
File renamed without changes.
File renamed without changes.
File renamed without changes.

jquery.timepicker.js renamed to src/jquery.timepicker.js

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* License: MIT
55
*/
66

7+
const jQuery = require('jquery');
8+
79
(function(factory) {
810
if (
911
typeof exports === "object" &&

0 commit comments

Comments
 (0)