promethee 1.3.17 → 1.3.18
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: cfca3684db6b757e855b0835be693967e87df03b
|
|
4
|
+
data.tar.gz: ddb1792398d2b192bf77a54ac1f962fe90e8d9ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2bdad28ae4c697c11c9318c83bed873cdcfdb7d5138fc99626319507aee39629d3017360bb60f02e6213005d1b367a1c4ca766b6fef5e13610b5a759b51141e4
|
|
7
|
+
data.tar.gz: d1825face076d50e89db6e3831c201567f9242c56dd51afa13c91ea8b179387c13c193b0553100297f871152ce8118e2f6a77e6b929a4d907e82a5c563ad4f6c
|
|
@@ -1,18 +1,28 @@
|
|
|
1
1
|
<script type="text/ng-template" id="promethee/components/image/localize">
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
<div class="
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
<div ng-show="component.master.attributes.alt || component.master.attributes.caption">
|
|
3
|
+
<hr>
|
|
4
|
+
<div class="row">
|
|
5
|
+
<div class="col-md-6">
|
|
6
|
+
<img ng-src="{{component.master.attributes.src}}" class="img-responsive" />
|
|
7
|
+
<div ng-show="component.master.attributes.alt">
|
|
8
|
+
<b>Alt</b>
|
|
9
|
+
<p>{{component.master.attributes.alt}}</p>
|
|
10
|
+
</div>
|
|
11
|
+
<div ng-show="component.master.attributes.caption">
|
|
12
|
+
<b>Description</b>
|
|
13
|
+
<p>{{component.master.attributes.caption | htmlSafe}}</p>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="col-md-6">
|
|
17
|
+
<div ng-show="component.attributes.alt">
|
|
18
|
+
<b>Alt</b>
|
|
19
|
+
<input ng-model="component.attributes.alt" type="text" class="form-control">
|
|
20
|
+
</div>
|
|
21
|
+
<div ng-show="component.attributes.caption">
|
|
22
|
+
<b>Description</b>
|
|
23
|
+
<summernote config="options" ng-model="component.attributes.caption"></summernote>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
16
26
|
</div>
|
|
17
27
|
</div>
|
|
18
28
|
</script>
|
|
@@ -4,14 +4,18 @@
|
|
|
4
4
|
<div class="col-md-6">
|
|
5
5
|
<b>Page title</b>
|
|
6
6
|
<p>{{component.master.attributes.title}}</p><br>
|
|
7
|
-
<
|
|
8
|
-
|
|
7
|
+
<div ng-show="component.master.attributes.description">
|
|
8
|
+
<b>Page description</b>
|
|
9
|
+
<p>{{component.master.attributes.description}}</p>
|
|
10
|
+
</div>
|
|
9
11
|
</div>
|
|
10
12
|
<div class="col-md-6">
|
|
11
13
|
<b>Page title</b>
|
|
12
14
|
<input ng-model="component.attributes.title" type="text" class="form-control"><br>
|
|
13
|
-
<
|
|
14
|
-
|
|
15
|
+
<div ng-show="component.attributes.description">
|
|
16
|
+
<b>Page description</b>
|
|
17
|
+
<textarea ng-model="component.attributes.description" type="text" class="form-control"></textarea>
|
|
18
|
+
</div>
|
|
15
19
|
</div>
|
|
16
20
|
</div>
|
|
17
21
|
</script>
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
<script type="text/ng-template" id="promethee/components/text/localize">
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
<div class="
|
|
5
|
-
<div class="
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
<
|
|
2
|
+
<div ng-show="component.master.attributes.body">
|
|
3
|
+
<hr>
|
|
4
|
+
<div class="row">
|
|
5
|
+
<div class="col-md-6">
|
|
6
|
+
<div class="promethee-edit__wrapper" ng-bind-html="component.master.attributes.body | htmlSafe"></div>
|
|
7
|
+
</div>
|
|
8
|
+
<div class="col-md-6">
|
|
9
|
+
<summernote config="options" ng-model="component.attributes.body"></summernote>
|
|
10
|
+
</div>
|
|
9
11
|
</div>
|
|
10
12
|
</div>
|
|
11
13
|
</script>
|