code stringlengths 1 2.08M | language stringclasses 1
value |
|---|---|
/**
* List compiled by mystix on the extjs.com forums.
* Thank you Mystix!
*
* English Translations
* updated to 2.2 by Condor (8 Aug 2008)
*/
Ext.onReady(function() {
var cm = Ext.ClassManager,
exists = Ext.Function.bind(cm.get, cm);
if (Ext.Updater) {
Ext.Updater.defaults.indicatorText ... | JavaScript |
/**
* Estonian Translations
* By Rene Saarsoo (2012-05-28)
*/
Ext.onReady(function() {
var cm = Ext.ClassManager,
exists = Ext.Function.bind(cm.get, cm);
if (Ext.Updater) {
Ext.Updater.defaults.indicatorText = '<div class="loading-indicator">Laen...</div>';
}
Ext.define("Ext.locale.... | JavaScript |
(function() {
var url = getUrl(),
thisDir = getDir(url),
params = getMergedQueryParams(url),
theme = getTheme(params),
css = getCss(theme),
js = getJs(theme);
document.write(Ext.String.format('<link rel="stylesheet" type="text/css" href="{0}/../../resources/css/ext-{1}.c... | JavaScript |
// some data used in the examples
Ext.namespace('Ext.example');
Ext.example.states = [
['AL', 'Alabama', 'The Heart of Dixie'],
['AK', 'Alaska', 'The Land of the Midnight Sun'],
['AZ', 'Arizona', 'The Grand Canyon State'],
['AR', 'Arkansas', 'The Natural State'],
['CA', 'Califor... | JavaScript |
Ext.example = function(){
var msgCt;
function createBox(t, s){
// return ['<div class="msg">',
// '<div class="x-box-tl"><div class="x-box-tr"><div class="x-box-tc"></div></div></div>',
// '<div class="x-box-ml"><div class="x-box-mr"><div class="x-box-mc"><h3>', t, '</h3>... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
var windowIndex = 0;
Ext.define('MyDesktop.BogusModule', {
extend: 'Ext.ux.desktop.Module',
init : function(){
this.launcher = {
text: 'Window '+(++windowIndex),
... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
/**
* @class Ext.ux.desktop.Desktop
* @extends Ext.panel.Panel
* <p>This class manages the wallpaper, shortcuts and taskbar.</p>
*/
Ext.define('Ext.ux.desktop.Desktop', {
extend: 'Ext.pa... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
Ext.define('Ext.ux.desktop.Module', {
mixins: {
observable: 'Ext.util.Observable'
},
constructor: function (config) {
this.mixins.observable.constructor.call(this, c... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
// From code originally written by David Davis (http://www.sencha.com/blog/html5-video-canvas-and-ext-js/)
/* -NOTICE-
* For HTML5 video to work, your server must
* send the right content type, fo... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
Ext.define('Ext.ux.desktop.StartMenu', {
extend: 'Ext.panel.Panel',
requires: [
'Ext.menu.Menu',
'Ext.toolbar.Toolbar'
],
ariaRole: 'menu',
cls: 'x-menu ux... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
/**
* @class Ext.ux.desktop.Wallpaper
* @extends Ext.Component
* <p>This component renders an image that stretches to fill the component.</p>
*/
Ext.define('Ext.ux.desktop.Wallpaper', {
... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
/**
* @class Ext.ux.desktop.ShortcutModel
* @extends Ext.data.Model
* This model defines the minimal set of fields for desktop shortcuts.
*/
Ext.define('Ext.ux.desktop.ShortcutModel', {
... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
Ext.define('Ext.ux.desktop.App', {
mixins: {
observable: 'Ext.util.Observable'
},
requires: [
'Ext.container.Viewport',
'Ext.ux.desktop.Desktop'
],
... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
/**
* @class Ext.ux.desktop.TaskBar
* @extends Ext.toolbar.Toolbar
*/
Ext.define('Ext.ux.desktop.TaskBar', {
extend: 'Ext.toolbar.Toolbar', // TODO - make this a basic hbox panel...
... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
Ext.define('MyDesktop.WallpaperModel', {
extend: 'Ext.data.Model',
fields: [
{ name: 'text' },
{ name: 'img' }
]
});
| JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
Ext.define('MyDesktop.Settings', {
extend: 'Ext.window.Window',
uses: [
'Ext.tree.Panel',
'Ext.tree.View',
'Ext.form.field.Checkbox',
'Ext.layout.contain... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
Ext.define('MyDesktop.AccordionWindow', {
extend: 'Ext.ux.desktop.Module',
requires: [
'Ext.data.TreeStore',
'Ext.layout.container.Accordion',
'Ext.toolbar.Space... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
Ext.define('MyDesktop.TabWindow', {
extend: 'Ext.ux.desktop.Module',
requires: [
'Ext.tab.Panel'
],
id:'tab-win',
init : function(){
this.launcher = {
... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
Ext.define('MyDesktop.SystemStatus', {
extend: 'Ext.ux.desktop.Module',
requires: [
'Ext.chart.*'
],
id: 'systemstatus',
refreshRate: 500,
init : function() {
... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
Ext.define('MyDesktop.App', {
extend: 'Ext.ux.desktop.App',
requires: [
'Ext.window.MessageBox',
'Ext.ux.desktop.ShortcutModel',
'MyDesktop.SystemStatus',
... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
Ext.define('MyDesktop.BogusMenuModule', {
extend: 'MyDesktop.BogusModule',
init : function() {
this.launcher = {
text: 'More items',
iconCls: 'bogus',
... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
Ext.define('MyDesktop.GridWindow', {
extend: 'Ext.ux.desktop.Module',
requires: [
'Ext.data.ArrayStore',
'Ext.util.Format',
'Ext.grid.Panel',
'Ext.grid.R... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
// From code originally written by David Davis (http://www.sencha.com/blog/html5-video-canvas-and-ext-js/)
Ext.define('MyDesktop.VideoWindow', {
extend: 'Ext.ux.desktop.Module',
uses: [
... | JavaScript |
/*!
* Ext JS Library 4.0
* Copyright(c) 2006-2011 Sencha Inc.
* [email protected]
* http://www.sencha.com/license
*/
Ext.define('MyDesktop.Notepad', {
extend: 'Ext.ux.desktop.Module',
requires: [
'Ext.form.field.HtmlEditor'
//'Ext.form.field.TextArea'
],
id:'notepad',
ini... | JavaScript |
$.TE.plugin("bold",{
title:"标题",
cmd:"bold",
click:function(){
this.editor.pasteHTML("sdfdf");
},
bold:function(){
alert('sdfsdf');
},
noRight:function(e){
if(e.type=="click"){
alert('noright');
}
},
init:function(){
},
... | JavaScript |
function te_upload_interface() {
//初始化参数
var _args = arguments,
_fn = _args.callee,
_data = '';
if( _args[0] == 'reg' ) {
//注册回调
_data = _args[1];
_fn.curr = _data['callid'];
_fn.data = _data;
jQuery('#temaxsize').val(_data['maxsize']);
} el... | JavaScript |
// 系统自带插件
( function ( $ ) {
//全屏
$.TE.plugin( "fullscreen", {
fullscreen:function(e){
var $btn = this.$btn,
opt = this.editor.opt;
if($btn.is("."+opt.cssname.fulled)){
//取消全屏
this.editor.$main.removeAttr("style");
this.editor.$bottom.find("div").show();
this.editor.resize(opt.width,... | JavaScript |
(function ($) {
var ie = $.browser.msie,
iOS = /iphone|ipad|ipod/i.test(navigator.userAgent);
$.TE = {
version:'1.0', // 版本号
debug: 1, //调试开关
timeOut: 3000, //加载单个文件超时时间,单位为毫秒。
defaults: {
//默认参数controls,noRigths,plugins,定义加载插件
controls: "source,|... | JavaScript |
/**
* SyntaxHighlighter
* http://alexgorbatchev.com/SyntaxHighlighter
*
* SyntaxHighlighter is donationware. If you are using it, please donate.
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
*
* @version
* 3.0.83 (July 02 2010)
*
* @copyright
* Copyright (C) 2004-2010 Alex Gorbatchev.
*
* @lic... | JavaScript |
/*
* File: ColReorder.js
* Version: 1.0.6
* CVS: $Id$
* Description: Controls for column visiblity in DataTables
* Author: Allan Jardine (www.sprymedia.co.uk)
* Created: Wed Sep 15 18:23:29 BST 2010
* Modified: $Date$ by $Author$
* Language: Javascript
* License: GPL v2 or... | JavaScript |
/*
* File: TableTools.js
* Version: 2.1.3
* Description: Tools and buttons for DataTables
* Author: Allan Jardine (www.sprymedia.co.uk)
* Language: Javascript
* License: GPL v2 or BSD 3 point style
* Project: DataTables
*
* Copyright 2009-2012 Allan Jardine, all rights reserved.
*
... | JavaScript |
// Simple Set Clipboard System
// Author: Joseph Huckaby
var ZeroClipboard_TableTools = {
version: "1.0.4-TableTools2",
clients: {}, // registered upload clients on page, indexed by id
moviePath: '', // URL to movie
nextId: 1, // ID of next movie
$: function(thingy) {
// simple DOM lookup utility function
... | JavaScript |
/*
* File: ColVis.js
* Version: 1.0.8
* CVS: $Id$
* Description: Controls for column visiblity in DataTables
* Author: Allan Jardine (www.sprymedia.co.uk)
* Created: Wed Sep 15 18:23:29 BST 2010
* Modified: $Date$ by $Author$
* Language: Javascript
* License: GPL v2 or BSD... | JavaScript |
WebInspector = {};
WebInspector.UIString = function(s) { return s; };
WebInspector.HeapSnapshotArraySlice = function(array, start, end)
{
this._array = array;
this._start = start;
this.length = end - start;
}
WebInspector.HeapSnapshotArraySlice.prototype = {
item: function(index)
{
return this._array[this._star... | JavaScript |
onmessage = function(event) {
if (!event.data.method)
return;
self[event.data.method](event.data.params);
};
function format(params)
{
var indentString = params.indentString || " ";
var result = {};
if (params.mimeType === "text/html") {
var formatter = new HTMLScriptFormatter(indentString);
result = formatte... | JavaScript |
/*
* Copyright (C) 2012 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 conditio... | JavaScript |
/*
* Copyright (C) 2011 Brian Grinstead All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of co... | JavaScript |
WebInspector.RequestView = function(request)
{
WebInspector.View.call(this);
this.registerRequiredCSS("resourceView.css");
this.element.addStyleClass("resource-view");
this.request = request;
}
WebInspector.RequestView.prototype = {
hasContent: function()
{
return false;
},
__proto__: WebInspector.View.prototy... | JavaScript |
WebInspector.ApplicationCacheItemsView = function(model, frameId)
{
WebInspector.View.call(this);
this._model = model;
this.element.addStyleClass("storage-view");
this.element.addStyleClass("table");
this.deleteButton = new WebInspector.StatusBarButton(WebInspector.UIString("Delete"), "delete-storage-status-b... | JavaScript |
const UserInitiatedProfileName = "org.webkit.profiles.user-initiated";
WebInspector.ProfileType = function(id, name)
{
this._id = id;
this._name = name;
this.treeElement = null;
}
WebInspector.ProfileType.prototype = {
get buttonTooltip()
{
return "";
},
get id()
{
return this._id;
},
get treeItemTitle()
{
ret... | JavaScript |
Object.isEmpty = function(obj)
{
for (var i in obj)
return false;
return true;
}
Object.values = function(obj)
{
var keys = Object.keys(obj);
var result = [];
for (var i = 0; i < keys.length; ++i)
result.push(obj[keys[i]]);
return result;
}
String.prototype.hasSubstring = function(string, caseInsensitive)
{
if ... | JavaScript |
WebInspector.JavaScriptBreakpointsSidebarPane = function(breakpointManager, showSourceLineDelegate)
{
WebInspector.SidebarPane.call(this, WebInspector.UIString("Breakpoints"));
this._breakpointManager = breakpointManager;
this._showSourceLineDelegate = showSourceLineDelegate;
this.listElement = document.createE... | JavaScript |
(function() {
/*
* Copyright (C) 2012 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, thi... | JavaScript |
WebInspector.CSSNamedFlowCollectionsView = function()
{
WebInspector.SidebarView.call(this, WebInspector.SidebarView.SidebarPosition.Left);
this.registerRequiredCSS("cssNamedFlows.css");
this._namedFlows = {};
this._contentNodes = {};
this._regionNodes = {};
this.element.addStyleClass("css-named-flow-collection... | JavaScript |
WebInspector.MemoryStatistics = function(timelinePanel, model, sidebarWidth)
{
this._timelinePanel = timelinePanel;
this._counters = [];
model.addEventListener(WebInspector.TimelineModel.Events.RecordAdded, this._onRecordAdded, this);
model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this.... | JavaScript |
WebInspector.AuditsPanel = function()
{
WebInspector.Panel.call(this, "audits");
this.registerRequiredCSS("panelEnablerView.css");
this.registerRequiredCSS("auditsPanel.css");
this.createSidebarViewWithTree();
this.auditsTreeElement = new WebInspector.SidebarSectionTreeElement("", {}, true);
this.sidebarTree.appen... | JavaScript |
/*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net)
* Licensed under the MIT License (LICENSE.txt).
*
* Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
* Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
* Thanks to: Seamus Leahy for adding deltaX and delta... | JavaScript |
function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(st... | JavaScript |
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 = json.feed.entry[i];
relatedTitles[relatedTitlesNum] = entry.title.$t;
try
{thumbur... | JavaScript |
function makeKeywordForPost(mKF_id)
{
var content;
var isDOM = (navigator.appName.match("Microsoft Internet Explorer") || navigator.appName.match("MSIE")) ? false : true;
if(isDOM) {
content = document.getElementById(mKF_id).textContent;
} else {
content = document.getElementById(mKF_id).innerText;
... | JavaScript |
/*
* Awesome Blogger Page Navigation by Onlinetrick *
* Rev 248 on May 7, 2010 *
* Source at http://code.google.com/p/rilwis/source/browse/trunk/blogger *
*/
function pageNavi(o){
var m=location.href,
l=m.indexOf("/search/label/")!=-1,
a=l?m.substr(m.indexOf("/search/label/")+14,m.length):"";
a=a.indexO... | JavaScript |
function Set_Cookie(name, value, expires, path, domain, secure) {
var today = new Date();
today.setTime(today.getTime());
var expires_date = new Date(today.getTime() + (expires));
document.cookie = name + "=" + escape(value) +
((expires) ? ";expires=" + expires_date.toGMTString() : "") +
((path) ? ";path=" +... | JavaScript |
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 = json.feed.entry[i];
relatedTitles[relatedTitlesNum] = entry.title.$t;
try
{thumburl[related... | JavaScript |
/* Sticky Note Script v2.0
* Created: Feb 7th, 2011 by DynamicDrive.com. This notice must stay intact for usage
* Author: Dynamic Drive at http://www.dynamicdrive.com/
* Visit http://www.dynamicdrive.com/ for full source code
*/
jQuery.noConflict()
function stickynote(setting){
var thisobj=this
this.cssfixedsuppo... | JavaScript |
// Go direct for plain hostnames and any host in .manugarg.com domain except
// for www and www.manugarg.com.
// Go via proxy for all other hosts.
function FindProxyForURL(url, host) {
if (typeof(dnsResolveEx) == "function")
return "dnsResolveEx defined";
if ((isPlainHostName(host) ||
dnsDomainIs(host,... | JavaScript |
////////////////////////////////////////////////////////////////////////////////
//
// ADOBE SYSTEMS INCORPORATED
// Copyright 2008 Adobe Systems Incorporated
// All Rights Reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file
// in accordance with the terms of the license agreement ac... | JavaScript |
////////////////////////////////////////////////////////////////////////////////
//
// ADOBE SYSTEMS INCORPORATED
// Copyright 2008 Adobe Systems Incorporated
// All Rights Reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file
// in accordance with the terms of the license agreement ac... | JavaScript |
////////////////////////////////////////////////////////////////////////////////
//
// ADOBE SYSTEMS INCORPORATED
// Copyright 2006-2008 Adobe Systems Incorporated
// All Rights Reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file
// in accordance with the terms of the license ... | JavaScript |
////////////////////////////////////////////////////////////////////////////////
//
// ADOBE SYSTEMS INCORPORATED
// Copyright 2006-2008 Adobe Systems Incorporated
// All Rights Reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file
// in accordance with the terms of the license ... | JavaScript |
/**
* @version $Id: menu.js 10702 2008-08-21 09:31:31Z eddieajau $
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it in... | JavaScript |
/**
* @version $Id: index.js 10702 2008-08-21 09:31:31Z eddieajau $
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it i... | JavaScript |
/**
* @version $Id: mediamanager.js 10710 2008-08-21 10:08:12Z eddieajau $
* @package Joomla
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU Genera... | JavaScript |
/**
* @version $Id: popup-imagemanager.js 10702 2008-08-21 09:31:31Z eddieajau $
* @package Joomla
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public ... | JavaScript |
// directory of where all the images are
var cmThemeOfficeBase = '../includes/js/ThemeOffice/';
var cmThemeOffice =
{
// main menu display attributes
//
// Note. When the menu bar is horizontal,
// mainFolderLeft and mainFolderRight are
// put in <span></span>. When the menu
// bar is vertical, th... | JavaScript |
// directory of where all the images are
var cmThemeOfficeBase = '../includes/js/ThemeOffice/';
var cmThemeOffice =
{
// main menu display attributes
//
// Note. When the menu bar is horizontal,
// mainFolderLeft and mainFolderRight are
// put in <span></span>. When the menu
// bar is vertical, th... | JavaScript |
var prefsLoaded = false;
var defaultFontSize =100;
var currentFontSize = defaultFontSize;
function revertStyles(){
currentFontSize = defaultFontSize;
changeFontSize(0);
}
function toggleColors(){
if(currentStyle == "White"){
setColor("Black");
}else{
setColor("White");
}
}
function changeFontSize(sizeDiff... | JavaScript |
if (typeof(MooTools) != 'undefined'){
var subnav = new Array();
Element.extend(
{
hide: function(timeout)
{
this.status = 'hide';
clearTimeout (this.timeout);
if (timeout)
{
this.timeout = setTimeout (this.anim.bind(this), timeout);
}else{
this.anim();
}
},
show: f... | JavaScript |
//JS script for Joomla template
var JA_Collapse_Mod = new Class({
initialize: function(myElements) {
options = Object.extend({
transition: Fx.Transitions.quadOut
}, {});
this.myElements = myElements;
var exModules = excludeModules.split(',');
exModules.each(function(el,i){exModules[i]='Mod'+el});
myEl... | JavaScript |
//JS script for Joomla template
var siteurl = '';
function fixIEPNG(el, bgimgdf, sizingMethod, type, offset){
var objs = el;
if(!objs) return;
if ($type(objs) != 'array') objs = [objs];
if(!sizingMethod) sizingMethod = 'crop';
if(!offset) offset = 0;
var blankimg = siteurl + 'images/blank.png';
objs.each(functi... | JavaScript |
sfHover = function() {
var sfEls = document.getElementById("ja-mainnav").getElementsByTagName("li");
for (var i=0; i<sfEls.length; ++i) {
sfEls[i].onmouseover=function() {
clearTimeout(this.timer);
if(this.className.indexOf(" sfhover") == -1)
this.className+=" sfhover";
}
sfEls[i].onmouseout=function... | JavaScript |
/**
* @version $Id: cookie.js 6138 2007-01-02 03:44:18Z eddiea $
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it incl... | JavaScript |
/**
* @version $Id: caption.js 5263 2006-10-02 01:25:24Z webImagery $
* @copyright Copyright (C) 2005 - 2009 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it... | JavaScript |
/**
* @version $Id: modal.js 5263 2006-10-02 01:25:24Z webImagery $
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it i... | JavaScript |
/*
Script: mootree.js
My Object Oriented Tree
- Developed by Rasmus Schultz, <http://www.mindplay.dk>
- Tested with MooTools release 1.11, under Firefox 2 and Internet Explorer 6 and 7.
License:
MIT-style license.
Credits:
Inspired by:
- WebFX xTree, <http://webfx.eae.net/dhtml/xtree/>
- Destroydrop dTree, <ht... | JavaScript |
/**
* @version $Id: modal.js 5263 2006-10-02 01:25:24Z webImagery $
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it i... | JavaScript |
/**
* SqueezeBox - Expandable Lightbox
*
* Allows to open various content as modal,
* centered and animated box.
*
* Inspired by
* ... Lokesh Dhakar - The original Lightbox v2
* ... Cody Lindley - ThickBox
*
* @version 1.0rc1
*
* @license MIT-style license
* @author Harald Kirschner <mail [at] digitar... | JavaScript |
/**
* @version $Id: validate.js 7401 2007-05-14 04:12:55Z eddieajau $
* @package Joomla
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant... | JavaScript |
/*
Script: Core.js
Mootools - My Object Oriented javascript.
License:
MIT-style license.
MooTools Copyright:
copyright (c) 2007 Valerio Proietti, <http://mad4milk.net>
MooTools Credits:
- Class is slightly based on Base.js <http://dean.edwards.name/weblog/2006/03/base/> (c) 2006 Dean Edwards, License <http://cre... | JavaScript |
/**
* @version $Id: switcher.js 10708 2008-08-21 09:58:05Z eddieajau $
* @package Joomla
* @subpackage Config
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU Gener... | JavaScript |
/*
Script: Swiff.Base.js
Contains <Swiff>, <Swiff.getVersion>, <Swiff.remote>
Author:
Valerio Proietti, <http://mad4milk.net>
enhanced by Harald Kirschner <http://digitarald.de>
Credits:
Flash detection 'borrowed' from SWFObject.
License:
MIT-style license.
*/
/*
Function: Swiff
creates a flash object with su... | JavaScript |
/**
* FancyUpload - Flash meets Ajax for beauty uploads
*
* Based on Swiff.Base and Swiff.Uploader.
*
* Its intended that you edit this class to add your
* own queue layout/text/effects. This is NO include
* and forget class. If you want custom effects or
* more output, use Swiff.Uploader as interface
* for yo... | JavaScript |
/**
* @version $Id: popup-imagemanager.js 8656 2007-08-30 22:40:39Z louis $
* @package Joomla
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public Licen... | JavaScript |
// directory of where all the images are
var cmThemeOfficeBase = 'includes/js/ThemeOffice/';
var cmThemeOffice =
{
// main menu display attributes
//
// Note. When the menu bar is horizontal,
// mainFolderLeft and mainFolderRight are
// put in <span></span>. When the menu
// bar is vertical, they ... | JavaScript |
/* Copyright Mihai Bazon, 2002 | http://students.infoiasi.ro/~mishoo
* ---------------------------------------------------------------------
*
* The DHTML Calendar, version 0.9.2 "The art of date selection"
*
* Details and latest version at:
* http://students.infoiasi.ro/~mishoo/site/calendar.epl
*
* Feel fr... | JavaScript |
// ** I18N
Calendar._DN = new Array
("Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday");
Calendar._MN = new Array
("January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December");
// tooltips
Calendar._TT =... | JavaScript |
//\/////
//\ overLIB Hide Form Plugin
//\
//\ Uses an iframe shim to mask system controls for IE v5.5 or higher as suggested in
//\ http://dotnetjunkies.com/weblog/jking/posts/488.aspx
//\ This file requires overLIB 4.10 or later.
//\
//\ overLIB 4.05 - You may not remove or change this notice.
//\ Copyright Erik... | JavaScript |
/*
JSCookMenu v1.4.3. (c) Copyright 2002-2005 by Heng Yuan
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, ... | JavaScript |
/* This notice must be untouched at all times.
wz_tooltip.js v. 3.34
The latest version is available at
http://www.walterzorn.com
or http://www.devira.com
or http://www.walterzorn.de
Copyright (c) 2002-2004 Walter Zorn. All rights reserved.
Created 1. 12. 2002 by Walter Zorn (Web: http://www.walterzorn.com )
Last... | JavaScript |
// <?php !! This fools phpdocumentor into parsing this file
/**
* @version $Id: mambojavascript.js 10389 2008-06-03 11:27:38Z pasamio $
* @package Joomla
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL
* Joomla! is Free Software
*/
// general utility for browsing ... | JavaScript |
/*
JSCookMenu v1.4.3. (c) Copyright 2002-2005 by Heng Yuan
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, ... | JavaScript |
/*--------------------------------------------------|
| dTree 2.05 | www.destroydrop.com/javascript/tree/ |
|---------------------------------------------------|
| Copyright (c) 2002-2003 Geir Landr? |
| |
| This script can be used freely as long as all ... | JavaScript |
/*----------------------------------------------------------------------------\
| Tab Pane 1.02 |
|-----------------------------------------------------------------------------|
| Created by Erik Arvidsson |
... | JavaScript |
// <?php !! This fools phpdocumentor into parsing this file
/**
* @version $Id: joomla.javascript.js 10389 2008-06-03 11:27:38Z pasamio $
* @package Joomla
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL
* Joomla! is Free Software
*/
/**
* Overlib Styling Declara... | JavaScript |
// ** I18N
// Calendar EN language
// Author: Mihai Bazon, <[email protected]>
// Encoding: any
// Translator : Niko <[email protected]>
// 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 internat... | JavaScript |
// ** I18N
// Calendar EN language
// Author: Mihai Bazon, <[email protected]>
// 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 |
/**
* Tinymce template_list.js sample file
* @version tinymce 3.2.6
* @package Joomla
* @copyright Copyright (C) 2005 - 2009 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License... | JavaScript |
/**
* @version $Id: xstandard.js 10714 2008-08-21 10:10:14Z eddieajau $
* @package Joomla
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public Lic... | JavaScript |
importClass(Packages.myschedule.quartz.extra.job.LoggerJob);
importClass(Packages.org.quartz.JobBuilder);
importClass(Packages.org.quartz.TriggerBuilder);
importClass(Packages.org.quartz.CronScheduleBuilder);
var job = JobBuilder
.newJob(LoggerJob)
.withIdentity("cronJob")
.build();
var trigger = TriggerBuilder
... | JavaScript |
//Create Quartz Calendar objects
importClass(Packages.org.quartz.impl.calendar.CronCalendar);
importClass(Packages.myschedule.quartz.extra.job.LoggerJob);
var cal = CronCalendar('* * * * JAN ?');
scheduler.addCalendar('SkipJan', cal, true, false);
var cal = CronCalendar('* * * ? * SAT,SUN');
scheduler.addCalendar('Ski... | JavaScript |
//Using CalendarIntervalTrigger
//schedule a job that runs every 3 months
//=========================================
importClass(Packages.myschedule.quartz.extra.job.LoggerJob);
importClass(Packages.org.quartz.JobBuilder);
importClass(Packages.org.quartz.TriggerBuilder);
importClass(Packages.org.quartz.CalendarInterva... | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.