romo 0.15.0 → 0.15.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 +4 -4
- data/assets/css/romo/base.scss +6 -0
- data/assets/css/romo/grid.scss +4 -2
- data/assets/js/romo/invoke.js +3 -2
- data/lib/romo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5e61a79ffbb1b8ce82a5f64a2e450a33e233dab
|
|
4
|
+
data.tar.gz: 418ba41c528b3d523db070c9f25f96296567a239
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f93831c07e774407f1f3a3df65aaf71507882d6391bf378b85cd6889f25e91973af1ee50336541814940661b6876913f9a50d52110cfcbafab09161a01c2626
|
|
7
|
+
data.tar.gz: 29514fca6c50958b04ac4849f3570f80c1e27c4f3b194bf0b2c7a72d1aa358b2bb8d456ad1d30096df59446cd468fbf53f1aff57f28bfc0d8e74f760bf595c13
|
data/assets/css/romo/base.scss
CHANGED
|
@@ -87,10 +87,16 @@ a.romo-text {
|
|
|
87
87
|
color: $baseColor;
|
|
88
88
|
text-decoration: none;
|
|
89
89
|
}
|
|
90
|
+
.romo-link { color: $linkColor !important; }
|
|
91
|
+
.romo-link:hover,
|
|
92
|
+
.romo-link-hover:hover { color: $linkColorHover !important;}
|
|
93
|
+
|
|
90
94
|
.romo-pointer { cursor: pointer; }
|
|
91
95
|
.romo-grab { @include cursor-grab; }
|
|
92
96
|
.romo-grabbing { @include cursor-grabbing; }
|
|
93
97
|
|
|
98
|
+
.romo-user-select-none{ @include user-select(none); }
|
|
99
|
+
|
|
94
100
|
/* images */
|
|
95
101
|
|
|
96
102
|
.romo-img-rounded { @include border-radius(6px); }
|
data/assets/css/romo/grid.scss
CHANGED
|
@@ -11,8 +11,10 @@
|
|
|
11
11
|
|
|
12
12
|
.romo-span { min-height: 1px; }
|
|
13
13
|
|
|
14
|
-
.romo-row-pull-left
|
|
15
|
-
.romo-row-
|
|
14
|
+
.romo-row-pull-left,
|
|
15
|
+
.romo-row-align-left { @include flex-justify-content(flex-start); }
|
|
16
|
+
.romo-row-pull-right,
|
|
17
|
+
.romo-row-align-right { @include flex-justify-content(flex-end); }
|
|
16
18
|
.romo-row-push-between { @include flex-justify-content(space-between); }
|
|
17
19
|
.romo-row-push-around { @include flex-justify-content(space-around); }
|
|
18
20
|
|
data/assets/js/romo/invoke.js
CHANGED
|
@@ -100,9 +100,10 @@ RomoInvoke.prototype._doInvoke = function() {
|
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
RomoInvoke.prototype._trigger = function(event_name, event_data) {
|
|
103
|
-
this.
|
|
104
|
-
if (this.targetElem !== undefined) {
|
|
103
|
+
if (this.targetElem[0] !== undefined) {
|
|
105
104
|
this.targetElem.trigger(event_name, event_data);
|
|
105
|
+
} else {
|
|
106
|
+
this.elem.trigger(event_name, event_data);
|
|
106
107
|
}
|
|
107
108
|
}
|
|
108
109
|
|
data/lib/romo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: romo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.15.
|
|
4
|
+
version: 0.15.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kelly Redding
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2016-01-
|
|
13
|
+
date: 2016-01-29 00:00:00 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: assert
|