octavian-filipciuc
10/27/2015 - 8:54 AM

Fixing pop up translate blurry text.

Fixing pop up translate blurry text.

/**
 * -------------------
 * Blurry text fixing
 * -------------------
 */
function fixBlur(divID) {
  var elem = document.getElementById(divID);
  elem.style.height = (Math.ceil(elem.offsetHeight / 2) * 2) + "px";
  elem.style.width = (Math.ceil(elem.offsetWidth / 2) * 2) + "px";
}