Skip to content
This repository was archived by the owner on May 20, 2024. It is now read-only.

Commit cc9ad22

Browse files
committed
Edit button
1 parent 02049e0 commit cc9ad22

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ gem 'jbuilder', '~> 1.2'
2929

3030
gem 'yajl-ruby', require: 'yajl'
3131

32-
gem 'prismic.io', '~> 1.1.0', require: 'prismic'
32+
gem 'prismic.io', '~> 1.3.3', require: 'prismic'
3333

3434
# A gem to build simple paginations
3535
gem 'kaminari'

Gemfile.lock

+4-2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ GEM
3737
coffee-script-source (1.6.3)
3838
erubis (2.7.0)
3939
execjs (2.0.0)
40+
hashery (2.1.1)
4041
hike (1.2.3)
4142
i18n (0.6.5)
4243
jbuilder (1.5.0)
@@ -56,7 +57,8 @@ GEM
5657
minitest (4.7.5)
5758
multi_json (1.7.9)
5859
polyglot (0.3.3)
59-
prismic.io (1.1.0)
60+
prismic.io (1.3.3)
61+
hashery (~> 2.1.1)
6062
rack (1.5.2)
6163
rack-test (0.6.2)
6264
rack (>= 1.0)
@@ -121,7 +123,7 @@ DEPENDENCIES
121123
jbuilder (~> 1.2)
122124
jquery-rails
123125
kaminari
124-
prismic.io (~> 1.1.0)
126+
prismic.io (~> 1.3.3)
125127
rails (= 4.0.0)
126128
rails_12factor
127129
sass-rails (~> 4.0.0)

app/helpers/prismic_helper.rb

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ def api
2121
@api
2222
end
2323

24+
def endpoint
25+
PrismicService.config('url')
26+
end
27+
2428
# Return the actual used reference
2529
def ref
2630
@ref ||= maybe_ref || api.master_ref.ref

app/views/application/document.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<article id="<%= @document.id %>">
1+
<article id="<%= @document.id %>" data-wio-id="<%= @document.id %>">
22
<%#
33
as_html_safe is a monkey-patch in your prismicio_custom.rb, just because it's faster than typing
44
@document.as_html(link_resolver(maybe_ref)).html_safe

app/views/layouts/application.html.erb

+5
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616

1717
<%= yield %>
1818

19+
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
20+
<% # This is required for the edit button. %>
21+
<script>
22+
window.prismic = { endpoint: '<%= endpoint %>' };
23+
</script>
1924
<% # This file is required for Experiments and Previews. %>
2025
<script src="//static.cdn.prismic.io/prismic.min.js"></script>
2126
<% # You can safely remove this block if you don't use experiments - your Google Analytics block should be before this tag %>

0 commit comments

Comments
 (0)