cloudrider 0.3.20 → 0.3.21
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 +4 -4
- data/generica/app/assets/javascripts/components/tree/taxon-li.js.em +1 -0
- data/generica/app/assets/javascripts/templates/components/search-and-filter.emblem +5 -7
- data/generica/app/assets/javascripts/templates/components/tree-taxon-li.emblem +8 -3
- data/generica/app/assets/javascripts/templates/components/tree-taxon-ul.emblem +1 -1
- data/generica/app/assets/javascripts/templates/components/tree-taxon-wrapper.emblem +1 -1
- data/generica/app/varissets/javascripts/templates/components/search-and-filter.emblem.erb +6 -7
- data/generica/app/varissets/javascripts/templates/products/index.emblem.erb +13 -2
- data/lib/cloudrider/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 088ae68a4eca11260a60843b241dce38eb9074a6
|
|
4
|
+
data.tar.gz: 86a4b4eee6817a359c1f83c3ce4e6a7cadd34dfe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a045aedd738cbb8eccbb4c80d592f87fa581930dc2b208a95cca1fb934551922394fc36c62fab957144b581d18fde6a7435435bca72f0843ea43291ce3df499
|
|
7
|
+
data.tar.gz: 155c134d30344e4be430e912cee358c0e8dcac421818216c1d4413e9126894a136fb834396ae5763c08f058009ef84585c8e2bf78302e4474a4323d279a8d1bd
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
.row
|
|
2
|
-
.small-12.
|
|
3
|
-
tree-taxon-wrapper activeTaxons=activeTaxons taxons=taxons
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
.row.collapse
|
|
2
|
+
.small-12.medium-4.large-3.column.taxons
|
|
3
|
+
tree-taxon-wrapper activeTaxons=activeTaxons taxons=taxons tempLocked=tempLocked
|
|
4
|
+
.small-12.medium-8.large-9.column.query
|
|
5
|
+
form.row.collapse submit="search"
|
|
7
6
|
.small-10.columns
|
|
8
7
|
Ember.TextField value=searchQuery class="full-width" name="search"
|
|
9
8
|
.small-2.columns
|
|
10
|
-
button.button.postfix
|
|
9
|
+
button.button.postfix.search-button type="submit"
|
|
11
10
|
i.fa.fa-search
|
|
12
|
-
|
|
13
11
|
.row
|
|
14
12
|
.small-12.columns
|
|
15
13
|
== yield
|
|
@@ -12,8 +12,13 @@
|
|
|
12
12
|
span class=isSelected:visible:hidden
|
|
13
13
|
i.fa.fa-check-square-o
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
if tempLocked
|
|
16
|
+
span.temp-locked
|
|
17
|
+
i.fa.fa-cog.fa-spin
|
|
18
|
+
tr-span en="please wait"
|
|
19
|
+
else
|
|
20
|
+
span.taxon-name
|
|
21
|
+
tr-span en=taxon.taxonName
|
|
17
22
|
|
|
18
23
|
if adminModeReasonable
|
|
19
24
|
.edit
|
|
@@ -34,4 +39,4 @@ if adminMode
|
|
|
34
39
|
|
|
35
40
|
if taxon.hasChildren
|
|
36
41
|
if isExpanded
|
|
37
|
-
tree-taxon-ul rootTaxon=taxon activeTaxons=activeTaxons adminMode=adminMode
|
|
42
|
+
tree-taxon-ul rootTaxon=taxon activeTaxons=activeTaxons adminMode=adminMode tempLocked=tempLocked
|
|
@@ -5,4 +5,4 @@ if rootTaxon.children.isPending
|
|
|
5
5
|
i.fa.fa-spin.fa-cog
|
|
6
6
|
tr-span en="loading"
|
|
7
7
|
each taxon in rootTaxon.children
|
|
8
|
-
tree-taxon-li taxon=taxon activeTaxons=activeTaxons adminMode=adminMode
|
|
8
|
+
tree-taxon-li taxon=taxon activeTaxons=activeTaxons adminMode=adminMode tempLocked=tempLocked
|
|
@@ -2,14 +2,13 @@
|
|
|
2
2
|
<% when "top2x" %>
|
|
3
3
|
.row
|
|
4
4
|
.small-12.columns.taxons
|
|
5
|
-
tree-taxon-wrapper activeTaxons=activeTaxons taxons=taxons
|
|
6
|
-
|
|
5
|
+
tree-taxon-wrapper activeTaxons=activeTaxons taxons=taxons tempLocked=tempLocked
|
|
7
6
|
.small-12.columns.query
|
|
8
|
-
.row.collapse
|
|
7
|
+
form.row.collapse submit="search"
|
|
9
8
|
.small-10.columns
|
|
10
9
|
Ember.TextField value=searchQuery class="full-width" name="search"
|
|
11
10
|
.small-2.columns
|
|
12
|
-
button.button.postfix
|
|
11
|
+
button.button.postfix.search-button type="submit"
|
|
13
12
|
i.fa.fa-search
|
|
14
13
|
|
|
15
14
|
.row
|
|
@@ -19,13 +18,13 @@
|
|
|
19
18
|
<% when "lefttop" %>
|
|
20
19
|
.row
|
|
21
20
|
.small-12.medium-4.large-3.column.taxons
|
|
22
|
-
tree-taxon-wrapper activeTaxons=activeTaxons taxons=taxons
|
|
21
|
+
tree-taxon-wrapper activeTaxons=activeTaxons taxons=taxons tempLocked=tempLocked
|
|
23
22
|
.small-12.medium-8.large-9.column.query
|
|
24
|
-
.row.collapse
|
|
23
|
+
form.row.collapse submit="search"
|
|
25
24
|
.small-10.columns
|
|
26
25
|
Ember.TextField value=searchQuery class="full-width" name="search"
|
|
27
26
|
.small-2.columns
|
|
28
|
-
button.button.postfix
|
|
27
|
+
button.button.postfix.search-button type="submit"
|
|
29
28
|
i.fa.fa-search
|
|
30
29
|
.row
|
|
31
30
|
.small-12.columns
|
|
@@ -1,13 +1,24 @@
|
|
|
1
1
|
<% case theme %>
|
|
2
2
|
<% when :craigslist %>
|
|
3
|
-
search-and-filter taxons=taxons action="search"
|
|
3
|
+
search-and-filter taxons=taxons action="search" tempLocked=products.isPending
|
|
4
|
+
p.taxoncrumbs
|
|
5
|
+
each taxon in activeTaxons
|
|
6
|
+
span.spacebar
|
|
7
|
+
span +
|
|
8
|
+
span= taxon.taxonName
|
|
4
9
|
fancy-paginator page=page per=per metadatum=metadatum
|
|
5
10
|
|
|
6
11
|
products-catalog products=products
|
|
7
12
|
|
|
8
13
|
fancy-paginator page=page per=per metadatum=metadatum
|
|
9
14
|
<% else %>
|
|
10
|
-
search-and-filter taxons=taxons action="search"
|
|
15
|
+
search-and-filter taxons=taxons action="search" tempLocked=products.isPending
|
|
16
|
+
|
|
17
|
+
p.taxoncrumbs
|
|
18
|
+
each taxon in activeTaxons
|
|
19
|
+
span.spacebar
|
|
20
|
+
span +
|
|
21
|
+
span= taxon.taxonName
|
|
11
22
|
|
|
12
23
|
fancy-paginator page=page per=per metadatum=metadatum
|
|
13
24
|
|
data/lib/cloudrider/version.rb
CHANGED