Back To Desktop

Quick Widget Conversion Please check your existing Dashboard widget code if your widget doesn't run perfectly:
element.innerTextby
element.innerHTML
body.onloadMove especially all static initializing code into a setup method and call it from body.onload.
if (window.widget) {
//your existing onload code
}
window.eventand provide a proper event parameter instead.
event.x and event.yby
event.clientX and event clientYEspecially check the standard widget resize code.
<canvas/>by
<canvas></canvas>and don't use deprecated context methods (see here).
For any technical questions please contact us on: developer@widgetop.com
