Customized functions
Setting the configuration widget startup commands.
Inserting a customized feature into a website
$owidget._vlastniFunkce = function() {
// Vlastní kód funkce
} <script type="text/javascript">
(function () {
var scr = document.createElement('script'); scr.type = 'text/javascript'; scr.async = true; scr.charset = 'UTF-8';
scr.src = '//app.mluvii.com/widget/OOWidget.js';
scr.$owidgetOnLoad = function (owidget) {
if (!owidget.isSupported) { return; }
owidget.init('295b1064-cf5b-4a5d-9e05-e7a74f86ae5e', 'navodFunkce');
$owidget._vlastniFunkce = function() {
// Vlastní kód funkce
}
owidget.connectToServer();
};
var ffs = document.getElementsByTagName('script')[0]; ffs.parentNode.insertBefore(scr, ffs);
})();
</script>Last updated
Was this helpful?