Commit 92d8b7be0e8b67e2b49f93fee87c66cb2455750c
1 parent
e3bb9147
Exists in
master
and in
11 other branches
rails4: fix asset pipeline use
Showing
3 changed files
with
3 additions
and
3 deletions
Show diff stats
plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb
| @@ -39,4 +39,4 @@ | @@ -39,4 +39,4 @@ | ||
| 39 | <%= submit_button :save, c_('Save'), :cancel => {:action => 'index'}%> | 39 | <%= submit_button :save, c_('Save'), :cancel => {:action => 'index'}%> |
| 40 | <% end %> | 40 | <% end %> |
| 41 | 41 | ||
| 42 | -<%= javascript_include_tag '../plugins/custom_forms/field' %> | 42 | +<%= javascript_include_tag 'plugins/custom_forms/field' %> |
plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb
| @@ -31,4 +31,4 @@ | @@ -31,4 +31,4 @@ | ||
| 31 | <%= button :back, _('Back to forms'), :action => 'index' %> | 31 | <%= button :back, _('Back to forms'), :action => 'index' %> |
| 32 | <% end %> | 32 | <% end %> |
| 33 | 33 | ||
| 34 | -<%= javascript_include_tag '../plugins/custom_forms/order' %> | 34 | +<%= javascript_include_tag 'plugins/custom_forms/order' %> |
plugins/stoa/lib/stoa_plugin.rb
| @@ -24,7 +24,7 @@ class StoaPlugin < Noosfero::Plugin | @@ -24,7 +24,7 @@ class StoaPlugin < Noosfero::Plugin | ||
| 24 | content_tag(:small, _('Confirm your birth date. Pay attention to the format: yyyy-mm-dd.'), :id => 'usp-birth-date-balloon'), :id => 'signup-birth-date', :style => 'display: none') + | 24 | content_tag(:small, _('Confirm your birth date. Pay attention to the format: yyyy-mm-dd.'), :id => 'usp-birth-date-balloon'), :id => 'signup-birth-date', :style => 'display: none') + |
| 25 | content_tag('div', required(labelled_form_field(_('CPF'), text_field_tag('cpf', ''))) + | 25 | content_tag('div', required(labelled_form_field(_('CPF'), text_field_tag('cpf', ''))) + |
| 26 | content_tag(:small, _('Confirm your CPF number.'), :id => 'usp-cpf-balloon'), :id => 'signup-cpf', :style => 'display: none') + | 26 | content_tag(:small, _('Confirm your CPF number.'), :id => 'usp-cpf-balloon'), :id => 'signup-cpf', :style => 'display: none') + |
| 27 | - javascript_include_tag('../plugins/stoa/javascripts/jquery.observe_field', '../plugins/stoa/javascripts/signup_complement') | 27 | + javascript_include_tag('plugins/stoa/javascripts/jquery.observe_field', 'plugins/stoa/javascripts/signup_complement') |
| 28 | } | 28 | } |
| 29 | end | 29 | end |
| 30 | 30 |