romo 0.15.0 → 0.15.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 29038a7b155e52db93e90ea26efff083381caab7
4
- data.tar.gz: 5002aeb2208a9c85108a12289f8c2802d4321e2a
3
+ metadata.gz: b5e61a79ffbb1b8ce82a5f64a2e450a33e233dab
4
+ data.tar.gz: 418ba41c528b3d523db070c9f25f96296567a239
5
5
  SHA512:
6
- metadata.gz: 44b0beb45e3d30f3ed2fd65807c1ff473fe2462dc8ea68d49067534016b4698f5ccb8ba745b3f555d8b5dc727a57ca8bf034bd4e627f286ea216da2f0db23744
7
- data.tar.gz: beef77e14c6f677659082312d94a84c8bc1302f86d1e4f3149d6b1db6457ec05c9be1eb2a7e177efd4a5af8b691cf681e422137ace38c8c97f4ca6f81bfb0a97
6
+ metadata.gz: 5f93831c07e774407f1f3a3df65aaf71507882d6391bf378b85cd6889f25e91973af1ee50336541814940661b6876913f9a50d52110cfcbafab09161a01c2626
7
+ data.tar.gz: 29514fca6c50958b04ac4849f3570f80c1e27c4f3b194bf0b2c7a72d1aa358b2bb8d456ad1d30096df59446cd468fbf53f1aff57f28bfc0d8e74f760bf595c13
@@ -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); }
@@ -11,8 +11,10 @@
11
11
 
12
12
  .romo-span { min-height: 1px; }
13
13
 
14
- .romo-row-pull-left { @include flex-justify-content(flex-start); }
15
- .romo-row-pull-right { @include flex-justify-content(flex-end); }
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
 
@@ -100,9 +100,10 @@ RomoInvoke.prototype._doInvoke = function() {
100
100
  }
101
101
 
102
102
  RomoInvoke.prototype._trigger = function(event_name, event_data) {
103
- this.elem.trigger(event_name, event_data);
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
@@ -1,3 +1,3 @@
1
1
  module Romo
2
- VERSION = "0.15.0"
2
+ VERSION = "0.15.1"
3
3
  end
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.0
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-26 00:00:00 Z
13
+ date: 2016-01-29 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: assert