chr 0.4.23 → 0.4.24
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 594c3acffcab69f182d3316f72cfce6871492a85
|
|
4
|
+
data.tar.gz: 2c35cd943cdafa50847c6c79bb3a98fe34f64104
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e9f986335472b20aec56b487eaf89bfa4dfe049ec6d0fc545b7f480c9fe8c7f1d3957b40dd01d83f40ad99bdbd6d6dd2800a19ef73747d342832b344c3f5584
|
|
7
|
+
data.tar.gz: 1e27427cbea90e1728876625d4f42d083e604790e9b26522716bacc35a4ec927866b2f20e3a3b4b7f5418e7ce3d17a24261d69bc786b8da0973a426aa0f17817
|
|
@@ -26,7 +26,10 @@
|
|
|
26
26
|
# new ModuleCategories(config, 'by_channel', postsListConfig)
|
|
27
27
|
# ------------------------------------------------------------------------------
|
|
28
28
|
|
|
29
|
-
# TODO:
|
|
29
|
+
# TODO:
|
|
30
|
+
# 1. fix issue after cancel search button is clicked
|
|
31
|
+
# 2. fix issue with deep linking to nested list
|
|
32
|
+
# 3. add method of editing rootList document
|
|
30
33
|
|
|
31
34
|
class @ModuleCategories
|
|
32
35
|
constructor: (config, @scopeParam, @nestedListConfigMethod) ->
|
|
@@ -215,8 +215,8 @@ a { text-decoration: none; }
|
|
|
215
215
|
|
|
216
216
|
.module-categories {
|
|
217
217
|
.list:first-child { right: 0; left: initial; }
|
|
218
|
-
.list-aside { right: 22em; left: 0; }
|
|
219
|
-
.list-aside .back { visibility: hidden; }
|
|
218
|
+
.list.list-aside { right: 22em; left: 0; }
|
|
219
|
+
.list.list-aside .back { visibility: hidden; }
|
|
220
220
|
.view { right: 22em; left: 0; }
|
|
221
221
|
.view .header { border-right: 1px solid; }
|
|
222
222
|
}
|
data/lib/chr/version.rb
CHANGED