%PDF- %PDF-
Direktori : /home/lightco1/www/feiss.com.au/media/editors/none/ |
Current File : /home/lightco1/www/feiss.com.au/media/editors/none/none.js |
/** * @copyright Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ /** * Editor None */ function insertAtCursor(myField, myValue) { if (document.selection) { // IE support myField.focus(); sel = document.selection.createRange(); sel.text = myValue; } else if (myField.selectionStart || myField.selectionStart == '0') { // MOZILLA/NETSCAPE support var startPos = myField.selectionStart; var endPos = myField.selectionEnd; myField.value = myField.value.substring(0, startPos) + myValue + myField.value.substring(endPos, myField.value.length); } else { myField.value += myValue; } } function jInsertEditorText(text, editor) { insertAtCursor(document.getElementById(editor), text); }