dlegr250_material_design 0.1.4 → 0.1.5
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4c40b7102306aac6ebbfd27486425bd902860f4
|
4
|
+
data.tar.gz: 411f68dd96b89beadc6dc50c11d195b82fc12cf7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 595bd524d5aef8497a49fada2ef51ce7afec3d87134d69ac268dc6ee51bf298683958016a4f48ad276917e21a603a5e371a599a33b3dcef31714281282ca7502
|
7
|
+
data.tar.gz: 72e15047c7982081348ac3aadd74e3ba356364bcd48d803cc1f3b1b2f30dd731dc01b331ceec6cebef136e679e3d57671b06c733131a7cf70ff82adc1e6fe7f5
|
@@ -39,7 +39,7 @@ class App.MD.Layout
|
|
39
39
|
if @$main.length > 0
|
40
40
|
if @$leftSidebar.length > 0
|
41
41
|
@$main.hammer({}).bind("swiperight", =>
|
42
|
-
if $(window).width() <= @$
|
42
|
+
if $(window).width() <= @$largeWidth
|
43
43
|
@.showLeftSidebar()
|
44
44
|
)
|
45
45
|
|
@@ -49,7 +49,7 @@ class App.MD.Layout
|
|
49
49
|
|
50
50
|
if @$rightSidebar.length > 0
|
51
51
|
@$main.hammer({}).bind("swipeleft", =>
|
52
|
-
if $(window).width() <= @$
|
52
|
+
if $(window).width() <= @$largeWidth
|
53
53
|
@.showRightSidebar()
|
54
54
|
)
|
55
55
|
|