code
stringlengths
1
2.08M
language
stringclasses
1 value
CodeMirror.defineMode("jinja2", function(config, parserConf) { var keywords = ["block", "endblock", "for", "endfor", "in", "true", "false", "loop", "none", "self", "super", "if", "as", "not", "and", "else", "import", "with", "without", "context"]; keywords = new RegE...
JavaScript
CodeMirror.defineMode("yaml", function() { var cons = ['true', 'false', 'on', 'off', 'yes', 'no']; var keywordRegex = new RegExp("\\b(("+cons.join(")|(")+"))$", 'i'); return { token: function(stream, state) { var ch = stream.peek(); var esc = state.escaped; state.escaped = false; /* comme...
JavaScript
CodeMirror.defineMode('smalltalk', function(config, modeConfig) { var specialChars = /[+\-/\\*~<>=@%|&?!.:;^]/; var keywords = /true|false|nil|self|super|thisContext/; var Context = function(tokenizer, parent) { this.next = tokenizer; this.parent = parent; }; var Token = function(name, context, eo...
JavaScript
// Initiate ModeTest and set defaults var MT = ModeTest; MT.modeName = 'markdown'; MT.modeOptions = {}; MT.testMode( 'plainText', 'foo', [ null, 'foo' ] ); // Code blocks using 4 spaces (regardless of CodeMirror.tabSize value) MT.testMode( 'codeBlocksUsing4Spaces', ' foo', [ ...
JavaScript
CodeMirror.defineMode("markdown", function(cmCfg, modeCfg) { var htmlFound = CodeMirror.mimeModes.hasOwnProperty("text/html"); var htmlMode = CodeMirror.getMode(cmCfg, htmlFound ? "text/html" : "text/plain"); var codeDepth = 0; var prevLineHasContent = false , thisLineHasContent = false; var...
JavaScript
CodeMirror.defineMode("gfm", function(config, parserConfig) { var mdMode = CodeMirror.getMode(config, "markdown"); var aliases = { html: "htmlmixed", js: "javascript", json: "application/json", c: "text/x-csrc", "c++": "text/x-c++src", java: "text/x-java", csharp: "text/x-csharp...
JavaScript
// block; "begin", "case", "fun", "if", "receive", "try": closed by "end" // block internal; "after", "catch", "of" // guard; "when", closed by "->" // "->" opens a clause, closed by ";" or "." // "<<" opens a binary, closed by ">>" // "," appears in arglists, lists, tuples and terminates lines of code // "." res...
JavaScript
var MT = ModeTest; MT.modeName = 'stex'; MT.modeOptions = {}; MT.testMode( 'word', 'foo', [ null, 'foo' ] ); MT.testMode( 'twoWords', 'foo bar', [ null, 'foo bar' ] ); MT.testMode( 'beginEndDocument', '\\begin{document}\n\\end{document}', [ 'tag', '\\begin', ...
JavaScript
/* * Author: Constantin Jucovschi (c.jucovschi@jacobs-university.de) * Licence: MIT */ CodeMirror.defineMode("stex", function(cmCfg, modeCfg) { function pushCommand(state, command) { state.cmdState.push(command); } function peekCommand(state) { if (state.cmdState.length>0) ret...
JavaScript
CodeMirror.defineMode("properties", function() { return { token: function(stream, state) { var sol = stream.sol() || state.afterSection; var eol = stream.eol(); state.afterSection = false; if (sol) { if (state.nextMultiline) { state.inMultiline = true; ...
JavaScript
CodeMirror.defineMode("sparql", function(config) { var indentUnit = config.indentUnit; var curPunc; function wordRegexp(words) { return new RegExp("^(?:" + words.join("|") + ")$", "i"); } var ops = wordRegexp(["str", "lang", "langmatches", "datatype", "bound", "sameterm", "isiri", "isuri", ...
JavaScript
CodeMirror.defineMode("haxe", function(config, parserConfig) { var indentUnit = config.indentUnit; // Tokenizer var keywords = function(){ function kw(type) {return {type: type, style: "keyword"};} var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c"); var operator = kw("operat...
JavaScript
CodeMirror.defineMode("htmlembedded", function(config, parserConfig) { //config settings var scriptStartRegex = parserConfig.scriptStartRegex || /^<%/i, scriptEndRegex = parserConfig.scriptEndRegex || /^%>/i; //inner modes var scriptingMode, htmlMixedMode; //tokenizer when in html mode...
JavaScript
/*** |''Name''|tiddlywiki.js| |''Description''|Enables TiddlyWikiy syntax highlighting using CodeMirror| |''Author''|PMario| |''Version''|0.1.7| |''Status''|''stable''| |''Source''|[[GitHub|https://github.com/pmario/CodeMirror2/blob/tw-syntax/mode/tiddlywiki]]| |''Documentation''|http://codemirror.tiddlyspace.co...
JavaScript
CodeMirror.defineMode("haskell", function(cmCfg, modeCfg) { function switchState(source, setState, f) { setState(f); return f(source, setState); } // These should all be Unicode extended, as per the Haskell 2010 report var smallRE = /[a-z_]/; var largeRE = /[A-Z]/; var digitRE = /[0-9]...
JavaScript
CodeMirror.defineMode("javascript", function(config, parserConfig) { var indentUnit = config.indentUnit; var jsonMode = parserConfig.json; // Tokenizer var keywords = function(){ function kw(type) {return {type: type, style: "keyword"};} var A = kw("keyword a"), B = kw("keyword b"), C = kw("ke...
JavaScript
CodeMirror.defineMode("htmlmixed", function(config) { var htmlMode = CodeMirror.getMode(config, {name: "xml", htmlMode: true}); var jsMode = CodeMirror.getMode(config, "javascript"); var cssMode = CodeMirror.getMode(config, "css"); function html(stream, state) { var style = htmlMode.token(stream, sta...
JavaScript
/* Copyright (C) 2011 by MarkLogic Corporation Author: Mike Brevoort <mike@brevoort.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the...
JavaScript
$(document).ready(function(){ module("testProcessingInstructions"); test("testProcessingInstructions", function() { expect(1); var input = 'data(<?target content?>) instance of xs:string'; var expected = '<span class="cm-variable cm-def">data</span>(<span class="cm-comment cm-meta">&lt;?target co...
JavaScript
$(document).ready(function(){ module("testQuoteEscape"); test("testQuoteEscapeDouble", function() { expect(1); var input = 'let $rootfolder := "c:\\builds\\winnt\\HEAD\\qa\\scripts\\"\ let $keysfolder := concat($rootfolder, "keys\\")\ return\ $keysfolder'; var expected = '<span cla...
JavaScript
$(document).ready(function(){ module("test namespaces"); // -------------------------------------------------------------------------------- // this test is based on this: //http://mbrevoort.github.com/CodeMirror2/#!exprSeqTypes/PrologExpr/VariableProlog/ExternalVariablesWith/K2-ExternalVariablesWith-10.xq // ...
JavaScript
$(document).ready(function(){ module("testMultiAttr"); test("test1", function() { expect(1); var expected = '<span class="cm-tag">&lt;p </span><span class="cm-attribute">a1</span>=<span class="cm-string">"foo"</span> <span class="cm-attribute">a2</span>=<span class="cm-string">"bar"</span><s...
JavaScript
$(document).ready(function(){ module("testEmptySequenceKeyword"); test("testEmptySequenceKeyword", function() { expect(1); var input = '"foo" instance of empty-sequence()'; var expected = '<span class="cm-string">"foo"</span> <span class="cm-keyword">instance</span> <span class="cm-keyword">of</s...
JavaScript
CodeMirror.defineMode("ruby", function(config, parserConfig) { function wordObj(words) { var o = {}; for (var i = 0, e = words.length; i < e; ++i) o[words[i]] = true; return o; } var keywords = wordObj([ "alias", "and", "BEGIN", "begin", "break", "case", "class", "def", "defined?", "do", "e...
JavaScript
CodeMirror.defineMode("clike", function(config, parserConfig) { var indentUnit = config.indentUnit, keywords = parserConfig.keywords || {}, builtin = parserConfig.builtin || {}, blockKeywords = parserConfig.blockKeywords || {}, atoms = parserConfig.atoms || {}, hooks = parserConfig...
JavaScript
CodeMirror.defineMode("pascal", function(config) { function words(str) { var obj = {}, words = str.split(" "); for (var i = 0; i < words.length; ++i) obj[words[i]] = true; return obj; } var keywords = words("and array begin case const div do downto else end file for forward integer " + ...
JavaScript
/** * Author: Koh Zi Han, based on implementation by Koh Zi Chun */ CodeMirror.defineMode("scheme", function (config, mode) { var BUILTIN = "builtin", COMMENT = "comment", STRING = "string", ATOM = "atom", NUMBER = "number", BRACKET = "bracket", KEYWORD="keyword"; var INDENT_WORD_SKIP = 2, KEYWO...
JavaScript
/* * MySQL Mode for CodeMirror 2 by MySQL-Tools * @author James Thorne (partydroid) * @link http://github.com/partydroid/MySQL-Tools * @link http://mysqltools.org * @version 02/Jan/2012 */ CodeMirror.defineMode("mysql", function(config) { var indentUnit = config.indentUnit; var curPunc; functi...
JavaScript
CodeMirror.defineMode("vb", function(conf, parserConf) { var ERRORCLASS = 'error'; function wordRegexp(words) { return new RegExp("^((" + words.join(")|(") + "))\\b", "i"); } var singleOperators = new RegExp("^[\\+\\-\\*/%&\\\\|\\^~<>!]"); var singleDelimiters = new RegExp(...
JavaScript
CodeMirror.defineMode("xml", function(config, parserConfig) { var indentUnit = config.indentUnit; var Kludges = parserConfig.htmlMode ? { autoSelfClosers: {'area': true, 'base': true, 'br': true, 'col': true, 'command': true, 'embed': true, 'frame': true, 'hr': true, 'img': true, 'inpu...
JavaScript
 Umbraco.Sys.registerNamespace("Umbraco.Controls"); (function ($, Base, window, document, undefined) { var itemMappingOptions = { 'create': function (o) { var item = ko.mapping.fromJS(o.data); item.selected = ko.observable(false); item.toggleSelected = functio...
JavaScript
/* base2 - copyright 2007-2011, Dean Edwards http://code.google.com/p/base2/ http://www.opensource.org/licenses/mit-license.php Contributors: Doeke Zanstra */ var base2 = { name: "base2", version: "1.0.2", exports: "Base,Package,Abstract,Module,Enumerable,Map,Collection,RegGrp," ...
JavaScript
// MSDropDown - uncompressed.jquery.dd // author: Marghoob Suleman - Search me on google // Date: 12th Aug, 2009 // Version: 2.38.4 // Revision: 38 // web: www.giftlelo.com | www.marghoobsuleman.com /* // msDropDown is free jQuery Plugin: you can redistribute it and/or modify // it under the terms of the eithe...
JavaScript
// // This File contains all standard javascript helpers for normal umbraco pages, // for resizing, event handling etc. // All UI controls should expect this js file to be present. // included in umbracoPage.master // function addEvent(obj, evType, fn) { if (obj.addEventListener) { ...
JavaScript
// // =============================================================================== // WResize is the jQuery plugin for fixing the IE window resize bug // ............................................................................... // Copyright 2007 / Andrea Ercolino // -------------------------------...
JavaScript
(function ($) { $.fn.alphanumeric = function (p) { p = $.extend({ ichars: "!@#$%^&*()+=[]\\\';,/{}|\":<>?~`.- ", nchars: "", allow: "" }, p); return this.each ( function () { if (p.nocaps) p.nchars += "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; if (p.allcaps) p.nchars += "abcdefghijk...
JavaScript
function actionNewRelationType() { UmbClientMgr.openModalWindow('developer/RelationTypes/NewRelationType.aspx', 'Create New RelationType', true, 400, 300, 0, 0); }
JavaScript
function actionDeleteRelationType(relationTypeId, relationTypeName) { if (confirm('Are you sure you want to delete "' + relationTypeName + '"?')) { $.ajax({ type: "POST", url: "/umbraco/developer/RelationTypes/RelationTypesWebService.asmx/DeleteRelationType", data...
JavaScript
/*! * jQuery Templates Plugin 1.0.0pre * http://github.com/jquery/jquery-tmpl * Requires jQuery 1.4.2 * * Copyright Software Freedom Conservancy, Inc. * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license */ (function( jQuery, undefined ){ var oldManip = jQuery.fn.domMa...
JavaScript
var Our = Our || {}; Our.Umbraco = Our.Umbraco || {}; Our.Umbraco.uGoLive = Our.Umbraco.uGoLive || {}; (function ($) { // Class representing a check group Our.Umbraco.uGoLive.CheckGroup = function(name, checks, opts) { var me = { name: name, checks: ko.observableArra...
JavaScript
/// <reference path="/umbraco_client/Application/NamespaceManager.js" /> Umbraco.Sys.registerNamespace("Umbraco.Controls"); (function($) { Umbraco.Controls.UploadMediaImage = function(txtBoxTitleID, btnID, uploadFileID) { return { _txtBoxTitleID: txtBoxTitleID, _btnID: btn...
JavaScript
/// <reference path="/umbraco_client/Application/NamespaceManager.js" /> /// <reference path="/umbraco_client/ui/jquery.js" /> Umbraco.Sys.registerNamespace("Umbraco.Controls"); (function($) { //jQuery plugin for Umbraco image viewer control $.fn.UmbracoImageViewer = function(opts) { //all op...
JavaScript
(function ($) { $.fn.UmbQuickSearch = function (url) { var getSearchApp = function () { if (UmbClientMgr.mainWindow().location.hash != "") { switch (UmbClientMgr.mainWindow().location.hash.toLowerCase().substring(1).toLowerCase()) { case "media": ...
JavaScript
var requestRunning = false; var xmlHttp = null; var xmlHttpDebug = false; // Inspired by great work of Webfx in xloadtree function umbracoStartXmlRequest(scriptUrl, postData, eventFunction) { // random hack for ie7 day = new Date(); z = day.getTime(); y = (z - (parseInt(z/1000,10) * 1000))/10; scriptU...
JavaScript
function dualSelectBoxShift(id) { var posVal = document.getElementById(id + "_posVals"); var selVal = document.getElementById(id + "_selVals"); // First check the possible items for (var i=0;i<posVal.options.length;i++) { if (posVal.options[i].selected) { var selNew = document.createElement(...
JavaScript
var ctrlDown = false; var shiftDown = false; var keycode = 0 var currentRichTextDocument = null; var currentRichTextObject = null; function umbracoCheckKeysUp(e) { ctrlDown = e.ctrlKey; shiftDown = e.shiftKey; } function umbracoActivateKeys(ctrl, shift, key) { ctrlDown = ctrl; shiftDown = shift; ...
JavaScript
function umbracoCheckUpgrade(result) { if (result) { if (result.UpgradeType.toLowerCase() != 'none') { if (UmbSpeechBubble == null) { InitUmbracoSpeechBubble(); } var icon = 'info'; if (result.UpgradeType.toLowerCase() == 'critical') { ...
JavaScript
//<script> ////////////////// // Helper Stuff // ////////////////// function HTMLEncode(t) { return t.toString().replace(/&/g,"&amp;").replace(/"/g,"&quot;").replace(/</g,"&lt;").replace(/>/g,"&gt;"); } // used to find the Automation server name function getDomDocumentPrefix() { if (getDomDocumentPref...
JavaScript
//used by live editing to ensure the speech bubble is initialized after the main js file has been lazy loaded. //alert("Speech Bubble init: " + InitUmbracoSpeechBubble); InitUmbracoSpeechBubble();
JavaScript
// Umbraco SpeechBubble Javascript // Dependency Loader Constructor function UmbracoSpeechBubble(id) { this.id = id; this.ie = document.all ? true : false; this.GenerateSpeechBubble(); } UmbracoSpeechBubble.prototype.GenerateSpeechBubble = function() { var sbHtml = document.getElementBy...
JavaScript
// Umbraco SpeechBubble Javascript // Dependency Loader Constructor function UmbracoSpeechBubble(id) { this.id = id; this.ie = document.all ? true : false; this.GenerateSpeechBubble(); } UmbracoSpeechBubble.prototype.GenerateSpeechBubble = function() { theBody = document.getElementsByTa...
JavaScript
/// <reference path="/umbraco_client/Application/NamespaceManager.js" /> /// <reference path="/umbraco_client/ui/jquery.js" /> /// <reference path="PermissionsHandler.asmx" /> /// <reference name="MicrosoftAjax.js"/> Umbraco.Sys.registerNamespace("Umbraco.Controls"); (function($) { $.fn.PermissionsEditor...
JavaScript
/********************* Live Editing MacroModule functions *********************/ function MacroOnDrop( sender, e ) { var container = e.get_container(); var item = e.get_droppedItem(); var position = e.get_position(); //alert( String.format( "Container: {0}, Item: {1}, Position: {2}", container.id, item.i...
JavaScript
// Umbraco Live Editing - ItemEditing: Item Editing var ItemEditing = null; Type.registerNamespace("umbraco.presentation.LiveEditing"); /************************ ItemEditing class ************************/ // Creates a new instance of the ItemEditing class. umbraco.presentation.LiveEditing.ItemEditing = fun...
JavaScript
//this is simply used for live editing in order to invoke a method from a previously lazy loaded script; //alert("ItemEditingInvoke: " + initializeGlobalItemEditing); initializeGlobalItemEditing();
JavaScript
/********************* Live Editing CreateModule functions *********************/ function CreateModuleOk() { UmbracoCommunicator.SendClientMessage('createcontent', ''); }
JavaScript
/********************* Live Editing UnpublishModule functions *********************/ function UnpublishModuleOk() { UmbracoCommunicator.SendClientMessage('unpublishcontent', ''); }
JavaScript
/********************* Live Editing DeleteModule functions *********************/ function DeleteModuleOk() { UmbracoCommunicator.SendClientMessage('deletecontent', ''); }
JavaScript
ShowSkinModule();
JavaScript
jQuery(".skinningslider").each(function () { var vals = jQuery(this).attr("rel").split(","); var minimum = vals[0]; var maximum = vals[1]; var initial = vals[2]; var ratio = vals[3] var target = vals[4]; jQuery(this).slider({ change: function (event, ui) { if (ratio !=...
JavaScript
var activecolorpicker; jQuery('input.skinningcolorpicker').ColorPicker({ onSubmit: function (hsb, hex, rgb, el) { jQuery(el).val('#' + hex); jQuery(el).ColorPickerHide(); jQuery(el).trigger('change'); }, onBeforeShow: function () { activecolorpicker = this; ...
JavaScript
jQuery('.selectskin').click(function () { jQuery('#skinupdateinprogress').show(); jQuery('#skins').hide(); jQuery('#localSkinsContainer').hide(); });
JavaScript
var umbModuleToInsertAlias; function umbMakeModulesSortable() { if (jQuery('.umbModuleContainer').length > 0) { jQuery('.umbModuleContainer').sortable({ connectWith: '.umbModuleContainer', items: '.umbModule', stop: function (event, ui) { U...
JavaScript
// Umbraco Live Editing: Communicator /********************* Communicator Constructor *********************/ function UmbracoCommunicator() { } /********************* Communicator Methods *********************/ // Sends a message to the client using the communicator. UmbracoCommunicator.pr...
JavaScript
Type.registerNamespace("umbraco.presentation.LiveEditing.Controls"); /************************************ Toolbar class ***********************************/ // Constructor. umbraco.presentation.LiveEditing.Controls.LiveEditingToolbar = function() { umbraco.presentation.LiveEditing.Controls.LiveEditingTool...
JavaScript
// ajax.js // Common Javascript methods and global objects // Ajax framework for Internet Explorer (6.0, ...) and Firefox (1.0, ...) // Copyright by Matthias Hertel, http://www.mathertel.de // This work is licensed under a Creative Commons Attribution 2.0 Germany License. // See http://creativecommons.org/licenses...
JavaScript
// Copyright (C) 2006 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed t...
JavaScript
document.addEventListener('DOMContentLoaded', hideSlidesDomLoaded, false); function hideSlidesDomLoaded() { if (!slidesConfig.settings.includeWebRTC) { var webrtcSlides = document.querySelectorAll('section.slides > article.webrtc-slide'); for (var i = 0, slide; slide = webrtcSlides[i]; ++i) { slide.cla...
JavaScript
window.slidesConfig = window.slidesConfig || { // Slide settings settings : { useBuilds: true, useGDDBranding: true, includeWebRTC: true //hashtag: '#html5' }, info: { // Personal info name: 'Eric Bidelman', pic: 'https://lh5.googleusercontent.com/-kgFnix5akCc/AAAAAAAAAAI/AAAAAAAAB_g...
JavaScript
/* Original Slide Template from http://code.google.com/p/io-2011-slides/ */ // Take care of browser prefixes. window.URL = window.URL ? window.URL : window.webkitURL ? window.webkitURL : null; window.BlobBuilder = window.WebKitBlobBuilder || window.MozBlobBuilder || window.BlobBuilder; window.requestFil...
JavaScript
/** * @license * * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable l...
JavaScript
/** * Creates a new level control. * @constructor * @param {IoMap} iomap the IO map controller. * @param {Array.<string>} levels the levels to create switchers for. */ function LevelControl(iomap, levels) { var that = this; this.iomap_ = iomap; this.el_ = this.initDom_(levels); google.maps.event.addList...
JavaScript
/** * Creates a new Floor. * @constructor * @param {google.maps.Map=} opt_map */ function Floor(opt_map) { /** * @type Array.<google.maps.MVCObject> */ this.overlays_ = []; /** * @type boolean */ this.shown_ = true; if (opt_map) { this.setMap(opt_map); } } /** * @param {google.maps.M...
JavaScript
// Copyright 2011 Google /** * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in wri...
JavaScript
//<![CDATA[ var relatedTitles = new Array(); var relatedTitlesNum = 0; var relatedUrls = new Array(); function related_results_labels(json) { for (var i = 0; i < json.feed.entry.length; i++) { var entry = json.feed.entry[i]; relatedTitles[relatedTitlesNum] = entry.title.$t; for (var k = 0; k < entry.link.length...
JavaScript
if(!window.console){window.console={} }if(typeof window.console.log!=="function"){window.console.log=function(){} }if(typeof window.console.warn!=="function"){window.console.warn=function(){} }(function(){var R={"bootstrapInit":+new Date()},p=document,l=(/^https?:\/\/.*?linkedin.*?\/in\.js.*?$/),b=(/async=true/),D=(...
JavaScript
jQuery(function() { jQuery(panelSelector).hide() .addClass('openclosePanel') .before('<a class="openpanel" href="#">' + openPanelText + '<em></em></a>') .after('<div class="paneline"></div>'); jQuery('a.openpanel').toggle(function() { jQuery(this).addClass('acti...
JavaScript
// Copyright 2011 Google Inc. All Rights Reserved. /** * @fileoverview This script posts to the data servlet with a request for data * to display until either the servlet responds with data or responds that it * failed. The servlet responds to each post with a message, which the script * displays to the user and d...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
var FCKDragTableHandler = { "_DragState" : 0, "_LeftCell" : null, "_RightCell" : null, "_MouseMoveMode" : 0, // 0 - find candidate cells for resizing, 1 - drag to resize "_ResizeBar" : null, "_OriginalX" : null, "_MinimumX" : null, "_MaximumX" : null, "_LastX" : null, "_TableMap" : null, "_doc" ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript