returns.tmpl 272 B

123456789
  1. <?js
  2. var data = obj || {};
  3. if (data.description) {
  4. var desc = description;
  5. // Remove wrapping <p> tags if present to allow inline display
  6. if (desc.trim().startsWith('<p>') && desc.trim().endsWith('</p>')) {
  7. desc = desc.trim().slice(3, -4);
  8. }
  9. ?><?js= desc ?><?js } ?>
粤ICP备19079148号