code stringlengths 1 2.08M | language stringclasses 1
value |
|---|---|
function GameManager(size, InputManager, Actuator, StorageManager) {
this.size = size; // Size of the grid
this.inputManager = new InputManager;
this.storageManager = new StorageManager;
this.actuator = new Actuator;
this.checkCoor = [];
this.checkCoor2 = [];
this.startTiles ... | JavaScript |
(function () {
var lastTime = 0;
var vendors = ['webkit', 'moz'];
for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {
window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame'];
window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] ||
wind... | JavaScript |
function HTMLActuator() {
this.tileContainer = document.querySelector(".tile-container");
this.scoreContainer = document.querySelector(".score-container");
this.bestContainer = document.querySelector(".best-container");
this.messageContainer = document.querySelector(".game-message");
this.score = 0;
... | JavaScript |
function Tile(position, value) {
this.x = position.x;
this.y = position.y;
this.value = value || 2;
this.previousPosition = null;
this.mergedFrom = null; // Tracks tiles that merged together
}
Tile.prototype.savePosition = function () {
this.previousPosition ... | JavaScript |
// This is called with the results from from FB.getLoginStatus().
function statusChangeCallback(response) {
console.log('statusChangeCallback');
console.log(response);
// The response object is returned with a status field that lets the
// app know the current login status of the person.
... | JavaScript |
/**
* @license r.js 2.1.14 Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved.
* Available via the MIT or new BSD license.
* see: http://github.com/jrburke/requirejs for details
*/
/*
* This is a bootstrap script to allow running RequireJS in the command line
* in either a Java/Rhino or Nod... | JavaScript |
/*
* jQuery File Upload Plugin Test 8.8.3
* https://github.com/blueimp/jQuery-File-Upload
*
* Copyright 2010, Sebastian Tschan
* https://blueimp.net
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/MIT
*/
/*jslint nomen: true, unparam: true */
/*global $, QUnit, window, document, expec... | JavaScript |
/**
* Created with JetBrains PhpStorm.
* User: Alex
* Date: 9/28/13
* Time: 2:55 PM
* To change this template use File | Settings | File Templates.
*/
var GamePage = function ()
{
var WebPage = null;
var GivenAnswer = {
"Undefined": -1,
"Yes": 0,
"No": 1,
"DontKnow": 2,
"ProbablyY... | JavaScript |
/**
* Created with JetBrains PhpStorm.
* User: Alex
* Date: 9/28/13
* Time: 2:55 PM
* To change this template use File | Settings | File Templates.
*/
var GamePage = function ()
{
var WebPage = null;
var GivenAnswer = {
"Undefined": -1,
"Yes": 0,
"No": 1,
"DontKnow": 2,
"ProbablyY... | JavaScript |
(function ($)
{
$.fn.extend({
preventSubmit: function (callbackOnEnter)
{
var options = jQuery.noop();
if ((callbackOnEnter) && jQuery.isFunction(callbackOnEnter))
{
options = callbackOnEnter;
}
//Iterate over the current set of matched elements
return this.each(function ()
{... | JavaScript |
/**
* Created with JetBrains PhpStorm.
* User: Alex
* Date: 9/30/13
* Time: 7:54 PM
* To change this template use File | Settings | File Templates.
*/
var PHP = PHP || {};
PHP.WebPage = function()
{
/// <summary>Creates a page instance</summary>
};
PHP.WebPage.prototype.ajaxCall = functio... | JavaScript |
/**
* Created with JetBrains PhpStorm.
* User: Alex
* Date: 9/30/13
* Time: 7:53 PM
* To change this template use File | Settings | File Templates.
*/
/*
http://www.JSON.org/json2.js
2011-02-23
*/
var JSON;
if (!JSON)
{
JSON = {};
}
(function()
{
"use strict";
function f(n)
{
... | JavaScript |
(function ($)
{
$.ajaxRoller = {};
$.ajaxRoller.show = function (imagePath)
{
if (!imagePath)
{
imagePath = 'images/ajax-loader.gif';
}
var targetElement = $("body");
if ((targetElement) && (targetElement.length > 0))
{
var ajaxDiv = $(".ajaxRoller");
if ((ajaxDiv) && (ajaxDiv.l... | JavaScript |
/*
* Facebox (for jQuery)
* version: 1.1 (03/01/2008)
* @requires jQuery v1.2 or later
*
* Examples at http://famspam.com/facebox/
*
* Licensed under the MIT:
* http://www.opensource.org/licenses/mit-license.php
*
* Copyright 2007, 2008 Chris Wanstrath [ [email protected] ]
*
* Usage:
*
* ... | JavaScript |
/**
* Copyright (c) 2008 Kelvin Luck (http://www.kelvinluck.com/)
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
* .
* $Id: jquery.datePicker.js 108 2011-11-17 21:19:57Z [email protected] $
**/
... | JavaScript |
/*
* Date prototype extensions. Doesn't depend on any
* other code. Doens't overwrite existing methods.
*
* Adds dayNames, abbrDayNames, monthNames and abbrMonthNames static properties and isLeapYear,
* isWeekend, isWeekDay, getDaysInMonth, getDayName, getMonthName, getDayOfYear, getWeekOfYear,
* setDayOfYear, ad... | JavaScript |
/* Image w/ description tooltip v2.0
* Created: April 23rd, 2010. This notice must stay intact for usage
* Author: Dynamic Drive at http://www.dynamicdrive.com/
* Visit http://www.dynamicdrive.com/ for full source code
*/
var ddimgtooltip={
tiparray:function(){
var tooltips=[]
//define each tooltip below: tool... | JavaScript |
function trim(string)
{
return string.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
}
| JavaScript |
<script type="text/javascript">
/****************************************************************************
Copyright (c) 2009 The Wojo Group
thewojogroup.com
simplecartjs.com
http://github.com/thewojogroup/simplecart-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtain... | JavaScript |
/****************************************************************************
Copyright (c) 2009 The Wojo Group
thewojogroup.com
simplecartjs.com
http://github.com/thewojogroup/simplecart-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... | JavaScript |
/****************************************************************************
Copyright (c) 2009 The Wojo Group
thewojogroup.com
simplecartjs.com
http://github.com/thewojogroup/simplecart-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... | JavaScript |
/****************************************************************************
Copyright (c) 2009 The Wojo Group
thewojogroup.com
simplecartjs.com
http://github.com/thewojogroup/simplecart-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... | JavaScript |
/*~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Copyright (c) 2012 Brett Wejrowski
wojodesign.com
simplecartjs.org
http://github.com/wojodesign/simplecart-js
VERSION 3.0.5
Dual licensed under the MIT or GPL licenses.
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-... | JavaScript |
/****************************************************************************
Copyright (c) 2009 The Wojo Group
thewojogroup.com
simplecartjs.com
http://github.com/thewojogroup/simplecart-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... | JavaScript |
/* http://loseasi.blogspot.com/ */
if (document.images){
(function(){
var cos, a = /Apple/.test(navigator.vendor), times = a? 20 : 40, speed = a? 40 : 20;
var expConIm = function(im){
im = im || window.event;
if (!expConIm.r.test (im.className))
im = im.target || im.srcElement || null;
if (!im || !ex... | JavaScript |
/****************************************************************************
Copyright (c) 2009 The Wojo Group
thewojogroup.com
simplecartjs.com
http://github.com/thewojogroup/simplecart-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... | JavaScript |
/****************************************************************************
Copyright (c) 2009 The Wojo Group
thewojogroup.com
simplecartjs.com
http://github.com/thewojogroup/simplecart-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... | JavaScript |
/****************************************************************************
Copyright (c) 2009 The Wojo Group
thewojogroup.com
simplecartjs.com
http://github.com/thewojogroup/simplecart-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... | JavaScript |
/****************************************************************************
Copyright (c) 2009 The Wojo Group
thewojogroup.com
comprandojs.com
http://github.com/thewojogroup/comprando-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and as... | JavaScript |
/****************************************************************************
Copyright (c) 2009 The Wojo Group
thewojogroup.com
comprandojs.com
http://github.com/thewojogroup/comprando-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and as... | JavaScript |
/****************************************************************************
Copyright (c) 2011 The Wojo Group
thewojogroup.com
simplecartjs.com
http://github.com/thewojogroup/simplecart-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... | JavaScript |
/****************************************************************************
Copyright (c) 2009 The Wojo Group
thewojogroup.com
simplecartjs.com
http://github.com/thewojogroup/simplecart-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... | JavaScript |
/****************************************************************************
Copyright (c) 2009 The Wojo Group
thewojogroup.com
simplecartjs.com
http://github.com/thewojogroup/simplecart-js/tree/master
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and ... | JavaScript |
pref("extensions.sharebookmarks.boolpref", false);
pref("extensions.sharebookmarks.intpref", 0);
pref("extensions.sharebookmarks.stringpref", "A string");
// https://developer.mozilla.org/en/Localizing_extension_descriptions
pref("[email protected]", "chrome://sharebookmarks/loca... | JavaScript |
sharebookmarks.onFirefoxLoad = function(event) {
document.getElementById("contentAreaContextMenu")
.addEventListener("popupshowing",
function (e){
sharebookmarks.showFirefoxContextMenu(e);
},
false);
};
sharebookmarks.showFirefoxContextMenu = function(event) {
/... | JavaScript |
/*
http://www.JSON.org/json2.js
2011-02-23
Public Domain.
NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
See http://www.JSON.org/js.html
This code should be minified before deployment.
See http://javascript.crockford.com/jsmin.html
USE YOUR OWN COPY. IT IS EXTREMELY UNWISE... | JavaScript |
function LOG(str) {
dump("*** " + str + "\n");
}
var EXPORTED_SYMBOLS = ["PlacesUtils"];
var Ci = Components.interfaces;
var Cc = Components.classes;
var Cr = Components.results;
var Cu = Components.utils;
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
function toJSONString(aObj) {
var J... | JavaScript |
var sharebookmarks = {
onLoad: function() {
// initialization code
this.initialized = true;
this.strings = document.getElementById("sharebookmarks-strings");
},
onMenuItemCommand: function(e) {
var dialogWindow = window.openDialog(
"chrome://sharebookmarks/content/sharebookmarksDialogWindo... | JavaScript |
/*
http://www.JSON.org/json2.js
2011-02-23
Public Domain.
NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
See http://www.JSON.org/js.html
This code should be minified before deployment.
See http://javascript.crockford.com/jsmin.html
USE YOUR OWN COPY. IT IS EXTREMELY UNWISE... | JavaScript |
// get width, height auto, auto resize container
function getIEVersion() {
var version = 999; // we assume a sane browser
if (navigator.appVersion.indexOf("MSIE") != -1)
// bah, IE again, lets downgrade version number
version = parseFloat(navigator.appVersion.split("MSIE")[1]);
return version;
... | JavaScript |
//... 13/04/2004
var fixedX = -1 // x position (-1 nếu muốn xuất hiện dưới đối tượng)
var fixedY =-1 // y position (-1 nếu muốn xuất hiện dưới đối tượng)
var startAt = 1 // 0 - sunday ; 1 - monday
var showWeekNumber = 1 // 0 - don't show; 1 - show
var showToday = 1 // 0 - don't show; 1 - show
... | JavaScript |
/**
* This plugin overrides jQuery's height() and width() functions and
* adds more handy stuff for cross-browser compatibility.
*/
/**
* Returns the css height value for the first matched element.
* If used on document, returns the document's height (innerHeight)
* If used on window, returns the viewpo... | JavaScript |
//Creating a button with image style
//text: text's button
//link: link's button
//onclick: determine whether there is an event onclick or not
function getTextFCK(FCKname)
{
// Get the editor instance that we want to interact with.
var oEditor = FCKeditorAPI.GetInstance(FCKname) ;
// Get the editor content... | JavaScript |
// xp_progressbar
// Copyright 2004 Brian Gosselin of ScriptAsylum.com
//
// v1.0 - Initial release
// v1.1 - Added ability to pause the scrolling action (requires you to assign
// the bar to a unique arbitrary variable).
// - Added ability to specify an action to perform after a x amount of
// - bar s... | JavaScript |
/* jQuery UI Date Picker v3.4.3 (previously jQuery Calendar)
Written by Marc Grabanski ([email protected]) and Keith Wood ([email protected]).
Copyright (c) 2007 Marc Grabanski (http://marcgrabanski.com/code/ui-datepicker)
Dual licensed under the MIT (MIT-LICENSE.txt)
and GPL (GPL-LICENSE.txt... | JavaScript |
if(util==null) var util = {};
if (document.getElementById) {
util.byId = function() {
var elements = new Array();
for (var i = 0; i < arguments.length; i++) {
var element = arguments[i];
if (typeof element == 'string') {
element = document.getElementById(element);
}
... | JavaScript |
if(paging==null) var paging = {};
paging.recordsPerPage = 50;
paging.totalNumberPage = 10;
paging.totalRecords = 0;
paging.ID = "";
paging.parentId = "";
paging.parentName = "";
paging.limitPage = function (pageCurrent, pageSet) {
var link = "";
var previous = "";
var j = 0;
if (this.... | JavaScript |
/*
* jdNewsScroll 1.1 (2007-02-08)
*
* Copyright (c) 2006,2007 Jonathan Sharp (http://jdsharp.us)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* http://jdsharp.us/
*
* Built upon jQuery 1.1.1 (http://jquery.com)
* This also requires the jQuery dimensions pl... | JavaScript |
function actb(obj,ca){
/* ---- Public Variables ---- */
this.actb_timeOut = -1; // Autocomplete Timeout in ms (-1: autocomplete never time out)
this.actb_lim = 4; // Number of elements autocomplete can show (-1: no limit)
this.actb_firstText = false; // should the auto complete be limited to the beginning of... | JavaScript |
/*
* Thickbox 3.1 - One Box To Rule Them All.
* By Cody Lindley (http://www.codylindley.com)
* Copyright (c) 2007 cody lindley
* Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
*/
var tb_pathToImage = "./jscript/loadingAnimation.gif";
/*!!!!!!!!!!!!!!!!! edit below ... | JavaScript |
// LOCALIZATION STRING
// Strings for calendar.js and calendar_param.js
var L_Today = "Today";
var L_January = "January";
var L_February = "February";
var L_March = "March";
var L_April = "April";
var L_May = "May";
var L_June = "June";
var L_July = "July";
var L_August = "... | JavaScript |
// export.js
// This file contains the funcitons needed to construct the HTML for the export / print dialog.
//
// Global variable
var print = false; // default to export, so set print to false
var crystal_postback =
"<INPUT type=\"hidden\" name=\"reportsource\" id=\"reportsource\"/>" +
"<INPUT ... | JavaScript |
// Modified Date: 11/30/1999
// Modified By: Robert W. Husted
// Notes: Added frameset support (changed reference for "newWin" to "top.newWin")
// Also changed Spanish "March" from "Marcha" to "Marzo"
// Fixed JavaScript Date Anomaly affecting days > 28
//
// Modified by Crystal Decisions
// R... | JavaScript |
// LOCALIZATION STRING
// Strings for calendar.js and calendar_param.js
var L_Today = "\u4eca\u5929";
var L_January = "1 \u6708";
var L_February = "2 \u6708";
var L_March = "3 \u6708";
var L_April = "4 \u6708";
var L_May = "5 \u6708";
var L_June = "6 \u6708";
var L_July = "7 \u... | JavaScript |
// LOCALIZATION STRING
// Strings for calendar.js and calendar_param.js
var L_Today = "Hoy";
var L_January = "Enero";
var L_February = "Febrero";
var L_March = "Marzo";
var L_April = "Abril";
var L_May = "Mayo";
var L_June = "Junio";
var L_July = "Julio";
var L_August = "Ag... | JavaScript |
/*
File Version Start - Do not remove this if you are modifying the file
Build: 9.5.0
File Version End
*/
/*
this function is used to verify whether the 'Enter' key is pressed.
if the 'Enter' key is pressed, then either call the event handler function passed in as a parameter (evntHdlrName)
or if... | JavaScript |
// LOCALIZATION STRING
// Strings for calendar.js and calendar_param.js
var L_Today = "Aujourd'hui";
var L_January = "Janvier";
var L_February = "F\u00e9vrier";
var L_March = "Mars";
var L_April = "Avril";
var L_May = "Mai";
var L_June = "Juin";
var L_July = "Juillet";
var L_A... | JavaScript |
// LOCALIZATION STRING
// Strings for calendar.js and calendar_param.js
var L_Today = "Oggi";
var L_January = "Gennaio";
var L_February = "Febbraio";
var L_March = "Marzo";
var L_April = "Aprile";
var L_May = "Maggio";
var L_June = "Giugno";
var L_July = "Luglio";
var L_August... | JavaScript |
// LOCALIZATION STRING
// Strings for calendar.js and calendar_param.js
var L_Today = "\u4eca\u65e5";
var L_January = "1 \u6708";
var L_February = "2 \u6708";
var L_March = "3 \u6708";
var L_April = "4 \u6708";
var L_May = "5 \u6708";
var L_June = "6 \u6708";
var L_July = "7 \u... | JavaScript |
// TDC is to get DateTime format info for current locale
function TDC() {
var d=new Date(1970,0,0,0,0,0,0),d2=new Date(d),s1,s2,api=-1;
d.setHours(10); d2.setHours(11);
s1=d.toLocaleString(); s2=d2.toLocaleString();
this.displayHour=(s1!=s2);
d.setHours(0); d2.setHours(0);
d.setMinutes(10); d... | JavaScript |
// LOCALIZATION STRING
// Strings for calendar.js and calendar_param.js
var L_Today = "Heute";
var L_January = "Januar";
var L_February = "Februar";
var L_March = "M\u00e4rz";
var L_April = "April";
var L_May = "Mai";
var L_June = "Juni";
var L_July = "Juli";
var L_August =... | JavaScript |
// LOCALIZATION STRING
// Strings for calendar.js and calendar_param.js
var L_Today = "\u4eca\u5929";
var L_January = "\u4e00\u6708";
var L_February = "\u4e8c\u6708";
var L_March = "\u4e09\u6708";
var L_April = "\u56db\u6708";
var L_May = "\u4e94\u6708";
var L_June = "\u516d\u6708";
... | JavaScript |
var IE_PRINT_CONTROL_PRODUCTVERSION = "10,2,0,1078"
var NS_PRINT_CONTROL_PRODUCTVERSION = "10.2.0.1078"
function blockEvents() {
var deadend;
opener.captureEvents(Event.CLICK, Event.MOUSEDOWN, Event.MOUSEUP, Event.FOCUS);
opener.onclick = deadend;
opener.onmousedown = deadend;
opener.onmous... | JavaScript |
//////////////////////////////
// FOR DEBUGGING ONLY
var debug = false;
function dumpFormFields(formName)
{
theForm = document.forms[formName];
for ( idx = 0; idx < theForm.elements.length; ++idx )
alert ( theForm.elements[idx].name + " - " + theForm.elements[idx].value );
}
///////////////... | JavaScript |
// LOCALIZATION STRING
// Strings for calendar.js and calendar_param.js
var L_Today = "Today";
var L_January = "January";
var L_February = "February";
var L_March = "March";
var L_April = "April";
var L_May = "May";
var L_June = "June";
var L_July = "July";
var L_August = "... | JavaScript |
// LOCALIZATION STRING
// Strings for calendar.js and calendar_param.js
var L_Today = "\uc624\ub298";
var L_January = "1\uc6d4";
var L_February = "2\uc6d4";
var L_March = "3\uc6d4";
var L_April = "4\uc6d4";
var L_May = "5\uc6d4";
var L_June = "6\uc6d4";
var L_July = "7\uc6d4";
... | 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 |
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 |
/*
* 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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.