mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
61 lines
1.9 KiB
HTML
61 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="../modules/jquery/jquery.js"></script>
|
|
<script>
|
|
$( function() {
|
|
|
|
var $editor = $('#ce-editor');
|
|
var editorInterval = null;
|
|
var sel = {
|
|
from: 0,
|
|
to: 0
|
|
};
|
|
var prevInput = '';
|
|
|
|
$editor.blur(function() {
|
|
if ( editorInterval !== null ) {
|
|
clearInterval( editorInterval );
|
|
}
|
|
});
|
|
|
|
$editor.focus(function() {
|
|
prevInput = $editor.html();
|
|
editorInterval = setInterval( readInput, 100 );
|
|
sel.from = sel.to = window.getSelection().getRangeAt(0).startOffset;
|
|
});
|
|
|
|
var readInput = function() {
|
|
var text = $editor.html();
|
|
if (text === prevInput) {
|
|
return false;
|
|
}
|
|
var same = 0,
|
|
l = Math.min(prevInput.length, text.length);
|
|
while ( same < l && prevInput[same] === text[same] ) {
|
|
++same;
|
|
}
|
|
|
|
sel.from = sel.to = window.getSelection().getRangeAt(0).startOffset - 1;
|
|
|
|
|
|
if (same < prevInput.length) {
|
|
console.log(prevInput.length - same);
|
|
}
|
|
|
|
|
|
var newText = text.slice(same);
|
|
|
|
console.log(sel);
|
|
console.log(newText);
|
|
|
|
prevInput = text;
|
|
}
|
|
|
|
} );
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div style="width: 500px; height: 200px; border: solid 1px;" contenteditable="true" id="ce-editor"></div>
|
|
</body>
|
|
</html> |