demo.js 934 Bytes
Newer Older
wanli's avatar
wanli committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
if (!('boxShadow' in document.body.style)) {
  document.body.setAttribute('class', 'noBoxShadow');
}

document.body.addEventListener('click', function (e) {
  var target = e.target;
  if (target.tagName === 'INPUT' && target.getAttribute('class').indexOf('liga') === -1) {
    target.select();
  }
});

(function () {
  var fontSize = document.getElementById('fontSize');
  var testDrive = document.getElementById('testDrive');
  var testText = document.getElementById('testText');
  function updateTest() {
    testDrive.innerHTML = testText.value || String.fromCharCode(160);
    if (window.icomoonLiga) {
      window.icomoonLiga(testDrive);
    }
  }
  function updateSize() {
    testDrive.style.fontSize = fontSize.value + 'px';
  }
  fontSize.addEventListener('change', updateSize, false);
  testText.addEventListener('input', updateTest, false);
  testText.addEventListener('change', updateTest, false);
  updateSize();
})();