ceritium-rails-footnotes 3.4.1 → 3.4.1.1

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.
@@ -5,6 +5,7 @@ module Footnotes
5
5
  class LayoutNote < AbstractNote
6
6
  def initialize(controller)
7
7
  @controller = controller
8
+ @template = @controller.instance_variable_get('@template')
8
9
  end
9
10
 
10
11
  def row
@@ -21,7 +22,8 @@ module Footnotes
21
22
 
22
23
  protected
23
24
  def filename
24
- @controller.active_layout.filename
25
+ file = @template.send(:_pick_template, @controller.active_layout)
26
+ File.join(File.expand_path(RAILS_ROOT), 'app', 'views', file.to_s)
25
27
  end
26
28
  end
27
29
  end
@@ -13,7 +13,7 @@ module Footnotes
13
13
  result = '<ul>'
14
14
  @partials.collect.each do |partial|
15
15
  full_filename = File.join(File.expand_path(RAILS_ROOT), 'app', 'views', partial.first.to_s)
16
- result += "<li><a href='#{Footnotes::Filter.prefix}#{full_filename}'>"
16
+ result += "<li><a href='#{Footnotes::Filter.prefix(full_filename, 1, 1)}'>"
17
17
  result += "#{partial.last}</a></li>"
18
18
  end
19
19
  result += '</ul>'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ceritium-rails-footnotes
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.1
4
+ version: 3.4.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Jos\xC3\xA9 Valim"