Skip to content

Commit

Permalink
Fix bad line breaks (coding style)
Browse files Browse the repository at this point in the history
Signed-off-by: Chirayu Chiripal <[email protected]>
  • Loading branch information
chirayuchiripal committed Sep 20, 2014
1 parent 137c44a commit 9187b75
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions js/console.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,17 @@ var PMA_console = {
PMA_console.$consoleTemplates = $('#pma_console>.templates');

// Generate a from for post
PMA_console.$requestForm = $('<form method="post" action="import.php">'
+ '<input name="is_js_confirmed" value="0">'
+ '<textarea name="sql_query"></textarea>'
+ '<input name="console_message_id" value="0">'
+ '<input name="db" value="">'
+ '<input name="table" value="">'
+ '<input name="token" value="'
+ PMA_commonParams.get('token') + '">'
+ '</form>');
PMA_console.$requestForm = $('<form method="post" action="import.php">' +
'<input name="is_js_confirmed" value="0">' +
'<textarea name="sql_query"></textarea>' +
'<input name="console_message_id" value="0">' +
'<input name="db" value="">' +
'<input name="table" value="">' +
'<input name="token" value="' +
PMA_commonParams.get('token') +
'">' +
'</form>'
);
PMA_console.$requestForm.bind('submit', AJAX.requestHandler);

// Event binds shouldn't run again
Expand Down

0 comments on commit 9187b75

Please sign in to comment.