tawork 0.0.4 → 0.0.5
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/app/views/layouts/_spaces.html.haml +4 -4
- data/lib/tawork/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: ac26a56c3c8cd474334a1d3d3d731a636da0ce72
|
4
|
+
data.tar.gz: 6a2d3dd9c84b343a819b0ca9f5d0c18cff4005f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af5aae6d26f7b45526cc571e95c6c001f5082086d602352545a11178585927cdf86c3353d44d1cf52417fd972cf546de9a46315893d149f5a5681b821d6a3fe3
|
7
|
+
data.tar.gz: 3b498268218302122996324a45e97b8fecf104086cb0f5351de11b34fe796fe90a6c78c8de9332ed294f982438c7438d947e9b981857922df119ef88cea996ef
|
@@ -3,7 +3,7 @@
|
|
3
3
|
= link_to wiki_pages_path, class: "space-link" do
|
4
4
|
All Spaces
|
5
5
|
%i.fa.fa-arrow-circle-right
|
6
|
-
- if @space.present?
|
6
|
+
- if @space.present? && @space.persisted?
|
7
7
|
%li.nav-header
|
8
8
|
= @space.title
|
9
9
|
- @space.children.each do |page|
|
@@ -13,9 +13,9 @@
|
|
13
13
|
-# - if page.has_children?
|
14
14
|
-# %i.fa.fa-plus-square
|
15
15
|
-# = page.title
|
16
|
-
|
17
|
-
|
18
|
-
|
16
|
+
%li
|
17
|
+
= link_to new_wiki_space_path do
|
18
|
+
%i.fa.fa-plus
|
19
19
|
|
20
20
|
:coffeescript
|
21
21
|
$ ->
|
data/lib/tawork/version.rb
CHANGED