values.body.replace(/data:image\/.+?("|quot)/g,'"').length>maxKb*1024?'Exceeds maximum length ('+maxKb+'KB)':
null
})
})
}
onChange(value,rte_serialize){
onChange(value,rte_serialize){
// Serilize can be expensive.. Only use it for a small body or when submitting the post...
// Serilize can be expensive.. Only use it for a small body or when submitting the post...
letrte_value
letrte_value
if(value===''){
if(value===''){
rte_value=EMPTY_MEDIUM_HTML
rte_value=EMPTY_MEDIUM_HTML
this.props.fields.body.onChange('')
this.state.body.props.onChange('')
}elseif(value.length<1000){
}elseif(value.length<1000){
// Allow valid tags which have no body but can show something. Sanitize will strip out all other html but leave text which indicates the user is looking at something...
// Allow valid tags which have no body but can show something. Sanitize will strip out all other html but leave text which indicates the user is looking at something...
@@ -301,7 +312,7 @@ class MediumEditor extends React.Component {
...
@@ -301,7 +312,7 @@ class MediumEditor extends React.Component {
options={EditorOptions}
options={EditorOptions}
readOnly={loading}/>
readOnly={loading}/>
:
:
<textarea{...cleanReduxInput(body)}disabled={loading}rows={isStory?10:3}placeholder={isStory?'Write your story...':'Reply'}autoComplete="off"ref="postRef"tabIndex={2}/>
<textarea{...body.props}disabled={loading}rows={isStory?10:3}placeholder={isStory?'Write your story...':'Reply'}autoComplete="off"ref="postRef"tabIndex={2}/>
}
}
</div>
</div>
<divclassName={vframe_section_shrink_class}>
<divclassName={vframe_section_shrink_class}>
...
@@ -310,7 +321,7 @@ class MediumEditor extends React.Component {
...
@@ -310,7 +321,7 @@ class MediumEditor extends React.Component {