code stringlengths 1 2.08M | language stringclasses 1
value |
|---|---|
/* Korean initialisation for the jQuery calendar extension. */
/* Written by DaeKwon Kang (ncrash.dk@gmail.com). */
jQuery(function($){
$.datepicker.regional['ko'] = {
closeText: '닫기',
prevText: '이전달',
nextText: '다음달',
currentText: '오늘',
monthNames: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)... | JavaScript |
/* Icelandic initialisation for the jQuery UI date picker plugin. */
/* Written by Haukur H. Thorsson (haukur@eskill.is). */
jQuery(function($){
$.datepicker.regional['is'] = {
closeText: 'Loka',
prevText: '< Fyrri',
nextText: 'Næsti >',
currentText: 'Í dag',
monthNames: ['Janúa... | JavaScript |
/* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */
/* @author Arturas Paleicikas <arturas@avalon.lt> */
jQuery(function($){
$.datepicker.regional['lt'] = {
closeText: 'Uždaryti',
prevText: '<Atgal',
nextText: 'Pirmyn>',
currentText: 'Šiandien',
monthNames: ['Sausis','Vasa... | JavaScript |
/* Greek (el) initialisation for the jQuery UI date picker plugin. */
/* Written by Alex Cicovic (http://www.alexcicovic.com) */
jQuery(function($){
$.datepicker.regional['el'] = {
closeText: 'Κλείσιμο',
prevText: 'Προηγούμενος',
nextText: 'Επόμενος',
currentText: 'Τρέχων Μήνας',
monthNames: ['Ιανουάριος','... | JavaScript |
/* Serbian i18n for the jQuery UI date picker plugin. */
/* Written by Dejan Dimić. */
jQuery(function($){
$.datepicker.regional['sr-SR'] = {
closeText: 'Zatvori',
prevText: '<',
nextText: '>',
currentText: 'Danas',
monthNames: ['Januar','Februar','Mart','April','Maj','Jun',
'Jul','Avgust','Sept... | JavaScript |
/*
* jQuery UI Droppable 1.7.2
*
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* http://docs.jquery.com/UI/Droppables
*
* Depends:
* ui.core.js
* ui.draggable.js
*/
(function($) {
$.widget("ui.droppable",... | JavaScript |
/*
* jQuery UI Effects Pulsate 1.7.2
*
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* http://docs.jquery.com/UI/Effects/Pulsate
*
* Depends:
* effects.core.js
*/
(function($) {
$.effects.pulsate = functio... | JavaScript |
/*
* jQuery UI Effects Shake 1.7.2
*
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* http://docs.jquery.com/UI/Effects/Shake
*
* Depends:
* effects.core.js
*/
(function($) {
$.effects.shake = function(o) {... | JavaScript |
/*
* jQuery UI Tabs 1.7.2
*
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* http://docs.jquery.com/UI/Tabs
*
* Depends:
* ui.core.js
*/
(function($) {
$.widget("ui.tabs", {
_init: function() {
if (this... | JavaScript |
/*
* jQuery UI Effects Bounce 1.7.2
*
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* http://docs.jquery.com/UI/Effects/Bounce
*
* Depends:
* effects.core.js
*/
(function($) {
$.effects.bounce = function(o... | JavaScript |
/*
Flot plugin for selecting regions.
The plugin defines the following options:
selection: {
mode: null or "x" or "y" or "xy",
color: color
}
Selection support is enabled by setting the mode to one of "x", "y" or
"xy". In "x" mode, the user will only be able to specify the x range,
similarly for "y" mode... | JavaScript |
/*
Flot plugin for showing crosshairs, thin lines, when the mouse hovers
over the plot.
crosshair: {
mode: null or "x" or "y" or "xy"
color: color
lineWidth: number
}
Set the mode to one of "x", "y" or "xy". The "x" mode enables a
vertical crosshair that lets you trace the values on the x axis, "y"
en... | JavaScript |
/*
Flot plugin for computing bottoms for filled line and bar charts.
The case: you've got two series that you want to fill the area
between. In Flot terms, you need to use one as the fill bottom of the
other. You can specify the bottom of each data point as the third
coordinate manually, or you can use this plugin to ... | JavaScript |
/*
Flot plugin for automatically redrawing plots when the placeholder
size changes, e.g. on window resizes.
It works by listening for changes on the placeholder div (through the
jQuery resize event plugin) - if the size changes, it will redraw the
plot.
There are no options. If you need to disable the plugin for some... | JavaScript |
/*
Flot plugin for thresholding data. Controlled through the option
"threshold" in either the global series options
series: {
threshold: {
below: number
color: colorspec
}
}
or in a specific series
$.plot($("#placeholder"), [{ data: [ ... ], threshold: { ... }}])
The data points below "bel... | JavaScript |
/*
Flot plugin that adds some extra symbols for plotting points.
The symbols are accessed as strings through the standard symbol
choice:
series: {
points: {
symbol: "square" // or "diamond", "triangle", "cross"
}
}
*/
(function ($) {
function processRawData(plot, series, datapoints) {
... | JavaScript |
/* Plugin for jQuery for working with colors.
*
* Version 1.1.
*
* Inspiration from jQuery color animation plugin by John Resig.
*
* Released under the MIT license by Ole Laursen, October 2009.
*
* Examples:
*
* $.color.parse("#fff").scale('rgb', 0.25).add('a', -0.5).toString()
* var c = $.color.extrac... | JavaScript |
/*
Flot plugin for stacking data sets, i.e. putting them on top of each
other, for accumulative graphs.
The plugin assumes the data is sorted on x (or y if stacking
horizontally). For line charts, it is assumed that if a line has an
undefined gap (from a null point), then the line above it should have
the same gap - i... | JavaScript |
/*
Flot plugin for rendering pie charts. The plugin assumes the data is
coming is as a single data value for each series, and each of those
values is a positive value or zero (negative numbers don't make
any sense and will cause strange effects). The data values do
NOT need to be passed in as percentage values... | JavaScript |
/*
Flot plugin for adding panning and zooming capabilities to a plot.
The default behaviour is double click and scrollwheel up/down to zoom
in, drag to pan. The plugin defines plot.zoom({ center }),
plot.zoomOut() and plot.pan(offset) so you easily can add custom
controls. It also fires a "plotpan" and "plotzoom" even... | JavaScript |
/*! Javascript plotting library for jQuery, v. 0.7.
*
* Released under the MIT license by IOLA, December 2007.
*
*/
// first an inline dependency, jquery.colorhelpers.js, we inline it here
// for convenience
/* Plugin for jQuery for working with colors.
*
* Version 1.1.
*
* Inspiration from jQuery color ani... | JavaScript |
/*
Flot plugin for plotting images, e.g. useful for putting ticks on a
prerendered complex visualization.
The data syntax is [[image, x1, y1, x2, y2], ...] where (x1, y1) and
(x2, y2) are where you intend the two opposite corners of the image to
end up in the plot. Image must be a fully loaded Javascript image (you
ca... | JavaScript |
/*
* Superfish v1.4.8 - jQuery menu widget
* Copyright (c) 2008 Joel Birch
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
*/
;(functi... | JavaScript |
function selectAll(objectSelectAll, checkboxName) {
var elements = document.getElementsByName(checkboxName);//.getElementsByTagName('input');
var checked = objectSelectAll.checked;
var size = elements.length;
for (i = 0; i < size; i++) {
if (elements[i].type == "checkbox") {
el... | JavaScript |
M.mod_poasassignment = {};
M.mod_poasassignment.init_tree = function(Y, expand_all, htmlid) {
Y.use('yui2-treeview', function(Y) {
var tree = new YAHOO.widget.TreeView(htmlid);
tree.subscribe("clickEvent", function(node, event) {
// we want normal clicking which redirect... | JavaScript |
google.maps.event.addDomListener(window, 'load', function () {
var sw = new google.maps.LatLng(map_data.bounds.minlat, map_data.bounds.minlng);
var ne = new google.maps.LatLng(map_data.bounds.maxlat, map_data.bounds.maxlng);
var bounds = new google.maps.LatLngBounds(sw, ne);
var map = new google.maps.Map(document.... | JavaScript |
// ----------------------------------------------------------------------------
// markItUp! Universal MarkUp Engine, JQuery plugin
// v 1.1.5
// Dual licensed under the MIT and GPL licenses.
// ----------------------------------------------------------------------------
// Copyright (C) 2007-2008 Jay Salvat
// http://... | JavaScript |
// -------------------------------------------------------------------
// markItUp!
// -------------------------------------------------------------------
// Copyright (C) 2008 Jay Salvat
// http://markitup.jaysalvat.com/
// -------------------------------------------------------------------
// MarkDown tags example
//... | JavaScript |
function show_map()
{
var myLatlng = new google.maps.LatLng(49.496675,-102.65625);
var myOptions = {
zoom: 2,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.SATELLITE
}
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
var georssLayer = new google.maps.KmlLayer(rss_url);... | JavaScript |
$(document).ready(function(){
$("form.editor").submit(function () {
var data = $(this).serialize();
data["Preview"] = $("submit[name='Preview']").value();
data["Save"] = $("submit[name='Save']").value();
$.ajax({
url: $(this).attr("action"),
data: data,
dataType: "json",
type: "POST",
success... | JavaScript |
(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){v... | JavaScript |
/*!
* jQuery JavaScript Library v1.11.1
* http://jquery.com/
*
* Includes Sizzle.js
* http://sizzlejs.com/
*
* Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2014-05-01T17:42Z
*/
(function( global, fac... | JavaScript |
//Script by Aneesh of www.bloggerplugins.org
//Released on August 19th August 2009
var relatedTitles = new Array();
var relatedTitlesNum = 0;
var relatedUrls = new Array();
var thumburl = new Array();
function related_results_labels_thumbs(json) {
for (var i = 0; i < json.feed.entry.length; i++) {
var entry = j... | 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 |
// Copyright 2011 Google Inc. All Rights Reserved.
/**
* @fileoverview Holds all logic for Block entity in
* the iap-hello-world game.
* @author dhermes@google.com (Daniel Hermes)
* Requires jQuery
*/
var STATIC_COLORS = ['#3369E8', // BLUE
'#D50F25', // RED
'#009925']... | JavaScript |
// Copyright 2011 Google Inc. All Rights Reserved.
/**
* @fileoverview Holds all logic for Player entity in
* the iap-hello-world game.
* @author dhermes@google.com (Daniel Hermes)
* Requires jQuery, Sprite.js
*/
/**
* Defines basic attributes of player entity
* @param {number} x Starting x position of player.... | 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 |
var ANUT=1;
var ANOO=0;
var ANSR=1;
var ANTID='16lkrf2066s360';
var ANSL='99999|^|#|60190|60172';
ANRTXR();
| JavaScript |
(function(){window.google_new_domain_enabled=1;})()
| JavaScript |
// 2011/01/05 11:01:16
var ANV='5.5';
var ANAXCD=24;
var ANDCC='zzz';
var ANDPEFA;
var ANDPEFAI='ANDEPC11775';
var ANEU='http://tacoda.at.atwola.com/e/e.js?';
var ANME=0;
var ANMU='http://tacoda.at.atwola.com/dastat/ping.js?';
var ANP=2;
var ANPIC;
var ANPIR='Ldummy';
var ANPIDC="L";
var ANPIRF=1;
var ANPIRPSL=0;
var A... | JavaScript |
if(typeof(dclk_isDartRichMediaLoaded) == "undefined") {
dclk_isDartRichMediaLoaded = true;
function dclkWrite(str){
if(dclk_shouldOverride) {
dclk_original_documentWrite(str);
}
else{
document.write(str);
}
}
function dclkWriteln(str){
if(dclk_shouldOverride) {
dclk_original_do... | JavaScript |
var myRand=parseInt(Math.random()*99999999);
var pUrl = "http://guru.sitescout.com/disp?pid=9490C88&rw=1&cm=http%3A%2F%2Fad.bnmla.com%2Fclick%3Fpid%3D62%26zid%3D1469%26aid%3D24617%26cid%3D1528%26advid%3D211%26bnmlack%3D&rand=" + myRand;
var strCreative=''
+ '<IFRAME SRC="'
+ pUrl
+ '" WIDTH="728" HEIGHT="90" ... | JavaScript |
var myRand=parseInt(Math.random()*99999999);
var pUrl = "http://guru.sitescout.com/disp?pid=66E6324&rw=1&cm=http%3A%2F%2Fad.bnmla.com%2Fclick%3Fpid%3D62%26zid%3D618%26aid%3D24603%26cid%3D1526%26advid%3D211%26bnmlack%3D&rand=" + myRand;
var strCreative=''
+ '<IFRAME SRC="'
+ pUrl
+ '" WIDTH="300" HEIGHT="250" ... | JavaScript |
(function(){window.google_new_domain_enabled=1;})()
| JavaScript |
wFORMS.showAlertOnError = false; /* switch off wForms error popup */
wFORMS.preventSubmissionOnEnter = false; /* Enable the enter key to submit in forms */
/*
wFORMS.behaviors['validation'].errMsg_required = "";
wFORMS.behaviors['validation'].errMsg_alpha = "";
wFORMS.behaviors['validation'].errMsg_email = "";
wF... | JavaScript |
function wHELPERS(){
}
wHELPERS.prototype.addEvent=function(_1,_2,fn){
if(!_1){
return;
}
if(_1.attachEvent){
_1["e"+_2+fn]=fn;
_1[_2+fn]=function(){
_1["e"+_2+fn](window.event);
};
_1.attachEvent("on"+_2,_1[_2+fn]);
}else{
if(_1.addEventListener){
_1.addEventListener(_2,fn,false);
}else{
var _4=_1["on"+_2];
if(_4){
_1... | JavaScript |
<!-- Author: Brian Mackenzie -->
<!-- Date: May 2010 -->
<!-- Version: 1.0 -->
function books(numb)
{
document.write('<h3>References and Sources of Information</h3> <p align="justify">For further information on this topic see the following:</p>');
document.write('<ol><li>Advanced Studies in Physical Education a... | JavaScript |
//-- Google Analytics Urchin Module
//-- Copyright 2007 Google, All Rights Reserved.
//-- Urchin On Demand Settings ONLY
var _uacct=""; // set up the Urchin Account
var _userv=1; // service mode (0=local,1=remote,2=both)
//-- UTM User Settings
var _ufsc=1; // set client info flag (1=on|0=off)
var _udn="auto"; ... | JavaScript |
<!-- Author: Brian Mackenzie -->
<!-- Scripts for Sports Coach -->
function GetCookie (name)
{
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen)
{
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
ret... | JavaScript |
<!-- Author: Brian Mackenzie -->
<!-- Date: 11th March 2004 -->
<!-- Version: 1.0 -->
<!-- Function: Calculate the HRM zones -->
<!-- Required by: hrm1.htm -->
<!-- Copyright Brian Mackenzie 2004 -->
function hrcalculate()
{
var age = document.hr.age.value;
var rhr = document.hr.rhr.value;
var ltz =... | JavaScript |
(function(){window.google_new_domain_enabled=1;})()
| JavaScript |
/** Mobile Redirect Helper
*
* Redirects to a wikimedia-mobile installation for viewers on iPhone, iPod
* Touch, Palm Pre, and Android devices.
*
* You can turn off the redirect by setting the cookie "stopMobileRedirect=true"
*/
if ( /(Android|iPhone|iPod|webOS|NetFront|Opera Mini|SEMC-Browser|PlayStation Por... | JavaScript |
/*
* Copyright (C) 2008, 2009, 2010 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) an... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later vers... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later vers... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009, 2010 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) an... | JavaScript |
{
// $Date: 2009-11-16 18:13:48 +0200 $
"errorInitBufferCanvas": "Error: adding the new buffer canvas element failed.",
"errorInitContext": "Error while initializing the canvas context.",
"errorElementNotFound": "Error: the following element was not found: {id}.",
"noComputedStyle": "Error: window.getCompute... | JavaScript |
{
// $Date: 2009-11-08 19:54:46 +0200 $
// TODO: try jsdoc-toolkit on this json (!)
/**
* The list of available languages. This associated language IDs to their
* language titles.
*
* @type Object
*/
"languages": {
// Besides the language title, you may also tell the file name. The 'file'
... | JavaScript |
/*
* Copyright (C) 2008, 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
/*
* Copyright (C) 2008, 2009, 2010 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) an... | JavaScript |
/*
http://www.JSON.org/json2.js
2009-04-16
Public Domain.
NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
See http://www.JSON.org/js.html
This file creates a global JSON object containing two methods: stringify
and parse.
JSON.stringify(value, replacer, space)
... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-11 23:12:24 +0300 $
*/
var PaintWebInstance = new (function () {
var _self = this;
this.layer = {canvas: null, context: null};
this.tool = null;
this.doc = document;
this.win = window;
function init () {
profiler.start('init');... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-11 23:34:52 +0300 $
*/
var PaintWebInstance = new (function () {
var _self = this;
this.layer = {canvas: null, context: null};
this.tool = null;
this.doc = document;
this.win = window;
function init () {
profiler.start('init');... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-12 15:35:12 +0300 $
*/
var PaintWebInstance = new (function () {
var _self = this;
this.layer = {canvas: null, context: null};
this.tool = null;
this.doc = document;
this.win = window;
function init () {
profiler.start('init');... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-17 22:58:52 +0300 $
*/
/**
* @author <a lang="ro" href="http://www.robodesign.ro/mihai">Mihai Şucan</a>
* @fileOverview Minimal code used for aiding debugging PaintWeb.
*/
// Opera compatibility
if (!window.console) {
/**
* @namespace ... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-11 20:20:59 +0300 $
*/
var PaintWebInstance = new (function () {
var _self = this;
this.layer = {canvas: null, context: null};
this.tool = null;
this.doc = document;
this.win = window;
function init () {
profiler.start('init');... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-13 13:46:51 +0300 $
*/
function tool_pencil (app) {
profiler.start('pencil.constructor');
var _self = this,
context = app.layer.context,
mouse = app.mouse,
width = app.image.width,
height = app.image.height;
this... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-13 13:47:25 +0300 $
*/
function tool_pencil (app) {
profiler.start('pencil.constructor');
var _self = this,
context = app.layer.context,
mouse = app.mouse,
width = app.image.width,
height = app.image.height;
this... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-12 20:18:25 +0300 $
*/
var PaintWebInstance = new (function () {
var _self = this;
this.layer = {canvas: null, context: null};
this.tool = null;
this.doc = document;
this.win = window;
function init () {
profiler.start('init');... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-13 14:32:21 +0300 $
*/
function tool_pencil (app) {
profiler.start('pencil.constructor');
var _self = this,
context = app.layer.context,
mouse = app.mouse,
width = app.image.width,
height = app.image.height;
this... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-25 21:48:09 +0300 $
*/
function tool_pencil (app) {
profiler.start('pencil.constructor');
var _self = this,
context = app.layer.context,
mouse = app.mouse,
width = app.image.width,
height = app.image.height,
t... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-12 16:14:01 +0300 $
*/
var PaintWebInstance = new (function () {
var _self = this;
this.layer = {canvas: null, context: null};
this.tool = null;
this.doc = document;
this.win = window;
function init () {
profiler.start('init');... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-12 18:23:21 +0300 $
*/
function tool_pencil (app) {
profiler.start('pencil.constructor');
var _self = this,
context = app.layer.context,
mouse = app.mouse,
width = app.image.width,
height = app.image.height;
this... | JavaScript |
/*
* © 2009 ROBO Design
* http://www.robodesign.ro
*
* $Date: 2009-05-13 19:22:36 +0300 $
*/
function tool_pencil (app) {
profiler.start('pencil.constructor');
var _self = this,
context = app.layer.context,
mouse = app.mouse,
width = app.image.width,
height = app.image.height,
t... | JavaScript |
{
// $Date: 2009-11-08 20:39:21 +0200 $
/**
* The list of available languages. This associated language IDs to their
* language titles.
*
* @type Object
*/
"languages": {
// Besides the language title, you may also tell the file name. The 'file'
// property needs to be relative to the Pa... | JavaScript |
/*
* Copyright (C) 2009 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later vers... | JavaScript |
/*
* Copyright (C) 2009, 2010 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | JavaScript |
tinyMCE.addI18n('en.paintweb_dlg',{
dlg_title: 'Create a new image',
widthLabel: 'Width: ',
heightLabel: 'Height: ',
bgrColorLabel: 'Background color: ',
imgTitleLabel: 'Title: ',
altTextLabel: 'Alternate text: ',
altTextTitle: 'This text is displayed when the image cannot render.',
});
| JavaScript |
tinyMCE.addI18n('en.paintweb',{
toolbarButton: 'Edit the selected image in PaintWeb. If no image is selected, then you can create a new drawing.',
overlayButton: 'Edit',
contextMenuEdit: 'Edit the image in PaintWeb',
overlayLoading: 'PaintWeb is loading...',
statusImageEditing: 'You are editing an image fr... | JavaScript |
#! /usr/bin/env node
/*
* Copyright (C) 2011 Mihai Şucan
*
* This file is part of PaintWeb.
*
* PaintWeb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your o... | JavaScript |
/**
* SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
*
* SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*
*/
if(typeof deconcept=="undefined"){var deconcept=new Object();}
if(typeof deconcept.... | JavaScript |
/*----------------------------------------------------------------------------\
| IE Canvas 1.0 |
| Emulation Initialization Script |
|----------------------------------------------------------------------------... | JavaScript |
var txt=new Array("metan", "matan", "govno", "bydlo", "scientist", "priest", "robot", "unhuman", "religion", "smeh", "humanist")
var elements={metan:0, matan:0, govno:0, bydlo:0, scientist:0,priest:0, robot:0,unhuman:0, religion:0, smeh:0, humanist:0};
/////////////////////////////////////////////////////////////////... | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.