waves/public/assets/g/xp/system/help.js
2025-04-09 17:11:14 -05:00

29 lines
654 B
JavaScript

$(window).on('xpboot', () => {
xp.applications.add('winhelp', () => {
var el = $.parseHTML(`<window width="800" height="500" title="Help & Support">
<style>
iframe[seamless]{
background-color: transparent;
border: 0px none transparent;
padding: 0px;
overflow: hidden;
}
.frame-container {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
padding: 0px;
margin: 0px;
}
</style>
<div class="frame-container">
<iframe height="100%" seamless="seamless" width="100%" src="system/help.html"></iframe>
</div>
</window>`);
document.body.appendChild(el[0]);
$(el).updateWindow();
});
});