diff options
author | h6w <tudor@tudorholton.com> | 2020-01-29 11:29:57 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-29 11:29:57 +1100 |
commit | b19edfc483dff008c3dcdd9a1c69c8691ffddd2c (patch) | |
tree | c2abcb0fb54decf6400646cdbde3d471f7d826fd /js/phpvirtualbox.js | |
parent | 7e4efb3dd35a1c88651dfdc7b568b4c426365bec (diff) | |
parent | b991d174ef6902c7848d30b3d84102d220d41135 (diff) | |
download | phpvirtualbox-b19edfc483dff008c3dcdd9a1c69c8691ffddd2c.zip phpvirtualbox-b19edfc483dff008c3dcdd9a1c69c8691ffddd2c.tar.gz phpvirtualbox-b19edfc483dff008c3dcdd9a1c69c8691ffddd2c.tar.bz2 |
Merge pull request #188 from chotaire/chot-select-gpu
Add selection of graphics controller (VBoxVGS/VMSVGA/VboxSVGA) (by pasha1st)
Diffstat (limited to 'js/phpvirtualbox.js')
-rw-r--r-- | js/phpvirtualbox.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/js/phpvirtualbox.js b/js/phpvirtualbox.js index a9b41a3..fb1edec 100644 --- a/js/phpvirtualbox.js +++ b/js/phpvirtualbox.js @@ -957,6 +957,11 @@ var vboxVMDetailsSections = { condition: function(d) { return !(vboxVMDetailsSections.display.rows[1].condition(d)); } + },{ + title: "Graphics Controller", + callback: function(d) { + return d['graphicsControllerType']; + } } ] }, |