Post notification with Unicode Character 'ZERO WIDTH SPACE' (U+200B) to stop VoiceOver speech

This commit is contained in:
Michael Jordan 2014-12-19 19:18:43 -05:00
parent 728fad52fd
commit 226a7745fb

View File

@ -288,7 +288,7 @@ MobileAccessibility.prototype.stop = function() {
if (this.isChromeVoxActive()) {
cvox.ChromeVox.tts.stop();
} else {
exec(null, null, "MobileAccessibility", "postNotification", [MobileAccessibilityNotifications.ANNOUNCEMENT]);
exec(null, null, "MobileAccessibility", "postNotification", [MobileAccessibilityNotifications.ANNOUNCEMENT, "\u200b"]);
}
}