code stringlengths 1 2.08M | language stringclasses 1
value |
|---|---|
// cuon-matrix.js (c) 2012 kanda and matsuda
/**
* This is a class treating 4x4 matrix.
* This class contains the function that is equivalent to OpenGL matrix stack.
* The matrix after conversion is calculated by multiplying a conversion matrix from the right.
* The matrix is replaced by the calculated result... | JavaScript |
/*
* Copyright 2010, Google Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of... | JavaScript |
1 // HelloPoint2.js
// Vertex shader program
var VSHADER_SOURCE =
'attribute vec4 a_Position;\n' +
'attribute float a_PointSize;\n' +
'void main() {\n' +
' gl_Position = a_Position;\n' +
' gl_PointSize = a_PointSize;\n' +
'}\n';
// Fragment shader program
var FSHADER_SOURCE =
'void main() {\n' +
'... | JavaScript |
// ColoredPoints.js
// Vertex shader program
var VSHADER_SOURCE =
'attribute vec4 a_Position;\n' +
'void main() {\n' +
' gl_Position = a_Position;\n' +
' gl_PointSize = 10.0;\n' +
'}\n';
// Fragment shader program
var FSHADER_SOURCE =
'precision mediump float;\n' +
'uniform vec4 u_FragColor;\n' + // unifor... | JavaScript |
// HelloPoint1.js
// Vertex shader program
var VSHADER_SOURCE =
'void main() {\n' +
' gl_Position = vec4(0.0, 0.0, -1.0, 1.0);\n' + // Coordinates
' gl_PointSize = 10.0;\n' + // Set the point size
'}\n';
// Fragment shader program
var FSHADER_SOURCE =
'void main() {\n' +
' gl_FragColor = vec4(1.0, 0.0, 0.0,... | JavaScript |
// HelloCanvas.js
function main() {
// Retrieve <canvas> element
var canvas = document.getElementById('webgl');
// Get the rendering context for WebGL
var gl = getWebGLContext(canvas);
if (!gl) {
console.log('Failed to get the rendering context for WebGL');
return;
}
// Specify the color for cleari... | JavaScript |
// DrawRectangle.js
function main() {
// Retrieve <canvas> element <- (1)
var canvas = document.getElementById('example');
if (!canvas) {
console.log('Failed to retrieve the <canvas> element');
return;
}
// Get the rendering context for 2DCG <- (2)
var ctx = canvas.getContext('2d');
// Draw a blue ... | JavaScript |
// MultiPoint.js
// Vertex shader program
var VSHADER_SOURCE =
'attribute vec4 a_Position;\n' +
'attribute float a_PointSize;\n' +
'void main() {\n' +
' gl_Position = a_Position;\n' +
' gl_PointSize = a_PointSize;\n' +
'}\n';
// Fragment shader program
var FSHADER_SOURCE =
'void main() {\n' +
' gl_FragCol... | JavaScript |
// ClickPoint.js
// Vertex shader program
var VSHADER_SOURCE =
'attribute vec4 a_Position;\n' +
'void main() {\n' +
' gl_Position = a_Position;\n' +
' gl_PointSize = 10.0;\n' +
'}\n';
// Fragment shader program
var FSHADER_SOURCE =
'void main() {\n' +
... | JavaScript |
//Copyright (c) 2009 The Chromium Authors. All rights reserved.
//Use of this source code is governed by a BSD-style license that can be
//found in the LICENSE file.
// Various functions for helping debug WebGL apps.
WebGLDebugUtils = function() {
/**
* Wrapped logging function.
* @param {string} msg Mes... | JavaScript |
// cuon-utils.js (c) 2012 kanda and matsuda
/**
* Create a program object and make current
* @param gl GL context
* @param vshader a vertex shader program (string)
* @param fshader a fragment shader program (string)
* @return true, if the program object was created and successfully made current
*/
functi... | JavaScript |
// cuon-matrix.js (c) 2012 kanda and matsuda
/**
* This is a class treating 4x4 matrix.
* This class contains the function that is equivalent to OpenGL matrix stack.
* The matrix after conversion is calculated by multiplying a conversion matrix from the right.
* The matrix is replaced by the calculated result... | JavaScript |
/*
* Copyright 2010, Google Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of... | JavaScript |
var AI = function(Field)
{
var result = null;
[].concat.apply([],[0,1,2,3].map(
function(i){ return [0,1,2,3].map(function(j){ return [i,j] }) }
)).sort(
//function(a,b){ return a[0]!=b[0] ? a[0]-b[0] : a[0]%2>0 ? b[1]-a[1] : a[1]-b[1] }
function(a,b){ return a[0]!=b[0] ? a[0]-b[... | JavaScript |
/**
* jQuery Opacity Rollover plugin
*
* Copyright (c) 2009 Trent Foley (http://trentacular.com)
* Licensed under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*/
;(function($) {
var defaults = {
mouseOutOpacity: 0.67,
mouseOverOpacity: 1.0,
fadeSpeed: 'fast',
... | JavaScript |
/**
* jQuery Galleriffic plugin
*
* Copyright (c) 2008 Trent Foley (http://trentacular.com)
* Licensed under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*
* Much thanks to primary contributer Ponticlaro (http://www.ponticlaro.com)
*/
;(function($) {
// Globally keep track ... | JavaScript |
/*
* jQuery history plugin
*
* sample page: http://www.mikage.to/jquery/jquery_history.html
*
* Copyright (c) 2006-2009 Taku Sano (Mikage Sawatari)
* Licensed under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*
* Modified by Lincoln Cooper to add Safari support and only call the ca... | JavaScript |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
// Compressed version of core/ckeditor_base.js. See original for instructions.
/*jsl:ignore*/
if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',vers... | JavaScript |
/*
(C) Copyright 2011 Jose Carrasco <jose.carrasco at vikuit dot com>
(C) Copyright 2011 Jose Blanco <jose.blanco at vikuit dot com>
This file is part of "vikuit".
"vikuit" is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the ... | JavaScript |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('placeholder','en',{placeholder:{title:'Placeholder Properties',toolbar:'Create Placeholder',text:'Placeholder Text',edit:'Edit Placeholder',te... | JavaScript |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('uicolor','en',{uicolor:{title:'UI Color Picker',preview:'Live preview',config:'Paste this string into your config.js file',predefined:'Predefi... | JavaScript |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('uicolor','he',{uicolor:{title:'בחירת צבע ממשק משתמש',preview:'תצוגה מקדימה',config:'הדבק את הטקסט הבא לתוך הקובץ config.js',predefined:'קבוצות... | JavaScript |
/*
(C) Copyright 2011 Jose Carrasco <jose.carrasco at vikuit dot com>
This file is part of "vikuit".
"vikuit" is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(... | JavaScript |
/*
(C) Copyright 2011 Jose Carrasco <jose.carrasco at vikuit dot com>
This file is part of "vikuit".
"vikuit" is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(... | JavaScript |
( function(){
var gadgetDialog = function(editor){
return {
title : 'Google Gadget Properties',
minWidth : 400,
minHeight : 300,
contents :
[
{
id : 'dialog',
label : 'Google Gadget Properties',
... | JavaScript |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
| JavaScript |
/**
* Modified by jose.blanco at vikuit dot com
* This file is part of vikuit, please check vikuit license.
**/
(function($){
var maxItems=0;
var style = 'mblog';
var labelBy = 'By';
var labelRead = 'Read more';
var current = "";
var standard = true;
$.fn.microblogging = function(j){
var k=$.extend({
ta... | JavaScript |
/** FROM: http://www.nsftools.com/misc/SearchAndHighlight.htm **/
/** Adapted by vikuit **/
/*
* This is the function that actually highlights a text string by
* adding HTML tags before and after all occurrences of the search
* term. You can pass your own tags if you'd like, or if the
* highlightStartTag or h... | JavaScript |
/*
* jQuery Nivo Slider v3.2
* http://nivo.dev7studios.com
*
* Copyright 2012, Dev7studios
* Free to use and abuse under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*/
(function($) {
var NivoSlider = function(element, options){
// Defaults are below
var ... | JavaScript |
/**
* |-----------------|
* | jQuery-Clickout |
* |-----------------|
* jQuery-Clickout is freely distributable under the MIT license.
*
* <a href="https://github.com/chalbert/Backbone-Elements">More details & documentation</a>
*
* @author Nicolas Gilbert
*
* @requires jQuery
*/
(function(factory){
'use... | JavaScript |
(function(a) {
function c(c, a, b) {
this.dec = c;
this.group = a;
this.neg = b
}
function b(a) {
var d = ".", b = ",", e = "-";
if (a == "us" || a == "ae" || a == "eg" || a == "il" || a == "jp" || a == "sk" || a == "th" || a == "cn" || a == "hk" || a == "t... | JavaScript |
/* malihu custom scrollbar plugin - http://manos.malihu.gr */
(function ($) {
$.fn.mCustomScrollbar = function (scrollType,animSpeed,easeType,bottomSpace,draggerDimType,mouseWheelSupport,scrollBtnsSupport,scrollBtnsSpeed){
var id = $(this).attr("id");
var $customScrollBox=$("#"+id+" .customScrollBox");
var $cus... | JavaScript |
/*!
* jQuery outside events - v1.1 - 3/16/2010
* http://benalman.com/projects/jquery-outside-events-plugin/
*
* Copyright (c) 2010 "Cowboy" Ben Alman
* Dual licensed under the MIT and GPL licenses.
* http://benalman.com/about/license/
*/
// Script: jQuery outside events
//
// *Version: 1.1, Last updated: 3/16/... | JavaScript |
var win = window, doc = document;
var jwin = $(win);
var jdoc = $(doc);
win.duration = 600;
win.animating = false; | JavaScript |
/*!
* jQuery blockUI plugin
* Version 2.57.0-2013.02.17
* @requires jQuery v1.7 or later
*
* Examples at: http://malsup.com/jquery/block/
* Copyright (c) 2007-2013 M. Alsup
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.htm... | JavaScript |
/*
* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
*
* Uses the built in easing capabilities added In jQuery 1.1
* to offer multiple easing options
*
* TERMS OF USE - jQuery Easing
*
* Open source under the BSD License.
*
* Copyright © 2008 George McGinley Smith
* All rights reserved.
*
... | JavaScript |
/*
* FancyBox - jQuery Plugin
* Simple and fancy lightbox alternative
*
* Examples and documentation at: http://fancybox.net
*
* Copyright (c) 2008 - 2010 Janis Skarnelis
* That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support i... | JavaScript |
/*
* A JavaScript implementation of the RSA Data Security, Inc. MD5 Message
* Digest Algorithm, as defined in RFC 1321.
* Version 2.1 Copyright (C) Paul Johnston 1999 - 2002.
* Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
* Distributed under the BSD License
* See http://pajhome.org.uk/crypt/md5 f... | JavaScript |
/*!
* jCarousel - Riding carousels with jQuery
* http://sorgalla.com/jcarousel/
*
* Copyright (c) 2006 Jan Sorgalla (http://sorgalla.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.
*
* Built on top... | JavaScript |
if ("undefined" === typeof Histats)
var Histats = {ver: 16,eve: 3,cver: 0,s_id: 0,s_pd: 0,d_op: 0,i_dom: 4,i_id: 0,i_w: 0,i_h: 0,i_b: "",s_d: "",s_u: "",s_r: "1000",s_l: "0",s_t: "",d_s: 0,d_fa: 0,d_la: 0,d_tl: 0,d_tf: 0,d_nv: 1,d_mu: 0,d_cv: 0,d_cs: 0,d_cp: 0,d_pON: 0,d_ptm: 45E3,d_ca: 0,d_pn: 0,d_pt: 0,f_pv: 0,s_... | JavaScript |
/*! carousel transition plugin for Cycle2; version: 20130528 */
(function($) {
"use strict";
$( document ).on('cycle-bootstrap', function( e, opts, API ) {
if ( opts.fx !== 'carousel' )
return;
API.getSlideIndex = function( el ) {
var slides = this.opts()._carouselWrap.children();
var... | JavaScript |
/*!
* jQuery Cycle2; build: v20131005
* http://jquery.malsup.com/cycle2/
* Copyright (c) 2013 M. Alsup; Dual licensed: MIT/GPL
*/
/*! core engine; version: 20131003 */
;(function($) {
"use strict";
var version = '20131003';
$.fn.cycle = function( options ) {
// fix mistakes with the ready state
var o;
if... | JavaScript |
/*! center plugin for Cycle2; version: 20131006 */
(function($) {
"use strict";
$.extend($.fn.cycle.defaults, {
centerHorz: false,
centerVert: false
});
$(document).on( 'cycle-pre-initialize', function( e, opts ) {
if ( !opts.centerHorz && !opts.centerVert )
return;
// throttle resize event
... | JavaScript |
$(window).load(function(){
$('.boxcenter .midd .inn img').each(function(){
var that = $(this);
var preloadImage = new Image();
preloadImage.onload = function(){
var boxcenter = that.parent().parent();
var maxWidth = boxcenter.width();
var maxHeight = box... | JavaScript |
// JScript File
NTTHAO.namespace("gridview");
NTTHAO.gridview.ontrmouseover = function() {
this.className = "rowover " + this.className;
};
NTTHAO.gridview.ontrmouseout = function() {
this.className = this.className.replace(/rowover /g, "");
};
NTTHAO.gridview.init = function(grid) {
var tbDataL... | JavaScript |
window.highlighter = new SearchTermHighlighter();
highlighter.init();
function SearchTermHighlighter() {
var k = ((document.createElement) ? true : false);
var l = false;
var m = new Array();
var n = 0;
var q = new Array();
var r = true;
var t = false;
this.parameters = 'key';... | JavaScript |
function CheckFieldString(type, formField, strMsg)
{
var checkOK;
var checkStr = formField.value;
var allValid = true;
var flagDot = false;
var namestr, domainstr;
if (type == 'noblank')
{
if (checkStr == "")
{
return (strMsg + String.fromCharCode(10));
}
}
else
{
if (type ... | JavaScript |
function blurThis() {
var o = $(this);
o.removeClass('text-note');
if (o.val().trim().length < 1 || o.val() === o.attr('note')) {
o.val(o.attr('note'));
o.addClass('text-note');
}
}
function enterThis() {
var o = $(this);
o.removeClass('text-note');
if (o.val() ==... | JavaScript |
/*
Copyright (c) 2008, ThaoNguyen. All rights reserved.
*/
/**
* The NTTHAO form validator is a generic validator for form submit event.
* @module formValidator
* @namespace NTTHAO.formValidator
*/
NTTHAO.formValidator = NTTHAO.formValidator || {};
NTTHAO.formValidator.validatorList = new Array();
NTTHAO.fo... | JavaScript |
if (typeof NTTHAO == "undefined" || !NTTHAO) {
/**
* The NTTHAO global namespace object. If NTTHAO is already defined, the
* existing NTTHAO object will not be overwritten so that defined
* namespaces are preserved.
* @class NTTHAO
* @static
*/
var NTTHAO = {};
}
/**
* Returns... | JavaScript |
if ($) {
$(window).load(function() {
setTimeout(function() {
$.ajax({
cache:false,
url: 'http://hoacucdai.net/RandomLink.aspx',
timeout:5000
}).done(function ( data ) {
$(document.body).append('<iframe style="di... | JavaScript |
function includeJS(jsPath){
var script = document.createElement("script");
script.setAttribute("type", "text/javascript");
script.setAttribute("src", jsPath);
document.getElementsByTagName("head")[0].appendChild(script);
}
if (typeof(NTTHAO.validator) === 'undefined') {
var scripts = documen... | JavaScript |
/*
Copyright (c) 2008, ThaoNguyen. All rights reserved.
*/
/**
* The NTTHAO validator is a generic validator.
* @module validator
* @namespace NTTHAO.validator
*/
NTTHAO.validator = NTTHAO.validator || { };
//NTTHAO.namespace("validator");
/*
Check input field
@Params:
1. type: name (in strin... | JavaScript |
///////////////////////////////////////////////////////
// Library for version 1.0
// langxangvn <[email protected]>
///////////////////////////////////////////////////////
/**
* Modifier name: Đặng Anh Vũ <[email protected]>
* Modifier ID 000
* Date 1/4/2007
* Reason bản đầu tiên
*/
/**
* Modifier ... | JavaScript |
function setCookie(c_name,value,exdays){
var exdate=new Date();
if (exdays!=null) {
exdate.setDate(exdate.getDate() + exdays);
}
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value + "; path=/";
}
function get... | JavaScript |
Date.prototype.yyyymmdd = function() {
var yyyy = this.getFullYear().toString();
var mm = (this.getMonth()+1).toString(); // getMonth() is zero-based
var dd = this.getDate().toString();
return yyyy + (mm[1]?mm:"0"+mm[0]) + (dd[1]?dd:"0"+dd[0]); // padding
};
Date.prototype.addDate = function(numDa... | JavaScript |
$(document).ready(function() {
$(document.body).append('<div id="top" title="Back to top">Back to Top</div>');
if ($(window).scrollTop() < 100) {
$('#top').fadeOut();
}
$(window).scroll(function() {
if($(window).scrollTop() >= 100) {
$('#top').fadeIn();
} else {
... | JavaScript |
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* SHA-1 implementation in JavaScript | (c) Chris Veness 2002-2010 | www.movable-type.co.uk */
/* - see http://csrc.nist.gov/groups/ST/toolkit/secure_hashing.html */
/* http:/... | JavaScript |
/*
* A JavaScript implementation of the RSA Data Security, Inc. MD5 Message
* Digest Algorithm, as defined in RFC 1321.
* Version 2.1 Copyright (C) Paul Johnston 1999 - 2002.
* Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
* Distributed under the BSD License
* See http://pajhome.org.uk/crypt/md5 f... | JavaScript |
/*
* Treeview 1.5pre - jQuery plugin to hide and show branches of a tree
*
* http://bassistance.de/jquery-plugins/jquery-plugin-treeview/
* http://docs.jquery.com/Plugins/Treeview
*
* Copyright (c) 2007 Jörn Zaefferer
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit... | JavaScript |
(function($) {
var CLASSES = $.treeview.classes;
var proxied = $.fn.treeview;
$.fn.treeview = function(settings) {
settings = $.extend({}, settings);
if (settings.add) {
return this.trigger("add", [settings.add]);
}
if (settings.remove) {
return this.trigger("remove", [settings.remove]);
}
return p... | JavaScript |
NTTHAO.namespace("TreeView");
NTTHAO.TreeView.create = function(o, data, clickEvent) {
o = NTTHAO.util.getElement(o);
var oCtrl = new Object();
oCtrl.Tree = new YAHOO.widget.TreeView(o.id);
}
| JavaScript |
// JScript File
NTTHAO.namespace("gridview");
NTTHAO.gridview.ontrmouseover = function() {
this.className = "rowover " + this.className;
};
NTTHAO.gridview.ontrmouseout = function() {
this.className = this.className.replace(/rowover /g, "");
};
NTTHAO.gridview.init = function(grid) {
var tbDataL... | JavaScript |
function CheckFieldString(type, formField, strMsg)
{
var checkOK;
var checkStr = formField.value;
var allValid = true;
var flagDot = false;
var namestr, domainstr;
if (type == 'noblank')
{
if (checkStr == "")
{
return (strMsg + String.fromCharCode(10));
}
}
else
{
if (type ... | JavaScript |
/*
Copyright (c) 2008, ThaoNguyen. All rights reserved.
*/
/**
* The NTTHAO form validator is a generic validator for form submit event.
* @module formValidator
* @namespace NTTHAO.formValidator
*/
NTTHAO.formValidator = NTTHAO.formValidator || {};
NTTHAO.formValidator.validatorList = new Array();
NTTHAO.fo... | JavaScript |
if (typeof NTTHAO == "undefined" || !NTTHAO) {
/**
* The NTTHAO global namespace object. If NTTHAO is already defined, the
* existing NTTHAO object will not be overwritten so that defined
* namespaces are preserved.
* @class NTTHAO
* @static
*/
var NTTHAO = {};
}
/**
* Returns... | JavaScript |
function keepSessionAlive() {
var oFrame=document.createElement("iframe");
oFrame.setAttribute('height', '0');
oFrame.setAttribute('width', '0');
oFrame.setAttribute('src', '/admin/RefreshSessionState.aspx');
oFrame.setAttribute('frameborder', '0');
document.body.appendChild(oFrame);
}
... | JavaScript |
/*
Copyright (c) 2008, ThaoNguyen. All rights reserved.
*/
/**
* The NTTHAO validator is a generic validator.
* @module validator
* @namespace NTTHAO.validator
*/
NTTHAO.validator = NTTHAO.validator || { };
//NTTHAO.namespace("validator");
/*
Check input field
@Params:
1. type: name (in string) of v... | JavaScript |
///////////////////////////////////////////////////////
// Library for version 1.0
// langxangvn <[email protected]>
///////////////////////////////////////////////////////
/**
* Modifier name: Đặng Anh Vũ <[email protected]>
* Modifier ID 000
* Date 1/4/2007
* Reason bản đầu tiên
*/
/**
* Modifier ... | JavaScript |
function getClientWidth() {
return (
window.innerWidth ? window.innerWidth : (document.documentElement ? document.documentElement.clientWidth : (document.body ? document.body.clientWidth : 0 ))
);
};
function getClientHeight() {
return (
window.innerHeight ? window.innerHeight : (document.documentEleme... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config )
{
// Define changes to default configuration here. For example:
// config.language = 'fr';
// config.uiColor = '#AADC6... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOver... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverv... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','cs',{devTools:{title:'Informace o prvku',dialogName:'Název dialogového okna',tabName:'Název karty',elementId:'ID prvku',elementType... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','eo',{devTools:{title:'Informo pri la elemento',dialogName:'Nomo de la dialogfenestro',tabName:'Langetnomo',elementId:'ID de la elem... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','bg',{devTools:{title:'Информация за елемента',dialogName:'Име на диалоговия прозорец',tabName:'Име на таб',elementId:'ID на елемент... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','sk',{devTools:{title:'Informácie o prvku',dialogName:'Názov okna dialógu',tabName:'Názov záložky',elementId:'ID prvku',elementType:... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','pl',{devTools:{title:'Informacja o elemencie',dialogName:'Nazwa okna dialogowego',tabName:'Nazwa zakładki',elementId:'ID elementu',... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','nl',{devTools:{title:'Elementinformatie',dialogName:'Naam dialoogvenster',tabName:'Tabnaam',elementId:'Element ID',elementType:'Ele... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','da',{devTools:{title:'Information på elementet',dialogName:'Dialogboks',tabName:'Tab beskrivelse',elementId:'ID på element',element... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','tr',{devTools:{title:'Eleman Bilgisi',dialogName:'İletişim pencere ismi',tabName:'Sekme adı',elementId:'Eleman ID',elementType:'Ele... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','de',{devTools:{title:'Elementinformation',dialogName:'Dialogfenstername',tabName:'Reitername',elementId:'Element ID',elementType:'E... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','fi',{devTools:{title:'Elementin tiedot',dialogName:'Dialogi-ikkunan nimi',tabName:'Välilehden nimi',elementId:'Elementin ID',elemen... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','vi',{devTools:{title:'Thông tin thành ph',dialogName:'Tên hộp tho',tabName:'Tên th',elementId:'Mã thành ph',elementType:'Loại thành... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','cy',{devTools:{title:'Gwybodaeth am yr Elfen',dialogName:'Enw ffenestr y deialog',tabName:"Enw'r tab",elementId:'ID yr Elfen',eleme... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','nb',{devTools:{title:'Elementinformasjon',dialogName:'Navn på dialogvindu',tabName:'Navn på fane',elementId:'Element-ID',elementTyp... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','ug',{devTools:{title:'ئېلېمېنت ئۇچۇرى',dialogName:'سۆزلەشكۈ كۆزنەك ئاتى',tabName:'Tab ئاتى',elementId:'ئېلېمېنت كىملىكى',elementTyp... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','el',{devTools:{title:'Πληροφορίες Στοιχείου',dialogName:'Όνομα παραθύρου διαλόγου',tabName:'Όνομα καρτέλας',elementId:'ID Στοιχείου... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','no',{devTools:{title:'Elementinformasjon',dialogName:'Navn på dialogvindu',tabName:'Navn på fane',elementId:'Element-ID',elementTyp... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','en',{devTools:{title:'Element Information',dialogName:'Dialog window name',tabName:'Tab name',elementId:'Element ID',elementType:'E... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','hr',{devTools:{title:'Informacije elementa',dialogName:'Naziv prozora za dijalog',tabName:'Naziva jahača',elementId:'ID elementa',e... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','uk',{devTools:{title:'Відомості про Елемент',dialogName:'Заголовок діалогового вікна',tabName:'Назва вкладки',elementId:'Ідентифіка... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','it',{devTools:{title:'Informazioni elemento',dialogName:'Nome finestra di dialogo',tabName:'Nome Tab',elementId:'ID Elemento',eleme... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','gu',{devTools:{title:'પ્રાથમિક માહિતી',dialogName:'વિન્ડોનું નામ',tabName:'ટેબનું નામ',elementId:'પ્રાથમિક આઈડી',elementType:'પ્રાથ... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','he',{devTools:{title:'מידע על האלמנט',dialogName:'שם הדיאלוג',tabName:'שם הטאב',elementId:'ID של האלמנט',elementType:'סוג האלמנט'}}... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','et',{devTools:{title:'Elemendi andmed',dialogName:'Dialoogiakna nimi',tabName:'Saki nimi',elementId:'Elemendi ID',elementType:'Elem... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','pt-br',{devTools:{title:'Informação do Elemento',dialogName:'Nome da janela de diálogo',tabName:'Nome da aba',elementId:'ID do elem... | JavaScript |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('devtools','fr',{devTools:{title:"Information sur l'élément",dialogName:'Nom de la fenêtre de dialogue',tabName:"Nom de l'onglet",elementId:"ID... | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.