Skip to content

Commit db4f2a0

Browse files
committed
Escape the javascript snippets
1 parent 6857ecc commit db4f2a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/generators/rails_script/install/install_generator.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def insert_layout_javascript
2727
ERB:
2828
<script>
2929
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)();
3131
if (typeof $this.<%= action_name %> === 'function') {
3232
return $this.<%= action_name%>.call();
3333
}
@@ -37,7 +37,7 @@ def insert_layout_javascript
3737
HAML:
3838
:javascript
3939
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)();
4141
if (typeof $this.\#{action_name} === 'function') {
4242
return $this.\#{action_name}.call();
4343
}

0 commit comments

Comments
 (0)