fix code canceling default backspace action

pull/261/head
nightwing 2016-02-26 22:18:57 +04:00
rodzic 9571b2b8c4
commit af4157b467
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -21706,7 +21706,7 @@ apf.window = function(){
var amlNode = apf.window.activeElement, //apf.findHost(e.srcElement || e.target),
htmlNode = (e.explicitOriginalTarget || e.srcElement || e.target),
isTextInput = (ta[htmlNode.tagName]
|| htmlNode.contentEditable || htmlNode.contentEditable == "true") //@todo apf3.0 need to loop here?
|| htmlNode.contentEditable == "true" || htmlNode.contentEditable == "plaintext-only")
&& !htmlNode.disabled
|| amlNode && amlNode.$isTextInput
&& amlNode.$isTextInput(e) && amlNode.disabled < 1;