semantic-ui-sass 0.15.2.0 → 0.15.4.0

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: 0426f46492c1a99a67287a70e41ec31c416dc314
4
- data.tar.gz: 534afb1adc9ede97319592b530e64e8eb98b2c80
3
+ metadata.gz: ece3287d1532b280e3bbb0260ef2d5d4f331801f
4
+ data.tar.gz: 723d6c4cecea33b4b0e0fd409156cdef09c3250d
5
5
  SHA512:
6
- metadata.gz: 4a4403d115ee63adeb9cd48051b34b337b0c58224cc148a8ff429d26e8ef8a082c3ea02156b2ddd5ed618fc108b8b4fb25cfd9c5b4a36339d56e89ce6fbd436f
7
- data.tar.gz: 49c46e90d2836f41c2488fcf1a11e48f1807cfa2dbcf783f36080d507098bdcc102faaf4b1becaff96689dc997d63cda0c8de45bf5208d51dc1b545ff9e82520
6
+ metadata.gz: def91400c62f1d7732e1830594dccf7fd5299f65ebacd6c366de79e47ca1b7dd29c274c1a25ae2bc703d8e1d2d681f10d81b256ad0d99d60a2d73a230b19c08a
7
+ data.tar.gz: cdb86cc676ec67aab33d8b1e5c63e10c18465dc3e0d05af50cb7db86a02af77d4032ab8e4f5f8087f01ee360186ff8cdd88f48aa7664fc8ac608edf9de4aa597
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.15.4.0
2
+
3
+ * Update Semantic UI to 0.15.4
4
+
1
5
  ## 0.15.2.0
2
6
 
3
7
  * Update Semantic UI to 0.15.2
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ## Installation and Usage
6
6
 
7
7
  ```ruby
8
- gem 'semantic-ui-sass', '~> 0.15.2.0'
8
+ gem 'semantic-ui-sass', '~> 0.15.4.0'
9
9
  ```
10
10
  or
11
11
 
@@ -181,17 +181,22 @@ $.fn.dropdown = function(parameters) {
181
181
 
182
182
  mouseenter: function(event) {
183
183
  var
184
- $currentMenu = $(this).find(selector.menu),
184
+ $currentMenu = $(this).find(selector.submenu),
185
185
  $otherMenus = $(this).siblings(selector.item).children(selector.menu)
186
186
  ;
187
- if( $currentMenu.size() > 0 ) {
187
+ if($currentMenu.length > 0 || $otherMenus.length > 0) {
188
188
  clearTimeout(module.itemTimer);
189
- module.itemTimer = setTimeout(function() {
190
- module.animate.hide(false, $otherMenus);
191
- module.verbose('Showing sub-menu', $currentMenu);
192
- module.animate.show(false, $currentMenu);
189
+ module.itemTimer = setTimeout(function() {
190
+ if($otherMenus.length > 0) {
191
+ module.animate.hide(false, $otherMenus.filter(':visible'));
192
+ }
193
+ if($currentMenu.length > 0) {
194
+ module.verbose('Showing sub-menu', $currentMenu);
195
+ module.animate.show(false, $currentMenu);
196
+ }
193
197
  }, settings.delay.show * 2);
194
198
  event.preventDefault();
199
+ event.stopPropagation();
195
200
  }
196
201
  },
197
202
 
@@ -899,10 +904,11 @@ $.fn.dropdown.settings = {
899
904
  },
900
905
 
901
906
  selector : {
902
- menu : '.menu',
903
- item : '.menu > .item',
904
- text : '> .text',
905
- input : '> input[type="hidden"]'
907
+ menu : '.menu',
908
+ submenu : '> .menu',
909
+ item : '.menu > .item',
910
+ text : '> .text',
911
+ input : '> input[type="hidden"]'
906
912
  },
907
913
 
908
914
  className : {
@@ -460,7 +460,7 @@ $.fn.transition = function() {
460
460
  animations = {
461
461
  'animation' :'animationend',
462
462
  'OAnimation' :'oAnimationEnd',
463
- 'MozAnimation' :'mozAnimationEnd',
463
+ 'MozAnimation' :'animationend',
464
464
  'WebkitAnimation' :'webkitAnimationEnd'
465
465
  },
466
466
  animation
@@ -57,9 +57,6 @@ i.icon {
57
57
  -moz-box-sizing: border-box;
58
58
  -ms-box-sizing: border-box;
59
59
  box-sizing: border-box;
60
- -webkit-font-smoothing: antialiased;
61
- -moz-font-smoothing: antialiased;
62
- font-smoothing: antialiased;
63
60
  }
64
61
 
65
62
  i.icon.left:before {
@@ -47,10 +47,6 @@
47
47
 
48
48
  .ui.rating .icon:before {
49
49
  content: "\2605";
50
- -webkit-transition: color 0.3s ease,
51
- opacity 0.3s ease;
52
- transition: color 0.3s ease,
53
- opacity 0.3s ease;
54
50
  }
55
51
 
56
52
  /*******************************
@@ -1,8 +1,8 @@
1
1
  module Semantic
2
2
  module Ui
3
3
  module Sass
4
- VERSION = "0.15.2.0"
5
- SEMANTIC_UI_SHA = '32e52e8bdae87dd526aa3b3099e230b7c3fcb3e5'
4
+ VERSION = "0.15.4.0"
5
+ SEMANTIC_UI_SHA = '2a2a51854c0852e511cc8bb48ee151add55e67b8'
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: semantic-ui-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.2.0
4
+ version: 0.15.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - doabit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-29 00:00:00.000000000 Z
11
+ date: 2014-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler