scrivito_pdf_widget 1.0.12 → 1.0.13
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/assets/images/pdf.png +0 -0
- data/app/assets/javascripts/scrivito_pdf_widget/editing.js +1 -6
- data/app/models/pdf_widget.rb +4 -0
- data/app/views/pdf_widget/details.html.erb +1 -1
- data/app/views/pdf_widget/thumbnail.html.erb +3 -13
- data/lib/scrivito_pdf_widget/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f956f48f80e9325207531931b6dc57a17033e180
|
4
|
+
data.tar.gz: 5965ff5c1b527dae0cd0d066b6c78dc07040b651
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acfab0b41a40a4cdf79b468ce0de92103a6075f5d76a7989941f20479224b3e317e6d54db47b806ac6023f89944deb2b5e0a32acf2a1314abbf1658ca11a48bd
|
7
|
+
data.tar.gz: b691a6cf796f04a65b9c391aed93e3acf4b2d2e469df427b2b22c95d76f9ac348f7ba23b40a5d8cfd3fc6a213439043e47064ee5ee27efd23567f06ad21fc25e
|
Binary file
|
@@ -1,16 +1,11 @@
|
|
1
1
|
(function($, App) {
|
2
2
|
'use strict';
|
3
3
|
|
4
|
-
|
4
|
+
scrivito.on('content', function() {
|
5
5
|
if(scrivito.in_editable_view()) {
|
6
6
|
scrivito.register_default_obj_class_for_content_type({
|
7
7
|
'application/pdf': 'Pdf'
|
8
8
|
});
|
9
|
-
|
10
|
-
scrivito.content_browser.filters.pdfs = {
|
11
|
-
'title': 'PDF',
|
12
|
-
'query': App.scrivito.obj_where('_obj_class', 'equals', 'Pdf')
|
13
|
-
};
|
14
9
|
}
|
15
10
|
});
|
16
11
|
})(jQuery, this);
|
data/app/models/pdf_widget.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
<h4>Select PDF</h4>
|
2
|
-
<%= scrivito_tag(:div, widget, :pdf) %>
|
2
|
+
<%= scrivito_tag(:div, widget, :pdf, data: {filter: PdfWidget.filter}) %>
|
@@ -1,13 +1,3 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
</div>
|
5
|
-
|
6
|
-
<div class="title">
|
7
|
-
PDF
|
8
|
-
</div>
|
9
|
-
|
10
|
-
<div class="description">
|
11
|
-
Display a PDF on your page.
|
12
|
-
</div>
|
13
|
-
</div>
|
1
|
+
<%= scrivito_thumbnail 'PDF', image_tag("pdf.png") do %>
|
2
|
+
Display a PDF on your page.
|
3
|
+
<% end %>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scrivito_pdf_widget
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Scrivito
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -61,6 +61,7 @@ extra_rdoc_files: []
|
|
61
61
|
files:
|
62
62
|
- LICENSE
|
63
63
|
- Rakefile
|
64
|
+
- app/assets/images/pdf.png
|
64
65
|
- app/assets/javascripts/scrivito_pdf_widget.js
|
65
66
|
- app/assets/javascripts/scrivito_pdf_widget/application.js
|
66
67
|
- app/assets/javascripts/scrivito_pdf_widget/editing.js
|