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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/app/assets/javascripts/semantic-ui/dropdown.js +16 -10
- data/app/assets/javascripts/semantic-ui/transition.js +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +0 -3
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +0 -4
- data/lib/semantic/ui/sass/version.rb +2 -2
- 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: ece3287d1532b280e3bbb0260ef2d5d4f331801f
|
4
|
+
data.tar.gz: 723d6c4cecea33b4b0e0fd409156cdef09c3250d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: def91400c62f1d7732e1830594dccf7fd5299f65ebacd6c366de79e47ca1b7dd29c274c1a25ae2bc703d8e1d2d681f10d81b256ad0d99d60a2d73a230b19c08a
|
7
|
+
data.tar.gz: cdb86cc676ec67aab33d8b1e5c63e10c18465dc3e0d05af50cb7db86a02af77d4032ab8e4f5f8087f01ee360186ff8cdd88f48aa7664fc8ac608edf9de4aa597
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -181,17 +181,22 @@ $.fn.dropdown = function(parameters) {
|
|
181
181
|
|
182
182
|
mouseenter: function(event) {
|
183
183
|
var
|
184
|
-
$currentMenu = $(this).find(selector.
|
184
|
+
$currentMenu = $(this).find(selector.submenu),
|
185
185
|
$otherMenus = $(this).siblings(selector.item).children(selector.menu)
|
186
186
|
;
|
187
|
-
if(
|
187
|
+
if($currentMenu.length > 0 || $otherMenus.length > 0) {
|
188
188
|
clearTimeout(module.itemTimer);
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
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
|
903
|
-
|
904
|
-
|
905
|
-
|
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' :'
|
463
|
+
'MozAnimation' :'animationend',
|
464
464
|
'WebkitAnimation' :'webkitAnimationEnd'
|
465
465
|
},
|
466
466
|
animation
|
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.
|
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-
|
11
|
+
date: 2014-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|