We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 648e18e commit 55b9a5bCopy full SHA for 55b9a5b
README.md
@@ -34,9 +34,9 @@ For HAML:
34
```
35
:javascript
36
jQuery(function() {
37
- window.$this = new (App.\#{controller_path.split(/\/|_/).map(&:capitalize).join('')} || App.Base)();
38
- if (typeof $this.\#{action_name} === 'function') {
39
- return $this.\#{action_name}.call();
+ window.$this = new (App.#{controller_path.split(/\/|_/).map(&:capitalize).join('')} || App.Base)();
+ if (typeof $this.#{action_name} === 'function') {
+ return $this.#{action_name}.call();
40
}
41
});
42
0 commit comments