ish_manager 0.1.8.311 → 0.1.8.312
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 01ba80484218980a06df42236fd65c651f61abeea9a40f9ed8db9f5a172bb3ed
|
|
4
|
+
data.tar.gz: 2310bf2f411f019232af7c47a7c7e8547a42d85916bc44ea17b3fb48b70ffb86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e6e888c1d79e5433f6811821d31d64cfe17f9174645c8e9d56fde60e698d372f8d184f7d354266251b733e2ba54df964106087aa64af211a5a0dac5e9a5c2320
|
|
7
|
+
data.tar.gz: 5fa02a1f155617cc8ce37c14dd8e270c130003972790f7db2847edc37670f4c9d8c714c3db1cfd7e15ab8ad3bdc7d8fefcdeeb9d4c7167bd5e3a7642106cdea4
|
|
@@ -47,29 +47,21 @@ $(function () {
|
|
|
47
47
|
})
|
|
48
48
|
|
|
49
49
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
// material_select & select2
|
|
50
|
+
/*
|
|
51
|
+
* material_select & select2
|
|
52
|
+
**/
|
|
59
53
|
if ($('body').length > 0) {
|
|
60
54
|
if ('function' === typeof $('body').material_select ) {
|
|
61
55
|
$('select').material_select()
|
|
62
56
|
}
|
|
63
|
-
if (!!$('body').select2) {
|
|
57
|
+
if (!!$('body').select2) {
|
|
58
|
+
$('.select2').select2({
|
|
59
|
+
width: 'element'
|
|
60
|
+
})
|
|
61
|
+
}
|
|
64
62
|
}
|
|
65
63
|
|
|
66
64
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
65
|
var mainHeaderContext = $(".manager--main-header")
|
|
74
66
|
$(".manager--main-header #collapseHeader").click(function (_e) {
|
|
75
67
|
if ($(this).hasClass('fa-compress')) {
|
|
@@ -6,11 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
.newsitems-edit
|
|
8
8
|
%h1 Edit Newsitem
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
9
|
+
- if @site
|
|
10
|
+
For site: #{@site.domain} #{@site.lang} <br />
|
|
11
|
+
- if @city
|
|
12
|
+
For city: #{@city.name} <br />
|
|
14
13
|
= render 'form', :newsitem => @newsitem, :url => url
|
|
15
14
|
|
|
16
15
|
.debug
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
|
|
2
|
-
.
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
New Newsitem
|
|
2
|
+
.newsitems-new
|
|
3
|
+
%h1
|
|
4
|
+
New Newsitem
|
|
6
5
|
- if @site
|
|
7
6
|
For Site #{@site.domain}
|
|
8
7
|
- if @city
|
|
9
8
|
For City #{@city.name}
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
= render 'form', :newsitem => @newsitem
|
|
10
|
+
|