vue_crud 0.1.9.3 → 0.1.9.4
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: 950c34ed08f92878154d6e28853bafb1b38a7c7c
|
|
4
|
+
data.tar.gz: 0aab7a99c0fd546fe798195f63baf0d0d038b025
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66827702a8f0513a5932e8ba34dae60a611b0959c63efb2eff7e0af37e549fbcd13d0b02c2772c56501d91c24113e6a93d9e181b140be248b726f7a4d37f42ef
|
|
7
|
+
data.tar.gz: a50d1014bb045b4a2657c9b92b8f18b37f9d4b9059d7009735f47dc94de53b44610f9f286e71862b047ec372f0335b583c495219084188023de2216eea168375
|
|
@@ -39,7 +39,7 @@ $(document).ready(function() {
|
|
|
39
39
|
<div class="sub header"><small>{{ info.titles.subtitle }}</small></div>
|
|
40
40
|
</h1>
|
|
41
41
|
<div class="ui animated fade green button" data-modal="#modelModal" tabindex="0">
|
|
42
|
-
<div class="visible content">新增 {{ info.titles.
|
|
42
|
+
<div class="visible content">新增 {{ info.titles.display_name }}</div>
|
|
43
43
|
<div class="hidden content">
|
|
44
44
|
<i class="right plus icon"></i>
|
|
45
45
|
</div>
|
|
@@ -201,7 +201,7 @@ $(document).ready(function() {
|
|
|
201
201
|
<div class="content">
|
|
202
202
|
<div class="header" v-if="info.titles.title_attribute_model_prefix">{{ model[info.titles.title_attribute_model_prefix][info.titles.title_attribute] }}</div>
|
|
203
203
|
<div class="header" v-else>{{ model[info.titles.title_attribute] }}</div>
|
|
204
|
-
<div class="meta">{{ info.titles.
|
|
204
|
+
<div class="meta">{{ info.titles.display_name }}</div>
|
|
205
205
|
<div class="ui divider"></div>
|
|
206
206
|
<div class="description">
|
|
207
207
|
<div class="ui small feed" v-for="attribute in info.model_attributes" v-if="attribute.visible">
|
data/lib/vue_crud/version.rb
CHANGED
|
@@ -298,7 +298,7 @@ $(document).ready(function() {
|
|
|
298
298
|
var target = $(this).data('modal');
|
|
299
299
|
$(target).modal({
|
|
300
300
|
observeChanges: true,
|
|
301
|
-
transition: '
|
|
301
|
+
transition: 'fade down',
|
|
302
302
|
onShow: function() {
|
|
303
303
|
$(this).find('select.ui.dropdown').dropdown();
|
|
304
304
|
$(this).find('.ui.checkbox').checkbox();
|