소스 검색

CTRLPainter watching window resize. Using Debounce.

dev-tmpl
Bryan Miller 6 년 전
부모
커밋
7fe55cd661
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. +7
    -1
      app/js/ui/CTRLPainter.js

+ 7
- 1
app/js/ui/CTRLPainter.js 파일 보기

import Utils from "/app/js/Utils.js";
import GlobalEvents from "/app/js/EventCaller.js"; import GlobalEvents from "/app/js/EventCaller.js";


const EL_CANVAS_ID = "painter"; const EL_CANVAS_ID = "painter";
throw new Error("Failed to obtain canvas context."); throw new Error("Failed to obtain canvas context.");


//var imgdata = this.__context.getImageData(); //var imgdata = this.__context.getImageData();
console.log(this.__canvas.width + ", " + this.__canvas.height);
var handle_resize = Utils.debounce((function(){
console.log("DEBOUNCED");
console.log(this.__canvas.width + ", " + this.__canvas.height);
console.log(this.__canvas.clientWidth + ", " + this.__canvas.height);
}).bind(this), 250);
window.addEventListener("resize", handle_resize);
} }


get scale(){ get scale(){

Loading…
취소
저장