ShowUp.TV LeavingViaMSGWarning

Ostrzeżenie przed opuszczeniem własnej transmisji.

2017-09-23 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

// ==UserScript==
// @name        ShowUp.TV LeavingViaMSGWarning
// @namespace   [email protected]
// @description Ostrzeżenie przed opuszczeniem własnej transmisji.
// @include     https://showup.tv/site/start_transmission
// @exclude     
// @version     0.2
// @grant       none
// @run-at      document-end
// ==/UserScript==

$(".blue-btn").on("click", function(event){
    if(confirm("Potwierdź opuszczenie transmisji."))
    {
       return true;
    }
    else
    {
        event.preventDefault();
        return false;
    }
};