mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 22:35:41 +00:00
Recogonize if input came from spellcheck or from keyboard (Chrome)
This commit is contained in:
parent
25c2372a50
commit
97aebbe226
Notes:
Gabriel Wicke
2012-02-27 16:40:01 +00:00
|
@ -32,9 +32,9 @@ app = function () {
|
||||||
this.$editor.html("<b>Lorem Ipsum is simply dummy text</b> of the printing and typesetting industry. <b>Lorem Ipsum has been the <i>industry's</i> standard</b> dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it <u>to <b>make <i>a type</i> specimen</b> book.</u>");
|
this.$editor.html("<b>Lorem Ipsum is simply dummy text</b> of the printing and typesetting industry. <b>Lorem Ipsum has been the <i>industry's</i> standard</b> dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it <u>to <b>make <i>a type</i> specimen</b> book.</u>");
|
||||||
this.$editor.addClass('leafNode');
|
this.$editor.addClass('leafNode');
|
||||||
|
|
||||||
this.keypress = false;
|
|
||||||
this.keyup = false;
|
|
||||||
this.keydown = false;
|
this.keydown = false;
|
||||||
|
this.keyup = false;
|
||||||
|
this.keypress = false;
|
||||||
this.mousedown = false;
|
this.mousedown = false;
|
||||||
this.inime = false;
|
this.inime = false;
|
||||||
this.prevText = app.getDOMText(this.$editor[0]);
|
this.prevText = app.getDOMText(this.$editor[0]);
|
||||||
|
@ -44,7 +44,23 @@ app = function () {
|
||||||
}, 100);
|
}, 100);
|
||||||
};
|
};
|
||||||
|
|
||||||
app.prototype.onKeyPress = function() {
|
app.prototype.onKeyDown = function( e ) {
|
||||||
|
console.log("onKeyDown");
|
||||||
|
this.keydown = true;
|
||||||
|
if ( e.which === 229 ) {
|
||||||
|
this.inime = true;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
app.prototype.onKeyUp = function( e ) {
|
||||||
|
console.log("onKeyUp");
|
||||||
|
this.keyup = true;
|
||||||
|
if ( this.inime ) {
|
||||||
|
this.inime = false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
app.prototype.onKeyPress = function( e ) {
|
||||||
//console.log("onKeyPress");
|
//console.log("onKeyPress");
|
||||||
this.keypress = true;
|
this.keypress = true;
|
||||||
if ( e.which === 229 ) {
|
if ( e.which === 229 ) {
|
||||||
|
@ -52,23 +68,7 @@ app.prototype.onKeyPress = function() {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
app.prototype.onKeyUp = function() {
|
app.prototype.onMouseDown = function( e ) {
|
||||||
//console.log("onKeyUp");
|
|
||||||
this.keyup = true;
|
|
||||||
if ( this.inime ) {
|
|
||||||
this.inime = false;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
app.prototype.onKeyDown = function( e ) {
|
|
||||||
//console.log("onKeyDown");
|
|
||||||
this.keydown = true;
|
|
||||||
if ( e.which === 229 ) {
|
|
||||||
this.inime = true;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
app.prototype.onMouseDown = function() {
|
|
||||||
this.mousedown = true;
|
this.mousedown = true;
|
||||||
|
|
||||||
if ( this.inime ) {
|
if ( this.inime ) {
|
||||||
|
@ -81,6 +81,24 @@ app.prototype.loopFunc = function() {
|
||||||
|
|
||||||
if(text != this.prevText) {
|
if(text != this.prevText) {
|
||||||
|
|
||||||
|
console.log("text is different");
|
||||||
|
|
||||||
|
if(this.keydown) {
|
||||||
|
console.log("keyboard");
|
||||||
|
} else {
|
||||||
|
console.log("not keyboard");
|
||||||
|
}
|
||||||
|
|
||||||
|
this.prevText = text;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.keypress = false;
|
||||||
|
this.keyup = false;
|
||||||
|
this.keydown = false;
|
||||||
|
this.mousedown = false;
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
var selection = rangy.getSelection();
|
var selection = rangy.getSelection();
|
||||||
|
|
||||||
|
|
||||||
|
@ -116,6 +134,7 @@ app.prototype.loopFunc = function() {
|
||||||
this.keyup = false;
|
this.keyup = false;
|
||||||
this.keydown = false;
|
this.keydown = false;
|
||||||
this.mousedown = false;
|
this.mousedown = false;
|
||||||
|
*/
|
||||||
};
|
};
|
||||||
|
|
||||||
app.getDOMText = function( elem ) {
|
app.getDOMText = function( elem ) {
|
||||||
|
|
Loading…
Reference in a new issue