code
stringlengths
1
2.08M
language
stringclasses
1 value
(function ($) { Drupal.behaviors.commentFieldsetSummaries = { attach: function (context) { $('fieldset.comment-node-settings-form', context).drupalSetSummary(function (context) { return Drupal.checkPlain($('.form-item-comment input:checked', context).next('label').text()); }); // Provide the summ...
JavaScript
(function ($) { Drupal.behaviors.openid = { attach: function (context) { var loginElements = $('.form-item-name, .form-item-pass, li.openid-link'); var openidElements = $('.form-item-openid-identifier, li.user-link'); var cookie = $.cookie('Drupal.visitor.openid_identifier'); // This behavior attach...
JavaScript
/** * @file * Attaches the behaviors for the Overlay parent pages. */ (function ($) { /** * Open the overlay, or load content into it, when an admin link is clicked. */ Drupal.behaviors.overlayParent = { attach: function (context, settings) { if (Drupal.overlay.isOpen) { Drupal.overlay.makeDocumentUn...
JavaScript
/** * @file * Attaches the behaviors for the Overlay child pages. */ (function ($) { /** * Attach the child dialog behavior to new content. */ Drupal.behaviors.overlayChild = { attach: function (context, settings) { // Make sure this behavior is not processed more than once. if (this.processed) { ...
JavaScript
(function ($) { Drupal.behaviors.filterStatus = { attach: function (context, settings) { $('#filters-status-wrapper input.form-checkbox', context).once('filter-status', function () { var $checkbox = $(this); // Retrieve the tabledrag row belonging to this filter. var $row = $('#' + $checkbox.at...
JavaScript
(function ($) { /** * Automatically display the guidelines of the selected text format. */ Drupal.behaviors.filterGuidelines = { attach: function (context) { $('.filter-guidelines', context).once('filter-guidelines') .find(':header').hide() .closest('.filter-wrapper').find('select.filter-list') ...
JavaScript
/** * @file * Attaches behaviors for the Dashboard module. */ (function ($) { /** * Implements Drupal.behaviors for the Dashboard module. */ Drupal.behaviors.dashboard = { attach: function (context, settings) { $('#dashboard', context).once(function () { $(this).prepend('<div class="customize clearfi...
JavaScript
(function ($) { Drupal.color = { logoChanged: false, callback: function(context, settings, form, farb, height, width) { // Change the logo to be the real one. if (!this.logoChanged) { $('#preview #preview-logo img').attr('src', Drupal.settings.color.logo); this.logoChanged = true;...
JavaScript
jQuery(document).ready(function() { jQuery('#klantenreactieFotoUploader .actionBrowse').click(function() { var itemLocator = jQuery(jQuery(this)).parent().parent(); window.send_to_editor = function(html) { imgurlInput = jQuery('img',html).attr('src'); imgurl = imgurlInput.replace("http://"+...
JavaScript
$(document).ready(function() { $('#dateLastVisitMin').datepicker(); $('#dateLastVisitMax').datepicker(); $('#dateLastVisit').datepicker(); $('#DoB').datepicker(); $('#divDoB').hide(); $('#divDateLastVisit').hide(); // add click event to btnShowDoB $('#btnShowDoB').click(function() { $('#divD...
JavaScript
(function($){ $.fn.validationEngineLanguage = function(){ }; $.validationEngineLanguage = { newLang: function(){ $.validationEngineLanguage.allRules = { "required": { // Add your regex rules here, you can take telephone as an example "regex": "n...
JavaScript
/* * Inline Form Validation Engine 2.6.2, jQuery plugin * * Copyright(c) 2010, Cedric Dugas * http://www.position-absolute.com * * 2.0 Rewrite by Olivier Refalo * http://www.crionics.com * * Form validation engine allowing custom regex rules to be added. * Licensed under the MIT License */ (func...
JavaScript
// Copyright 2010 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); you // may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in ...
JavaScript
// Copyright 2010 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); you // may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in ...
JavaScript
var assert = require('assert'), puts = require('util').puts, read = require('fs').readFileSync, Schema = require('protobuf_for_node').Schema; /* hack to make the tests pass with node v0.3.0's new Buffer model */ /* copied from http://github.com/bnoordhuis/node-iconv/blob/master/test.js */ assert.bufferEqua...
JavaScript
// Copyright (c) 2010 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. var page = { startX: 150, startY: 150, endX: 400, endY: 300, moveX: 0, moveY: 0, pageWidth: 0, pageHeight: 0, visibleWidt...
JavaScript
var __screenCapturePageContext__ = { clone: function(object) { function StubObj() { } StubObj.prototype = object; var newObj = new StubObj(); newObj.getInternalObject = function() { return this.__proto__; } newObj.toString = function() { try { return this.__proto_...
JavaScript
(function(){ /** * ajax is a encapsulated function that used to send data to server * asynchronously. It uses XMLHttpRequest object to send textual or binary * data through HTTP method GET, POST etc. It can custom request method, * request header. Response can be parsed automatically by MIME type of ...
JavaScript
// Import the needed java packages and classes importPackage(java.util); importClass(javax.swing.JOptionPane) function putDate() { TARGET.replaceSelection("This is a dummy proc that inserts the Current Date:\n" + new Date()); TARGET.replaceSelection("\nTab Size of doc = " + AU.getTabSize(TARGET)); }
JavaScript
// =============== GLOBALS ============== // to identify differnt tab var tab; // Bookmarked page database var SearchMarkDB = {}; // History page database var SearchHistoryDB = {}; //timer var startTime; var endTime; // Communicate with extension UI var gPort; var keywords; // Used to highlight searched keywords in ...
JavaScript
/* * angular-ui-bootstrap * http://angular-ui.github.io/bootstrap/ * Version: 0.12.0 - 2014-11-16 * License: MIT */ angular.module("ui.bootstrap", ["ui.bootstrap.tpls", "ui.bootstrap.transition","ui.bootstrap.collapse","ui.bootstrap.accordion","ui.bootstrap.alert","ui.bootstrap.bindHtml","ui.bootstrap.buttons","u...
JavaScript
function G() { return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1) } var guid = (G() + G() + "-" + G() + "-" + G() + "-" + G() + "-" + G() + G() + G()) .toUpperCase(); function init() { // Listen for search results from backend chrome.extension.onConnect.addListener(function(port) { if (port....
JavaScript
function load() { //var selectedElement = document.getElementById('selected'); //var sel = window.getSelection(); //sel.removeAllRanges(); //var range = document.createRange(); //range.selectNode(selectedElement); //sel.addRange(range); var rateElement = document.getElementById('rate'); var pitchEleme...
JavaScript
$("#login").submit( var self=$(this), mail = self.find('input[name=mail]'), password = self.find('input[name=password]'), mail_val = ma il.val(), password_val = password.val() ; if(!mail_val){ mail.focus(); return false } if(!password_val){ password.focus() return false } $.phone( this.ac...
JavaScript
$(document).ready(function(){ //welcome page setTimeout(function(){ $('#welcomePage').fadeOut(500,function(){ $('#phoneIndex').show(); }); },1500); //从Index进入AccountList $('#phoneIndexFooter').click(function(){ $('#phoneIndex').fadeOut(800,function(){ $('#phoneAccountList').fadeIn(500); ...
JavaScript
var mClassify = null, sClassify = null; $(document).ready(function(){ $('.container div.taskList').mousedown(function(){ $(this).css('background','orange'); }); $('.container div.taskList').mouseup(function(){ $(this).css('background',''); }); })
JavaScript
$(document).ready(function(){ document.onclick = function (event){ var e = event || window.event; var elem = e.srcElement||e.target; while(elem){ if(elem.id == "more"){ return; } elem = elem.parentNode; } //隐藏account下拉菜单 $('.more').ani...
JavaScript
__PHONE_CALLBACK = {} $.extend({ phone : function(url, data, callback){ if ( jQuery.isFunction( data ) ) { callback = data; data = undefined; } if(callback){ var __callback = data['__callback'] = (""+ Math.random()).slice(2)+$.now(); __PHONE_CALLBACK[__callback] = function(response){ callback...
JavaScript
document.createElement('header'); document.createElement('nav'); document.createElement('section'); document.createElement('article'); document.createElement('aside'); document.createElement('footer'); document.createElement('hgroup'); $(document).ready(function () { $('.section-content,#status-container').addClas...
JavaScript
(function () { //var host = "192.168.0.100", var host = window.location.hostname, // Encapsulation of the vlc plugin Stream = function (object,type,callbacks) { var restarting = false, starting = false, error = false, restartTimer, startTimer, // Register an event listener registerE...
JavaScript
(function () { var translations = { en: { 1:"About", 2:"Return", 3:"Change quality settings", 4:"Flash/Vibrator", 5:"Click on the torch to enable or disable the flash", 6:"Play a prerecorded sound", 7:"Connect !!", 8:"...
JavaScript
/* tip_followscroll.js v. 1.1 The latest version is available at http://www.walterzorn.com or http://www.devira.com or http://www.walterzorn.de Initial author: Walter Zorn Last modified: 21.6.2007 Extension for the tooltip library wz_tooltip.js. Lets a "sticky" tooltip keep its position inside the clientarea if the ...
JavaScript
/* tip_centerwindow.js v. 1.2 The latest version is available at http://www.walterzorn.com or http://www.devira.com or http://www.walterzorn.de Initial author: Walter Zorn Last modified: 23.6.2007 Extension for the tooltip library wz_tooltip.js. Centers a sticky tooltip in the window's visible clientarea, optionall...
JavaScript
/* This notice must be untouched at all times. wz_tooltip.js v. 4.12 The latest version is available at http://www.walterzorn.com or http://www.devira.com or http://www.walterzorn.de Copyright (c) 2002-2007 Walter Zorn. All rights reserved. Created 1.12.2002 by Walter Zorn (Web: http://www.walterzorn.com ) Last mod...
JavaScript
function webstartVersionCheck(versionString) { if (!(navigator.mimeTypes && navigator.mimeTypes.length))return false; // Mozilla may not recognize new plugins without this refresh navigator.plugins.refresh(false); // First, determine if Web Start is available if (navigator.mimeTypes['application/x-java-jnlp-f...
JavaScript
// ========================================================================= // getRealPopup v1.42 // by John Norton - http://www.amplifystudios.com // Last Modified: 6/3/08 // // Licensed under the Creative Commons Attribution 2.5 License - http://creativecommons.org/licenses/by/2.5/ // - Free for u...
JavaScript
// Place your application-specific JavaScript functions and classes here // This file is automatically included by javascript_include_tag :defaults
JavaScript
// Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitati...
JavaScript
if(typeof Class == "undefined") { Class = { create: function() { return function() { this.initialize.apply(this, arguments); } } } } var JavaScriptExecuter = Class.create(); JavaScriptExecuter.prototype = { initialize: function(url) { this.url = url; this.osrc = null; }, ...
JavaScript
/* Date Format 1.1 (c) 2007 Steven Levithan <stevenlevithan.com> MIT license With code by Scott Trenda (Z and o flags, and enhanced brevity) */ /*** dateFormat Accepts a date, a mask, or a date and a mask. Returns a formatted version of the given date. The date defaults to the current date/time. The...
JavaScript
// Place your application-specific JavaScript functions and classes here // This file is automatically included by javascript_include_tag :defaults
JavaScript
function ShowText(elementId, description){ var elem = document.getElementById(elementId); if(elem){ elem.innerHTML = description; } }
JavaScript
if (typeof Prototype == 'undefined') { warning = "ActiveScaffold Error: Prototype could not be found. Please make sure that your application's layout includes prototype.js (e.g. <%= javascript_include_tag :defaults %>) *before* it includes active_scaffold.js (e.g. <%= active_scaffold_includes %>)."; alert(warning);...
JavaScript
function NukeBadChars(textElement) { var strTemp = textElement.value; for (i=0; i < strTemp.length; i++) { if ( (strTemp.charAt(i) == "'") || (strTemp.charAt(i) == '"')) { strTemp = strTemp.substr(0,i) + strTemp.substr(i + 1); i--; } } textElement.value = strTemp } function NumberCleanUp(nu...
JavaScript
// TODO Change to dropping the name property off the input element when in example mode TextFieldWithExample = Class.create(); TextFieldWithExample.prototype = { initialize: function(inputElementId, defaultText, options) { this.setOptions(options); this.input = $(inputElementId); this.name = this.inpu...
JavaScript
/** Copyright (c) 2005, Brad Neuberg, bkn3@columbia.edu http://codinginparadise.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation...
JavaScript
/** * * Copyright 2005 Sabre Airline Solutions * * 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 b...
JavaScript
// Place your application-specific JavaScript functions and classes here // This file is automatically included by javascript_include_tag :defaults
JavaScript
// script.aculo.us scriptaculous.js v1.8.1, Thu Jan 03 22:07:12 -0500 2008 // Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software")...
JavaScript
/** * Copyright (c) 2006, David Spurr (http://www.defusion.org.uk/) * 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 copy...
JavaScript
/* Copyright Mihai Bazon, 2002-2005 | www.bazon.net/mishoo * ----------------------------------------------------------- * * The DHTML Calendar, version 1.0 "It is happening again" * * Details and latest version at: * www.dynarch.com/projects/calendar * * This script is developed by Dynarch.com. Visit us at...
JavaScript
// ** I18N Calendar._DN = new Array ("Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă", "Duminică"); Calendar._SDN_len = 2; Calendar._MN = new Array ("Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie");...
JavaScript
// ** I18N Afrikaans Calendar._DN = new Array ("Sondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrydag", "Saterdag", "Sondag"); Calendar._MN = new Array ("Januarie", "Februarie", "Maart", "April", "Mei", "Junie", "Julie", "Augustus", "September", "Oktober", "November", "Desember"); // toolti...
JavaScript
// ** I18N Calendar._DN = new Array ("Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"); Calendar._SDN_len = 2; Calendar._MN = new Array ("Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December")...
JavaScript
// ** I18N // Calendar pt_BR language // Author: Adalberto Machado, <betosm@terra.com.br> // Encoding: any // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real internationalized world. Also please //...
JavaScript
// ** I18N // Calendar KO (Korean) language // Author: Mihai Bazon, <mihai_bazon@yahoo.com> // Translation: Yourim Yi <yyi@yourim.net> // Encoding: ASCII with \uXXXX unicode escapes // lang : ko // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly ...
JavaScript
// ** I18N // Calendar NO language // Author: Daniel Holmen, <daniel.holmen@ciber.no> // Encoding: UTF-8 // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real internationalized world. Also please // i...
JavaScript
/* calendar-cs-win.js language: Czech encoding: windows-1250 author: Lubos Jerabek (xnet@seznam.cz) Jan Uhlir (espinosa@centrum.cz) */ // ** I18N Calendar._DN = new Array('Neděle','Pondělí','Úterý','Středa','Čtvrtek','Pátek','Sobota','Neděle'); Calendar._SDN = new Array('Ne','Po','Út','St','Čt','Pá','So...
JavaScript
// ** I18N // Calendar PL language // Author: Dariusz Pietrzak, <eyck@ghost.anime.pl> // Author: Janusz Piwowarski, <jpiw@go2.pl> // Encoding: utf-8 // Distributed under the same terms as the calendar itself. Calendar._DN = new Array ("Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobot...
JavaScript
// ** I18N // Calendar EN language // Author: Mihai Bazon, <mihai_bazon@yahoo.com> // Translation: Yourim Yi <yyi@yourim.net> // Encoding: UTF-8 // lang : ko // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer...
JavaScript
// ** I18N // Calendar FR language // Author: Mihai Bazon, <mihai_bazon@yahoo.com> // Encoding: ASCII with \uXXXX unicode escapes // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real internationalized...
JavaScript
// ** I18N // Calendar EN language // Author: Mihai Bazon, <mihai_bazon@yahoo.com> // Translator: Fabio Di Bernardini, <altraqua@email.it> // Encoding: any // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer t...
JavaScript
// ** I18N // Calendar EN language // Author: Mihai Bazon, <mishoo@infoiasi.ro> // Encoding: any // Translator : Niko <nikoused@gmail.com> // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real...
JavaScript
/* Slovenian language file for the DHTML Calendar version 0.9.2 * Author David Milost <mercy@volja.net>, January 2004. * Feel free to use this script under the terms of the GNU Lesser General * Public License, as long as you do not remove or alter this notice. */ // full day names Calendar._DN = new Array ("Ne...
JavaScript
// ** I18N // Calendar EN language // Author: Idan Sofer, <idan@idanso.dyndns.org> // Encoding: UTF-8 // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real internationalized world. Also please // incl...
JavaScript
/* Croatian language file for the DHTML Calendar version 0.9.2 * Author Krunoslav Zubrinic <krunoslav.zubrinic@vip.hr>, June 2003. * Feel free to use this script under the terms of the GNU Lesser General * Public License, as long as you do not remove or alter this notice. */ Calendar._DN = new Array ("Nedjelja",...
JavaScript
// ** I18N // Calendar pt-BR language // Author: Fernando Dourado, <fernando.dourado@ig.com.br> // Encoding: any // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real internationalized world. Also pl...
JavaScript
// ** I18N // Calendar SK language // Author: Peter Valach (pvalach@gmx.net) // Encoding: utf-8 // Last update: 2003/10/29 // Distributed under the same terms as the calendar itself. // full day names Calendar._DN = new Array ("NedeÄľa", "Pondelok", "Utorok", "Streda", "Ĺ tvrtok", "Piatok", "Sobota", "NedeÄľa"...
JavaScript
// ** I18N // Calendar EN language // Author: Mihai Bazon, <mihai_bazon@yahoo.com> // Encoding: any // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real internationalized world. Also please // includ...
JavaScript
// ** I18N Calendar._DN = new Array ("Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο", "Κυριακή"); Calendar._SDN = new Array ("Κυ", "Δε", "Tρ", "Τε", "Πε", "Πα", "Σα", "Κυ"); Calendar._MN = new Array ("Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιο...
JavaScript
// Calendar ALBANIAN language //author Rigels Gordani rige@hotmail.com // ditet Calendar._DN = new Array ("E Diele", "E Hene", "E Marte", "E Merkure", "E Enjte", "E Premte", "E Shtune", "E Diele"); //ditet shkurt Calendar._SDN = new Array ("Die", "Hen", "Mar", "Mer", "Enj", "Pre", "Sht", "Die"); // muajt Calendar._M...
JavaScript
// ** I18N // Calendar EN language // Author: Mihai Bazon, <mihai_bazon@yahoo.com> // Encoding: ASCII with \uXXXX unicode escapes // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real internationalized...
JavaScript
// ** I18N // Calendar PL language // Author: Artur Filipiak, <imagen@poczta.fm> // January, 2004 // Encoding: UTF-8 Calendar._DN = new Array ("Niedziela", "Poniedzia\u0142ek", "Wtorek", "\u015aroda", "Czwartek", "Pi\u0105tek", "Sobota", "Niedziela"); Calendar._SDN = new Array ("N", "Pn", "Wt", "\u015ar", "Cz", "Pt", ...
JavaScript
// ** I18N // Calendar ES (spanish) language // Author: Mihai Bazon, <mihai_bazon@yahoo.com> // Updater: Servilio Afre Puentes <servilios@yahoo.com> // Updated: 2004-06-03 // Encoding: ISO-Latin-1 // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongl...
JavaScript
// ** I18N // Calendar RU language // Translation: Sly Golovanov, http://golovanov.net, <sly@golovanov.net> // Encoding: any // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real internationalized worl...
JavaScript
// ** I18N // Calendar DE language // Author: Jack (tR), <jack@jtr.de> // Encoding: ASCII with \uXXXX unicode escapes // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real internationalized world. Als...
JavaScript
// ** I18N // Calendar EN language // Author: Mihai Bazon, <mihai_bazon@yahoo.com> // Translator: Fabio Di Bernardini, <altraqua@email.it> // Encoding: any // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer t...
JavaScript
// ** I18N // Calendar LT language // Author: Martynas Majeris, <martynas@solmetra.lt> // Encoding: UTF-8 // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real internationalized world. Also please // ...
JavaScript
// ** I18N // Calendar PL language // Author: Artur Filipiak, <imagen@poczta.fm> // January, 2004 // Encoding: UTF-8 Calendar._DN = new Array ("Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota", "Niedziela"); Calendar._SDN = new Array ("N", "Pn", "Wt", "Śr", "Cz", "Pt", "So", "N"); // Firs...
JavaScript
// ** I18N // Calendar FI language (Finnish, Suomi) // Author: Jarno Käyhkö, <gambler@phnet.fi> // Encoding: UTF-8 // Distributed under the same terms as the calendar itself. // full day names Calendar._DN = new Array ("Sunnuntai", "Maanantai", "Tiistai", "Keskiviikko", "Torstai", "Perjantai", "Lauantai", "Su...
JavaScript
// ** I18N Calendar._DN = new Array ("Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"); Calendar._MN = new Array ("Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"); // tooltips Calendar._...
JavaScript
// ** I18N // Calendar DA language // Author: Michael Thingmand Henriksen, <michael (a) thingmand dot dk> // Encoding: any // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real internationalized world. ...
JavaScript
// ** I18N // Calendar big5-utf8 language // Author: Gary Fu, <gary@garyfu.idv.tw> // Encoding: utf8 // Distributed under the same terms as the calendar itself. // For translators: please use UTF-8 if possible. We strongly believe that // Unicode is the answer to a real internationalized world. Also please // inclu...
JavaScript
///////////////////////////////////////////////////////////////////////////////////// // Then Modified by: // Ed Moss // // Modified and enhanced by: // Nathaniel Brown - http://nshb.net // Email: nshb@inimit.com // // Created by: // Simon Willison - http://simon.incutio.com // // Licen...
JavaScript
/* Copyright Mihai Bazon, 2002, 2003 | http://dynarch.com/mishoo/ * --------------------------------------------------------------------------- * * The DHTML Calendar * * Details and latest version at: * http://dynarch.com/mishoo/calendar.epl * * This script is distributed under the GNU Lesser General Public...
JavaScript
// script.aculo.us builder.js v1.8.1, Thu Jan 03 22:07:12 -0500 2008 // Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) // // script.aculo.us is freely distributable under the terms of an MIT-style license. // For details, see the script.aculo.us web site: http://script.aculo.us/ va...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/Focus.js function WebForm_FindFirstFocusableChild(control) { if (!control || !(control.tagName)) { return null; } var tagName = control.tagName.toLowerCase(); if (tagName == "undefined") { return null; } var children = contr...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/WebForms.js function WebForm_PostBackOptions(eventTarget, eventArgument, validation, validationGroup, actionUrl, trackFocus, clientSubmit) { this.eventTarget = eventTarget; this.eventArgument = eventArgument; this.validation = validation; this.validati...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/WebUIValidation.js var Page_ValidationVer = "125"; var Page_IsValid = true; var Page_BlockSubmit = false; var Page_InvalidControlToBeFocused = null; var Page_TextTypes = /^(text|password|file|search|tel|url|email|number|range|color|datetime|date|month|week|time|dateti...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/SmartNav.js var snSrc; if ((typeof(window.__smartNav) == "undefined") || (window.__smartNav == null)) { window.__smartNav = new Object(); window.__smartNav.update = function() { var sn = window.__smartNav; var fd; document.detac...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/Menu.js var __rootMenuItem; var __menuInterval; var __scrollPanel; var __disappearAfter = 500; function Menu_ClearInterval() { if (__menuInterval) { window.clearInterval(__menuInterval); } } function Menu_Collapse(item) { Menu_SetRoot(item); ...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/WebParts.js var __wpm = null; function Point(x, y) { this.x = x; this.y = y; } function __wpTranslateOffset(x, y, offsetElement, relativeToElement, includeScroll) { while ((typeof(offsetElement) != "undefined") && (offsetElement != null) && (offsetElemen...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/MenuStandards.js if (!window.Sys) { window.Sys = {}; } if (!Sys.WebForms) { Sys.WebForms = {}; } Sys.WebForms.Menu = function(options) { this.items = []; this.depth = options.depth || 1; this.parentMenuItem = options.parentMenuItem; this.element = S...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/GridView.js function GridView() { this.pageIndex = null; this.sortExpression = null; this.sortDirection = null; this.dataKeys = null; this.createPropertyString = GridView_createPropertyString; this.setStateField = GridView_setStateValue; ...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/TreeView.js function TreeView_HoverNode(data, node) { if (!data) { return; } node.hoverClass = data.hoverClass; WebForm_AppendToClassName(node, data.hoverClass); if (__nonMSDOMBrowser) { node = node.childNodes[node.childNodes.len...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/DetailsView.js function DetailsView() { this.pageIndex = null; this.dataKeys = null; this.createPropertyString = DetailsView_createPropertyString; this.setStateField = DetailsView_setStateValue; this.getHiddenFieldContents = DetailsView_getHiddenF...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/Focus.js function WebForm_FindFirstFocusableChild(control) { if (!control || !(control.tagName)) { return null; } var tagName = control.tagName.toLowerCase(); if (tagName == "undefined") { return null; } var children = contr...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/WebForms.js function WebForm_PostBackOptions(eventTarget, eventArgument, validation, validationGroup, actionUrl, trackFocus, clientSubmit) { this.eventTarget = eventTarget; this.eventArgument = eventArgument; this.validation = validation; this.validati...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/WebUIValidation.js var Page_ValidationVer = "125"; var Page_IsValid = true; var Page_BlockSubmit = false; var Page_InvalidControlToBeFocused = null; var Page_TextTypes = /^(text|password|file|search|tel|url|email|number|range|color|datetime|date|month|week|time|dateti...
JavaScript
//CdnPath=http://ajax.aspnetcdn.com/ajax/4.5/6/SmartNav.js var snSrc; if ((typeof(window.__smartNav) == "undefined") || (window.__smartNav == null)) { window.__smartNav = new Object(); window.__smartNav.update = function() { var sn = window.__smartNav; var fd; document.detac...
JavaScript