Format Code - JavaScript - Continuation Indentation?
Why does this not happen in JavaScript? Works great in PHP.
This is how I want it to look:
AjaxUpdater(
'ajaxObject=Apps_Reporting' +
'&ajaxMethod=PrepareAndFire' +
'&cboReport=' + $F('cboReport') +
$sVars,
'LoadReportHere');
Instead, it looks like this:
AjaxUpdater(
'ajaxObject=Apps_Reporting' +
'&ajaxMethod=PrepareAndFire' +
'&cboReport=' + $F('cboReport') +
$sVars,
'LoadReportHere');
Please sign in to leave a comment.
Ugh, that's a real problem. We finally jumped on board with Format Code today, despite some things not our liking. In PHP, it's working well enough to continue, but in JS, this is a big issue trying to spot argument problems.
http://youtrack.jetbrains.net/issue/WI-7965
Keith,
Thanks!