Automatic Redial For BobRTC

Extremely simple bookmarklet I made that will automatically reconnect to a call whenever hung up in BobRTC. Just drag This Link into your bookmark bar and click it whenever you get into a call. Source code (because its small enough I can share it here): var interval = setInterval(function() {if (document.getElementById("dialstatus").innerHTML == "Hung Up") {document.getElementById("call").click()}}, 100)