You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setWidthAttrs.js 453B

1234567891011121314151617
  1. const widthElements = [ 'table', 'td', 'img' ];
  2. module.exports = (el, $) => {
  3. let i;
  4. let pxWidth;
  5. if (widthElements.indexOf(el.name) > -1) {
  6. for (i in el.styleProps) {
  7. if (el.styleProps[i].prop === 'width' && el.styleProps[i].value.match(/px/)) {
  8. pxWidth = el.styleProps[i].value.replace('px', '');
  9. $(el).attr('width', pxWidth);
  10. return;
  11. }
  12. }
  13. }
  14. };