![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/html/libs/absol-full/dist/js/ |
Upload File : |
/*** module: node_modules/absol-brace/BraceExternal/FBraceEditor.js ***/ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _BCore = _interopRequireDefault(require("../components/BCore")); var _Dom = require("absol/src/HTML5/Dom"); var _goto = require("./ext/goto"); var ace = window.ace || {}; var aceEdit = ace && ace.edit; ace.edit = function () { return newExtendedEditor({ element: arguments[0] }); }; function newExtendedEditor(props) { var element = props.element; if (typeof element === "string") { element = _BCore.default.$(element) || _BCore.default.$('#' + element); } if (!element || !(0, _Dom.isDomNode)(element)) { throw new Error("Could not file element in options!"); } var editor = aceEdit.apply(ace, [element]); Object.defineProperties(editor, Object.getOwnPropertyDescriptors(FBraceEditor.prototype)); FBraceEditor.call(editor, props); dispatchEvent(new Event('resize')); return editor; } function FBraceEditor(props) { //do not new this class if (!this || !this.isFBraceEditor) return newExtendedEditor(props); this.setOptions(Object.assign({ enableBasicAutocompletion: true, enableSnippets: true, enableLiveAutocompletion: false }, props.option)); this.commands.addCommand(_goto.GoToCommand); this.container.addEventListener('keydown', event => { if (event.key === 'Alt') event.preventDefault(); }); } FBraceEditor.prototype.isFBraceEditor = true; FBraceEditor.prototype.$onLineCountChange = function () {// console.log(this); }; FBraceEditor.prototype.getLineCount = function () { var session = this.getSession(); return session.$rowLengthCache.length; }; var _default = FBraceEditor; exports.default = _default;