diff options
author | h6w <tudor@tudorholton.com> | 2020-02-07 10:20:48 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 10:20:48 +1100 |
commit | b4dd0ae3ea297cb8472d99bee165734eaed4a146 (patch) | |
tree | 17b62785006e1d7a3a58da5fe11843c5e5ce0353 | |
parent | 6f31e72d0feb537262d8bcdd6f1c19d70ae3d5db (diff) | |
download | phpvirtualbox-b4dd0ae3ea297cb8472d99bee165734eaed4a146.zip phpvirtualbox-b4dd0ae3ea297cb8472d99bee165734eaed4a146.tar.gz phpvirtualbox-b4dd0ae3ea297cb8472d99bee165734eaed4a146.tar.bz2 |
Fix operator spacing error during merge.
-rw-r--r-- | js/phpvirtualbox.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/phpvirtualbox.js b/js/phpvirtualbox.js index 6e9f90a..63c8344 100644 --- a/js/phpvirtualbox.js +++ b/js/phpvirtualbox.js @@ -4771,7 +4771,8 @@ var vboxStorage = { runningEnabled: true, }); }; - if($('#vboxPane').data('vboxConfig').enableAdvancedConfig&&vboxMedia.formatSupportsDiscard(ma.medium.format)) { + if($('#vboxPane').data('vboxConfig').enableAdvancedConfig + && vboxMedia.formatSupportsDiscard(ma.medium.format)) { opts[opts.length]={ label: 'Support Discard (TRIM)', attrib: 'discard', |