edge_framework 1.2.5 → 1.2.6

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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YjAzOTY3MTViM2I0N2E5NDc2MGVkNGE3YzYzOWYzMGY4YzU0YWNjYw==
4
+ MWZkYmUyYTQ1MDAwNzBlYjVmZjkyYjFkZDNlNWZlYjNhN2E0MzE4NA==
5
5
  data.tar.gz: !binary |-
6
- NjM0ZTQxMWI5ZDM1MTc1YjhlZjcwMmEzYzJkYmU0NjhlN2QzOTY0NA==
6
+ MWVjNTg5NTZjNmUxMGE0OGViMDhkNmMzMTIxZDRmMzg1YWUzMzU1Zg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YmEwNzk2ZWNiMjdkNDI5MzYxYmY5OTc2Y2UyYjI1MjlhYjY0ZjVkNDBmODUy
10
- NTUyY2E2MzkwZTI5ODdlYTdkMmMxOTg5Y2Q3N2VmMzIyZWI5NTM0NDQzODUx
11
- MTA5OWY0ZjI3ZmIyY2FhN2FlYzk4Yzg2NmUwYmE0ZDU1NTQxZjQ=
9
+ OGMyN2U0MGQ3MDZmNjBhODM0YmJhNDRmZjcxYmY4YjJlODViOWJhMzNmOGE3
10
+ Y2I3YWIxYWIwYWYxOWFmYjFmZWEwNjdlNmVlOTc1OTEyOGYxYmQ0NGZiNmM0
11
+ MWY5ZGQ4OTgwMDQ1ZTk5MDVmOTQyMWZlMDg1NDc1MDM1MmFjNTk=
12
12
  data.tar.gz: !binary |-
13
- OGI4YWUzMTI2NjQ2NzQyM2UxMWI2OGI5ZWMwOWQxYjlmODJiYzQ3NTU4YWUz
14
- NmFmNWI2YzE4MGY5ZjE0MWJmYjM0NWY3YTNlYjBmNWUwZWZiNGQxZGUzMWUx
15
- OTcxMzhjNTczNDNiNGI5MjU2YzQ1ZTMwMTg5OWIzOTE5OTFhN2M=
13
+ OWEzNDczMDdjNjRkMDEwMGViZGM3OGJmNGM3NTE1NTQyMzE5NWE3NmM2ZDZm
14
+ ZDE2YTA1NjZjYzNlM2IyYTdlZWM5YTNjMGM2NmFlYmRjZjk3YzI5ZmM1NTE5
15
+ NGEzNzUyMmFlMTA4MmRkZjI1YzY1NDRkOGMwYzQ3OTEwYjdiMTA=
@@ -1,6 +1,6 @@
1
1
  /* ------------------------------------------
2
2
  - EDGE Framework - github.com/HennerS/Edge
3
- - v1.2.5 (Ezalor)
3
+ - v1.2.6 (Ezalor)
4
4
  ------------------------------------------ */
5
5
 
6
6
  @import "edge/base";
@@ -163,7 +163,10 @@ textarea {
163
163
  min-height: 50px;
164
164
  }
165
165
 
166
- table { border-collapse: collapse; border-spacing: 0; }
166
+ table {
167
+ border-collapse: collapse;
168
+ border-spacing: 0;
169
+ }
167
170
 
168
171
 
169
172
  /* Miscellaneous useful HTML classes */
@@ -8,16 +8,17 @@
8
8
  EDGE Print
9
9
  -------------- */
10
10
 
11
- @media print {
11
+ @media only print {
12
12
  * {
13
13
  background: transparent !important;
14
- color: #000 !important; /* Black prints faster: h5bp.com/s */
14
+ color: #000 !important; // Black prints faster: h5bp.com/s
15
15
  box-shadow: none !important;
16
16
  text-shadow: none !important;
17
17
  }
18
18
 
19
19
  a,
20
20
  a:visited {
21
+ color: #000 !important;
21
22
  text-decoration: underline;
22
23
  }
23
24
 
@@ -29,9 +30,7 @@
29
30
  content: " (" attr(title) ")";
30
31
  }
31
32
 
32
- /*
33
- * Don't show links for images, or javascript/internal links
34
- */
33
+ // Don't show links for images, or javascript/internal links
35
34
 
36
35
  .ir a:after,
37
36
  a[href^="javascript:"]:after,
data/lib/edge/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Edge
2
- VERSION = "1.2.5"
2
+ VERSION = "1.2.6"
3
3
  CODENAME = "Ezalor"
4
4
  end
@@ -1,3 +1,12 @@
1
- (function () {
2
- // Your app-specific script here
3
- }() );
1
+ var app = {
2
+ init: function() {
3
+ $(".something").on("click", this.doSomething);
4
+ $(".something-2").on("click", this.doSomething2);
5
+ },
6
+ doSomething: function(e) {},
7
+ doSomething2: function(e) {},
8
+ };
9
+
10
+ $(document).ready(function() {
11
+ app.init();
12
+ });
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: edge_framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.5
4
+ version: 1.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henner Setyono
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-07 00:00:00.000000000 Z
11
+ date: 2014-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass