Changeset 2026152
- Timestamp:
- 02/06/2019 07:55:02 PM (7 years ago)
- Location:
- ace-html-block/trunk
- Files:
-
- 2 edited
-
aceblock.build.js (modified) (1 diff)
-
aceblock.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ace-html-block/trunk/aceblock.build.js
r2025630 r2026152 23144 23144 23145 23145 save: function save(props) { 23146 return el(RawHTML, null, props.attributes.content); 23146 return wp.element.createElement( 23147 RawHTML, 23148 null, 23149 props.attributes.content 23150 ); 23147 23151 } 23148 23152 }); -
ace-html-block/trunk/aceblock.js
r2025630 r2026152 98 98 width="100%" 99 99 wrapEnabled={true} 100 minLines ={3}101 maxLines ={Infinity}100 minLines={3} 101 maxLines={Infinity} 102 102 /> ); 103 103 }, 104 104 105 105 save: function( props ) { 106 return el(RawHTML, null, props.attributes.content);106 return <RawHTML>{props.attributes.content}</RawHTML>; 107 107 } 108 108 }
Note: See TracChangeset
for help on using the changeset viewer.