clockpunch 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/app/assets/javascripts/clockpunch.js +2 -3
- data/lib/clockpunch/version.rb +1 -1
- metadata +1 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
// Generated by CoffeeScript 1.4.0
|
2
2
|
|
3
3
|
/*
|
4
|
-
Clockpunch 0.1.
|
4
|
+
Clockpunch 0.1.3
|
5
5
|
https://github.com/tablexi/clockpunch
|
6
6
|
*/
|
7
7
|
|
@@ -29,12 +29,11 @@ https://github.com/tablexi/clockpunch
|
|
29
29
|
if (format == null) {
|
30
30
|
format = null;
|
31
31
|
}
|
32
|
-
console.debug('format');
|
33
32
|
this.$elem = $(elem);
|
34
33
|
this.$elem.data('timeparser', this);
|
35
34
|
this.parser = new TimeParser(format);
|
36
35
|
if (this.$elem.is('input')) {
|
37
|
-
this.configure_input;
|
36
|
+
this.configure_input();
|
38
37
|
} else {
|
39
38
|
this.configure_span(format);
|
40
39
|
}
|
data/lib/clockpunch/version.rb
CHANGED