remove robot ID rooltip

This commit is contained in:
Silver Kuusik
2018-08-29 11:06:06 +02:00
parent 3c50c8487a
commit 6bef582405
3 changed files with 2 additions and 16 deletions

View File

@@ -10,12 +10,6 @@ var codingEnabled = false;
var liveStreamVisible = false;
window.addEventListener('load', function() {
// Activate tooltips
$('[data-toggle="tooltip"]').tooltip({
animated: 'fade',
placement: 'bottom',
html: true
});
// Set the robot ID from the localstorage
$('#robot-id').val(getLocalStorageItem('sumorobot.robotId'));
@@ -227,7 +221,5 @@ window.addEventListener('load', function() {
sumorobot = new Sumorobot(`ws://${ROBOT_SERVER}`, robotId);
// Hide the configuration panel
$('#panel').hide();
// Hide the tooltip, necessary on mobile devices
$('[data-toggle="tooltip"]').tooltip('hide');
});
});

File diff suppressed because one or more lines are too long