Skip to content

Commit

Permalink
Update string quotes to make the code compatible with Netbeans (#901)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek authored Feb 3, 2020
1 parent f55a391 commit fa94b89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ public function terminate($output = null)
}
if ($keys) {
$ids = implode(',', $keys);
$remove_function = "$('.ui.dimmer.modals.page').find('${ids}').remove();";
$remove_function = '$(\'.ui.dimmer.modals.page\').find(\''.$ids.'\').remove();';
}
$output = '<script>jQuery(function() {'.$remove_function.$output['atkjs'].'});</script>'.$output['html'];
$this->outputResponseHtml($output);
Expand Down

0 comments on commit fa94b89

Please sign in to comment.