diff --git a/connectcore-demo-example/static/js/common.js b/connectcore-demo-example/static/js/common.js index 9f66d26..1a74a05 100644 --- a/connectcore-demo-example/static/js/common.js +++ b/connectcore-demo-example/static/js/common.js @@ -492,7 +492,10 @@ function getDeviceName() { // Updates the available web sections. function updateAvailableSections() { - // Send request to retrieve device type. + // Remove multimedia section when rendering the demo from a computer. + if (!navigator.platform.includes("aarch")) + removeSection(ID_SECTION_MULTIMEDIA); + // Set visible sections based on device type. $.post( "http://" + getServerAddress() + "/ajax/get_device_type", function(data) {