jquery-datetimepicker 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 19651fe8262f8333a89bceee16ba88d1eaeff707
|
|
4
|
+
data.tar.gz: 64cc5efbfef8aed9fc3b7a894015ec5b80fcc543
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 9c3f6b622ea2b0b25c5aa4d0ec2525ccd12407a67016a80bc9f2b00175807adfa844bba948617439107b339b8d0eceab4e9e5e2fcf45eb042ec67aeefca88da1
|
|
7
|
+
data.tar.gz: 55b14713ca4c26387bc74865b73c169151345e294ecd33cdc6a0b0713800818a207c565f6df5fda63da2be3f708a136dcda22609dd301d3ed12ac35b600d9b97
|
data/README.md
CHANGED
|
@@ -49,7 +49,7 @@ $('.some-class-name').dateTimePicker({
|
|
|
49
49
|
|
|
50
50
|
## Sample
|
|
51
51
|
|
|
52
|
-
|
|
52
|
+
http://evening-coast-9059.herokuapp.com/
|
|
53
53
|
|
|
54
54
|
## Contributors
|
|
55
55
|
|
|
@@ -58,6 +58,10 @@ Authors under Big Purple Dot
|
|
|
58
58
|
* Chris Kendrick
|
|
59
59
|
* Clifford Simon
|
|
60
60
|
|
|
61
|
+
## Contact
|
|
62
|
+
|
|
63
|
+
For any questions or concerns, please email cliff@bigpurpledot.com
|
|
64
|
+
|
|
61
65
|
## License
|
|
62
66
|
|
|
63
67
|
jquery-datetimepicker is under the MIT license (http://en.wikipedia.org/wiki/MIT_License).
|
|
@@ -2,8 +2,7 @@ require File.expand_path('../lib/jquery-datetimepicker/version', __FILE__)
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'jquery-datetimepicker'
|
|
5
|
-
s.
|
|
6
|
-
s.summary = "Date and Time Picker into one!"
|
|
5
|
+
s.summary = "Date and Time Picker all into one! With optional alerts."
|
|
7
6
|
s.description = "Simple pop up widget for picking a date and time. Also can set reminders and alerts"
|
|
8
7
|
s.authors = ["Aldo Sarmiento", "Chris Kendrick", "Clifford Simon"]
|
|
9
8
|
s.email = 'cliff@bigpurpledot.com'
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
left: 13px;
|
|
69
69
|
|
|
70
70
|
span{
|
|
71
|
-
background: url(cal-month-prev-arrow.png) 0 0 no-repeat;
|
|
71
|
+
background: image-url(cal-month-prev-arrow.png) 0 0 no-repeat;
|
|
72
72
|
top: 13px;
|
|
73
73
|
margin-top: 0;
|
|
74
74
|
left: 9px;
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
top: 7px;
|
|
80
80
|
right: 0;
|
|
81
81
|
span{
|
|
82
|
-
background: url(cal-month-next-arrow.png) 0 0 no-repeat;;
|
|
82
|
+
background: image-url(cal-month-next-arrow.png) 0 0 no-repeat;;
|
|
83
83
|
top:18px;
|
|
84
84
|
}
|
|
85
85
|
}
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
|
|
162
162
|
.clock-up-arrow{
|
|
163
163
|
height: 10px;
|
|
164
|
-
background: url(up-arrow-cal.png) no-repeat center center;
|
|
164
|
+
background: image-url(up-arrow-cal.png) no-repeat center center;
|
|
165
165
|
width: 24px;
|
|
166
166
|
margin-bottom: 5px;
|
|
167
167
|
cursor: pointer;
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
|
|
170
170
|
.clock-down-arrow{
|
|
171
171
|
height: 10px;
|
|
172
|
-
background: url(down-arrow-cal.png) no-repeat center center;
|
|
172
|
+
background: image-url(down-arrow-cal.png) no-repeat center center;
|
|
173
173
|
width: 24px;
|
|
174
174
|
margin-top: 5px;
|
|
175
175
|
cursor: pointer;
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
.alerts-label{
|
|
220
220
|
float: left;
|
|
221
221
|
font-size: 12px;
|
|
222
|
-
background: url(reminder-env.png) no-repeat 0 center;
|
|
222
|
+
background: image-url(reminder-env.png) no-repeat 0 center;
|
|
223
223
|
padding: 20px 35px;
|
|
224
224
|
}
|
|
225
225
|
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
}
|
|
353
353
|
|
|
354
354
|
a.selected{
|
|
355
|
-
background-image: url(table-sort-arrow-down.png);
|
|
355
|
+
background-image: image-url(table-sort-arrow-down.png);
|
|
356
356
|
background-position: 99px center;
|
|
357
357
|
background-repeat: no-repeat;
|
|
358
358
|
}
|
metadata
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jquery-datetimepicker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 1.0.1
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Aldo Sarmiento
|
|
@@ -11,7 +10,7 @@ authors:
|
|
|
11
10
|
autorequire:
|
|
12
11
|
bindir: bin
|
|
13
12
|
cert_chain: []
|
|
14
|
-
date: 2013-
|
|
13
|
+
date: 2013-08-19 00:00:00.000000000 Z
|
|
15
14
|
dependencies: []
|
|
16
15
|
description: Simple pop up widget for picking a date and time. Also can set reminders
|
|
17
16
|
and alerts
|
|
@@ -34,26 +33,25 @@ files:
|
|
|
34
33
|
- vendor/assets/stylesheets/jquery-datetimepicker.css.scss
|
|
35
34
|
homepage: https://github.com/BigPurpleDot/jquery-datetimepicker
|
|
36
35
|
licenses: []
|
|
36
|
+
metadata: {}
|
|
37
37
|
post_install_message:
|
|
38
38
|
rdoc_options: []
|
|
39
39
|
require_paths:
|
|
40
40
|
- lib
|
|
41
41
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
42
|
-
none: false
|
|
43
42
|
requirements:
|
|
44
|
-
- -
|
|
43
|
+
- - '>='
|
|
45
44
|
- !ruby/object:Gem::Version
|
|
46
45
|
version: '0'
|
|
47
46
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
48
|
-
none: false
|
|
49
47
|
requirements:
|
|
50
|
-
- -
|
|
48
|
+
- - '>='
|
|
51
49
|
- !ruby/object:Gem::Version
|
|
52
50
|
version: '0'
|
|
53
51
|
requirements: []
|
|
54
52
|
rubyforge_project:
|
|
55
|
-
rubygems_version:
|
|
53
|
+
rubygems_version: 2.0.3
|
|
56
54
|
signing_key:
|
|
57
|
-
specification_version:
|
|
58
|
-
summary: Date and Time Picker into one!
|
|
55
|
+
specification_version: 4
|
|
56
|
+
summary: Date and Time Picker all into one! With optional alerts.
|
|
59
57
|
test_files: []
|