Вход Регистрация
Файл: library/wysihtml5/src/quirks/redraw.js
Строк: 28
<?php
/**
 * Force rerendering of a given element
 * Needed to fix display misbehaviors of IE
 *
 * @param {Element} element The element object which needs to be rerendered
 * @example
 *    wysihtml5.quirks.redraw(document.body);
 */
(function(wysihtml5) {
  var 
CLASS_NAME "wysihtml5-quirks-redraw";
  
  
wysihtml5.quirks.redraw = function(element) {
    
wysihtml5.dom.addClass(elementCLASS_NAME);
    
wysihtml5.dom.removeClass(elementCLASS_NAME);
    
    
// Following hack is needed for firefox to make sure that image resize handles are properly removed
    
try {
      var 
doc element.ownerDocument;
      
doc.execCommand("italic"falsenull);
      
doc.execCommand("italic"falsenull);
    } catch(
e) {}
  };
})(
wysihtml5);
?>
Онлайн: 1
Реклама