diff options
author | chotaire <chotaire@chotaire.net> | 2019-09-07 14:32:24 +0200 |
---|---|---|
committer | chotaire <chotaire@chotaire.net> | 2019-09-07 14:32:24 +0200 |
commit | fc4b530f5ba041a69b8490d297f3a2dd45fe7527 (patch) | |
tree | f581b9a245a7f2df0bc64707df301d966f1159bb | |
parent | f83122b7b473fbbbc3e0d3f62aaadea4462c6ebc (diff) | |
download | phpvirtualbox-fc4b530f5ba041a69b8490d297f3a2dd45fe7527.zip phpvirtualbox-fc4b530f5ba041a69b8490d297f3a2dd45fe7527.tar.gz phpvirtualbox-fc4b530f5ba041a69b8490d297f3a2dd45fe7527.tar.bz2 |
Added selection of graphics controller (by pasha1st)
-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 19fd02e..07d0521 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']; + } } ] }, |