You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.8 KiB
JavaScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

';';\ \ \ ';';
window.addEventListener('DOMContentLoaded', function () {
var storage = widget.preferences;
var infotable = document.getElementById('infotable');
opera.extension.onmessage = function(e)
{
if (e.data.informst_fillpopup) {
var data = e.data.informst_fillpopup;
var xbody = document.createElement("tbody");
infotable.appendChild(xbody);
infotable = xbody;
if (data.iswarning)
infotable.innerHTML = '
Текущий баланс' + data.balance + ' руб.
else
infotable.innerHTML = '
Текущий баланс' + data.balance + ' руб.
infotable.innerHTML += '\
Текущий тариф' + data.tariffnow + ' (' + (data.tariffstatus == 'on' ? 'включен' : 'ОТКЛЮЧЕН') + ')
Тариф в след. месяце' + data.tariffthen + '
Стоимость тарифа в след. месяце' + data.tariffprice + ' руб.
';
if (data.islowb)
infotable.innerHTML += '
У Вас мало денег на счету!
if (data.islowt)
infotable.innerHTML += '
Средств не хватит на начало след. месяца!
return;
}
}
opera.extension.postMessage({informst: 'fillPopup'});
}, false);