Resize
Try resizing the window
Width: 0
Height: 0
Scale: 0
const manager = new SafeScaleManager({
width: 1320,
height: 780,
safeWidth: 1024,
safeHeight: 660,
callback: function (resizeData){
console.log('This is called on window resize');
console.log('width: ', resizeData.width); // 0
console.log('height: ', resizeData.height); // 0
console.log('scale ratio: ', resizeData.scale); // 0
}
});