File tree 1 file changed +2
-2
lines changed
lib/generators/rails_script/install
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def insert_layout_javascript
27
27
ERB:
28
28
<script>
29
29
jQuery(function() {
30
- window.$this = new (App.<%= controller_path.split(/\/ |_/).map(&:capitalize).join('') %> || App.Base)();
30
+ window.$this = new (App.<%= controller_path.split(/\\ /|_/).map(&:capitalize).join('') %> || App.Base)();
31
31
if (typeof $this.<%= action_name %> === 'function') {
32
32
return $this.<%= action_name%>.call();
33
33
}
@@ -37,7 +37,7 @@ def insert_layout_javascript
37
37
HAML:
38
38
:javascript
39
39
jQuery(function() {
40
- window.$this = new (App.\# {controller_path.split(/\/ |_/).map(&:capitalize).join('')} || App.Base)();
40
+ window.$this = new (App.\# {controller_path.split(/\\ /|_/).map(&:capitalize).join('')} || App.Base)();
41
41
if (typeof $this.\# {action_name} === 'function') {
42
42
return $this.\# {action_name}.call();
43
43
}
You can’t perform that action at this time.
0 commit comments