pyk 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NWQyNDZjMDFkODc3ZTM5NDg1MjdjNGM0YjQxNWI2ZTQwYWRmMTYyYQ==
4
+ ZDc5NDQ3MWVkNTE0OTVkMzFjZmQ0YTRmMjU3ZDU5NTc0ZTZjMDQ2Yg==
5
5
  data.tar.gz: !binary |-
6
- OWQyMWFjZGRkZTM0ZTU2NzYwMzE4ZTlhODYzZGRjZTg2MjgwNzVhNw==
6
+ MWU0OTllZmVmZWYyY2ZkODUwMDY3ZWUzMTFkNzRhMWVmYzgxOWM4Ng==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- YmE0Y2Q2NzcxOGMzNzA1MDYwMzFhZjBmZmY1NmUyZGNjMWI2YjU2NzRiNTE5
10
- YjE0MjNlY2JiYzhmNjY2YjljYmIwMzFiYmNlNzBkM2Q4MDlkYWE2NjA3N2Fh
11
- YmZhODgxNTZhNDI0MzZiZjgzOTI2Njk3NWI3MTUzZmM0ZDM0ZWE=
9
+ ODhjMjEwZGJmYWIyMzI5NzA1MTExNTJkNzMyNzY5YzIyYjNlNjllYTI4Yzk0
10
+ ZmNjODRiMjk3MTg3NTUzYzE4Mzg2N2NmOGE1MjliNmFjMmI0NWEyNWVmMWI2
11
+ NjNhZTcwNDQzYzQ5Y2ZkM2I0YzJiM2E0YWI2YWI4N2U5NGYzMjQ=
12
12
  data.tar.gz: !binary |-
13
- ODUzY2MzODMxM2RiMTBhMTAxNzc5MTBlODgzMGQ3N2MwMTczZjJkMTY1ZTJi
14
- ODQxZTlmNGE4M2VmMjRhNjc5NTY1ZjYxYjA4NjA4Mzk2M2JmNzhkYWNlMjli
15
- ZDg0ZGRjODcwOTA0Y2Q4MTBlNjAzMmMzNmZiMzM3MWMzYjA4M2M=
13
+ ZTI4MTQ1ZjEyNGE4MzJjODYyZTBiZmU0ZGRmNTJjZGEzODVhZDA1ZGQ2Y2Q0
14
+ NDQzNDM3NTAxMTRjZWM3NWM4NmQ4Mzg4MzU4MjUyYjZmYjk4ZDU0MzkwMTgx
15
+ YTI3MmRhNTlkM2QzYTBlMTFiYTZhYTBlNTA1NDAzYzZjYTlmZGI=
@@ -1,52 +1,52 @@
1
1
  $(document).ready(function(){
2
-
3
- $("#tooltip-below").tooltip({
4
- "placement": "bottom"
5
- });
6
-
7
- //textarea increase / decrease
8
- $(".text_area_animate").focus(function() {
9
-
10
- var val_length = $(this).val().length;
11
- var size = $(this).attr("expand-height");
12
-
13
- if (val_length <= 0 ) {
14
- $(this).animate({"height": size}, "fast" );
15
- }
16
- }
17
- );
18
-
19
- $(".text_area_animate").focusout(function() {
20
-
21
- var val_length = $(this).val().length;
22
- var row = $(this).attr("row"); // 1 row = 16px
23
- var size = $(this).attr("expand-height");
24
-
25
- if (val_length <= 0 ) {
26
-
27
- $(this).animate({"height": "30px" }, "fast" );
28
- }
29
-
30
- }
31
- );
32
-
33
- //form hint
34
-
35
- $(".form-control").focus(function() {
36
- var text_hint = $(this).attr("hint");
37
- if (text_hint.length > 0) {
38
- var text_id = $(this).attr("id");
39
- var text_hint = $(this).attr("hint");
40
- $("#" + text_id).after("<span class='input-error-hint'>"+ text_hint+ "</span>");
41
- $(".input-error-hint").css("font-size", "11px").css("color", "grey");
42
- }
43
- });
44
-
45
- Tinycon.setOptions({
46
- width: 7,
47
- height: 9,
48
- font: '10px arial',
49
- colour: '#ffffff',
50
- background: '#549A2F',
51
- fallback: true
2
+ $("#tooltip-below").tooltip({
3
+ "placement": "bottom"
4
+ });
5
+
6
+ //textarea increase / decrease
7
+ $(".text_area_animate").focus(function() {
8
+
9
+ var val_length = $(this).val().length;
10
+ var size = $(this).attr("expand-height");
11
+
12
+ if (val_length <= 0 ) {
13
+ $(this).animate({"height": size}, "fast" );
14
+ }
15
+ }
16
+ );
17
+
18
+ $(".text_area_animate").focusout(function() {
19
+
20
+ var val_length = $(this).val().length;
21
+ var row = $(this).attr("row"); // 1 row = 16px
22
+ var size = $(this).attr("expand-height");
23
+
24
+ if (val_length <= 0 ) {
25
+
26
+ $(this).animate({"height": "30px" }, "fast" );
27
+ }
28
+
29
+ }
30
+ );
31
+
32
+ //form hint
33
+
34
+ $(".form-control").focus(function() {
35
+ var text_hint = $(this).attr("hint");
36
+ if (text_hint.length > 0) {
37
+ var text_id = $(this).attr("id");
38
+ var text_hint = $(this).attr("hint");
39
+ $("#" + text_id).after("<span class='input-error-hint'>"+ text_hint+ "</span>");
40
+ $(".input-error-hint").css("font-size", "11px").css("color", "grey");
41
+ }
42
+ });
43
+
44
+ Tinycon.setOptions({
45
+ width: 7,
46
+ height: 9,
47
+ font: '10px arial',
48
+ colour: '#ffffff',
49
+ background: '#549A2F',
50
+ fallback: true
51
+ });
52
52
  });
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pyk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pykih Software LLP