jquery-datetimepicker
Advanced tools
Comparing version 2.4.0 to 2.4.7
100
bower.json
{ | ||
"name":"datetimepicker", | ||
"version":"2.4.0", | ||
"main": [ | ||
"jquery.datetimepicker.js", | ||
"jquery.datetimepicker.css" | ||
], | ||
"ignore": [ | ||
"**/screen", | ||
"**/datetimepicker.jquery.json", | ||
"**/*.png", | ||
"**/*.txt", | ||
"**/*.md", | ||
"**/*.html", | ||
"**/*.tpl" | ||
], | ||
"keywords": [ | ||
"calendar", | ||
"date", | ||
"time", | ||
"form", | ||
"datetime", | ||
"datepicker", | ||
"timepicker", | ||
"datetimepicker", | ||
"validation", | ||
"ui", | ||
"scroller", | ||
"picker", | ||
"i18n", | ||
"input", | ||
"jquery", | ||
"touch" | ||
], | ||
"dependencies": { | ||
"jquery": ">= 1.7.2" | ||
"name": "datetimepicker", | ||
"version": "2.4.7", | ||
"main": [ | ||
"build/jquery.datetimepicker.full.js", | ||
"build/jquery.datetimepicker.full.min.js", | ||
"jquery.datetimepicker.css" | ||
], | ||
"ignore": [ | ||
"**/screen", | ||
"**/datetimepicker.jquery.json", | ||
"**/*.png", | ||
"**/*.txt", | ||
"**/*.md", | ||
"**/*.html", | ||
"**/*.tpl", | ||
"**/jquery.js", | ||
"bower_components", | ||
"node_modules" | ||
], | ||
"keywords": [ | ||
"calendar", | ||
"date", | ||
"time", | ||
"form", | ||
"datetime", | ||
"datepicker", | ||
"timepicker", | ||
"datetimepicker", | ||
"validation", | ||
"ui", | ||
"scroller", | ||
"picker", | ||
"i18n", | ||
"input", | ||
"jquery", | ||
"touch" | ||
], | ||
"dependencies": { | ||
"jquery": ">= 1.7.2", | ||
"jquery-mousewheel": ">= 3.1.13", | ||
"php-date-formatter": ">= 1.3.3" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Chupurnov Valeriy", | ||
"email": "chupurnov@gmail.com", | ||
"homepage": "http://xdsoft.net/contacts.html" | ||
"authors": [ | ||
{ | ||
"name": "Chupurnov Valeriy", | ||
"email": "chupurnov@gmail.com", | ||
"homepage": "http://xdsoft.net/contacts.html" | ||
} | ||
], | ||
"homepage":"http://xdsoft.net/jqplugins/datetimepicker/", | ||
"repository": { | ||
"type": "git", "url": "git://github.com:xdan/datetimepicker.git" | ||
} | ||
} | ||
], | ||
"license": "MIT", | ||
"homepage": "http://xdsoft.net/jqplugins/datetimepicker/", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com:xdan/datetimepicker.git" | ||
} | ||
} |
{ | ||
"name": "datetimepicker", | ||
"version": "2.4.0", | ||
"version": "2.4.7", | ||
"title": "jQuery Date and Time picker", | ||
@@ -5,0 +5,0 @@ "description": "jQuery plugin for date, time, or datetime manipulation in form", |
{ | ||
"name": "jquery-datetimepicker", | ||
"version": "2.4.0", | ||
"version": "2.4.7", | ||
"description": "jQuery Plugin DateTimePicker it is DatePicker and TimePicker in one", | ||
"main": "jquery.datetimepicker.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"concat": "concat-cli -f bower_components/php-date-formatter/js/php-date-formatter.js jquery.datetimepicker.js bower_components/jquery-mousewheel/jquery.mousewheel.js -o build/jquery.datetimepicker.full.js", | ||
"minify": "uglifyjs jquery.datetimepicker.js -c -m -o build/jquery.datetimepicker.min.js", | ||
"minifyconcat": "uglifyjs build/jquery.datetimepicker.full.js -c -m -o build/jquery.datetimepicker.full.min.js", | ||
"build": "npm run minify && npm run concat && npm run minifyconcat" | ||
}, | ||
@@ -27,3 +31,7 @@ "repository": { | ||
}, | ||
"homepage": "https://github.com/xdan/datetimepicker" | ||
"homepage": "https://github.com/xdan/datetimepicker", | ||
"devDependencies": { | ||
"concat-cli": "^1.0.1", | ||
"uglifyjs": "^2.4.10" | ||
} | ||
} |
@@ -1,6 +0,16 @@ | ||
datetimepicker | ||
# PLEASE. Help me update documetation. | ||
[Doc.tpl](https://github.com/xdan/datetimepicker/blob/master/doc.tpl) | ||
This file will be automatically displayed on the site | ||
# datetimepicker | ||
============== | ||
**!!! The latest version of the options 'lang' obsolete. The language setting is now global. !!!** | ||
Use this: | ||
```javascript | ||
$.datetimepicker.setLocale('en'); | ||
``` | ||
[Documentation][doc] | ||
jQuery Plugin Date and Time Picker | ||
@@ -10,12 +20,39 @@ | ||
![ScreenShot](https://raw2.github.com/xdan/datetimepicker/master/screen/1.png) | ||
![ScreenShot](https://raw.github.com/xdan/datetimepicker/master/screen/1.png) | ||
DatePicker | ||
![ScreenShot](https://raw2.github.com/xdan/datetimepicker/master/screen/2.png) | ||
![ScreenShot](https://raw.github.com/xdan/datetimepicker/master/screen/2.png) | ||
TimePicker | ||
![ScreenShot](https://raw2.github.com/xdan/datetimepicker/master/screen/3.png) | ||
![ScreenShot](https://raw.github.com/xdan/datetimepicker/master/screen/3.png) | ||
Options to highlight individual dates or periods | ||
![ScreenShot](https://raw.github.com/Mingpao/datetimepicker/master/screen/4.png) | ||
![ScreenShot](https://raw.github.com/Mingpao/datetimepicker/master/screen/5.png) | ||
![ScreenShot](https://raw.github.com/Mingpao/datetimepicker/master/screen/6.png) | ||
[doc]: http://xdsoft.net/jqplugins/datetimepicker/ | ||
### JS Build help | ||
**Requires Node and NPM** [Download and install node.js](http://nodejs.org/download/). | ||
Install: | ||
1. Install `bower` globally with `npm install -g bower`. | ||
2. Run `npm install`. npm will look at `package.json` and automatically install the necessary dependencies. | ||
3. Run `bower install`, which installs front-end packages defined in `bower.json`. | ||
Build: | ||
- `npm run build` | ||
When build completed, you'll have the following files: | ||
- **build/jquery.datetimepicker.full.js** - browser file | ||
- **build/jquery.datetimepicker.full.min.js** - browser minified file | ||
- **build/jquery.datetimepicker.min.js** - amd module style minified file |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
563140
22
6212
57
2