
if (!window.trice_libs) {trice_libs = {};}

trice_libs["theme"] = {
  run : function() {
    theme.stretchCanvas();
  }
}

var theme = {

  stretchCanvas : function() {
    var el = dom.elByPath('.canvas');
    if (document.documentElement.clientHeight) {// crappy ie check
      if (el.offsetHeight < 350) {
        el.style.height = 350 + 'px';
      }
    }
  }
}
