Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/blame/commit/5ed4a41dbaadad4c72fe3007714bf768cb490c7b/resources/library/applications/QR-Code.wgt/js/main.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
новые иконки в OpenBoard

37 lines
666 B

7 years ago
//Variables de référence
/*---------------------------------*/
//Fonctions de référence
var text="https://www.amxa.ch";
$(function(){
$("#ok").click(function()
{
text=$('#qrtext').val();
$("#codediv").html("");
$("#codediv").qrcode({text: text});
$("#formdiv").addClass("hidden");
$("#display").html(text);
$("body").removeClass("grey");
$("#codediv").removeClass("hidden");
$("#textdiv").removeClass("hidden");
});
$("#codediv").click(function(){
$("#codediv").addClass("hidden");
$("#textdiv").addClass("hidden");
$("body").addClass("grey");
$("#formdiv").removeClass("hidden");
});
});