From: Jason Woofenden Date: Thu, 16 Jun 2016 19:14:09 +0000 (-0400) Subject: remove unused method X-Git-Url: https://jasonwoof.com/gitweb/?p=peach-html5-editor.git;a=commitdiff_plain;h=415ca1d104466fe556d814d62a23bd713e423efd;ds=sidebyside remove unused method --- diff --git a/editor.coffee b/editor.coffee index d8e482d..91f5c1c 100644 --- a/editor.coffee +++ b/editor.coffee @@ -1201,28 +1201,6 @@ class PeachHTML5Editor h = parseInt(@idoc.body.scrollHeight, 10) @iframe.style.height = "#{h}px" @wrap2.scrollTop = s - # does this node have whitespace that would be collapsed by white-space: normal? - # note: this checks direct text children, and does _not_ recurse into child tags - # tag is a node with type:"tag" - # FIXME use new textrun api - has_collapsable_space: (tag) -> - for n in tag.children - if n.type is 'text' - for i in [0...n.text.length] - code = n.text.charCodeAt i - if code isnt 32 and is_space_code code - # tab, return - return true - # check for double spaces that don't surround insert location - continue if i is 0 - if n.text.substr(i - 1, 2) is ' ' - return true - if n.text.length > 0 - if is_space_code n.text.charCodeAt 0 - return true - if is_space_code n.text.charCodeAt n.text.length - 1 - return true - return false # true if n is text node with only one caracter, and the only child of a tag is_only_char_in_tag: (n, i) -> return false unless n.type is 'text'