code
stringlengths
1
2.08M
language
stringclasses
1 value
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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, o...
JavaScript
/** * * Secure Hash Algorithm (SHA256) * http://www.webtoolkit.info/ * * Original code by Angel Marin, Paul Johnston. * **/ function SHA256(s) { var chrsz = 8; var hexcase = 0; function safe_add(x, y) { var lsw = (x & 0xFFFF) + (y & 0xFFFF); var msw = (x >> 16) + (y >> 16) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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
// A few configuration settings var CROSSHAIRS_LOCATION = 'images/colorselector/crosshairs.png'; var HUE_SLIDER_LOCATION = 'images/colorselector/h.png'; var HUE_SLIDER_ARROWS_LOCATION = 'images/colorselector/position.png'; var SAT_VAL_SQUARE_LOCATION = 'images/colorselector/sv.png'; function pageCoords(node) { ...
JavaScript
function AccountAssistant(params) { this.Account = params.Account; } AccountAssistant.prototype.setup = function() { /* this function is for setup tasks that have to happen when the scene is first created */ /* use Mojo.View.render to render view templates and add them to the scene, if needed. */ ...
JavaScript
function ConnectionAssistant(test){ Mojo.Log.info("--> ConnectionAssistant Constructor"); Mojo.Log.info("<-- ConnectionAssistant Constructor"); } ConnectionAssistant.prototype.setup = function(){ Mojo.Log.info("--> ConnectionAssistant.prototype.setup"); //AmpacheMobile.audioPlayer = new AudioPla...
JavaScript
/* AppAssistant - AmpacheMobile */ // --------------------------------------------------------------- // GLOBALS // --------------------------------------------------------------- // AmpacheMobile namespace AmpacheMobile = {}; AmpacheMobile.MenuAttr = {omitDefaultItems: true}; AmpacheMobile.MenuModel = ...
JavaScript
function SongsAssistant(params){ Mojo.Log.info("--> SongsAssistant.prototype.constructor"); this.SceneTitle = params.SceneTitle; this.DisplayAlbumInfo = params.DisplayAlbumInfo; this.SongsList = params.SongsList; this.thisIsAnAlbum = params.thisIsAnAlbum; Mojo.Log.info("<-- SongsAssistant.prototype.constructor");...
JavaScript
// --------------------------------------------------------------- // GLOBALS // --------------------------------------------------------------- // AmpacheMobile namespace AmpacheMobile = {}; AmpacheMobile.versionString = "0.01"; AmpacheMobile.Account = null; AmpacheMobile.ampacheServer = null; AmpacheMobile...
JavaScript
NowPlayingAssistant.prototype.appMenuAttr = {omitDefaultItems: true}; NowPlayingAssistant.prototype.appMenuModel = { visible: true, items: [ //{label: "Test Connection", command: "doTest-cmd"}, {label: "Stream Info", command: "doStreamingInfo-cmd" }, {label: "About...", command: "about-cmd"} ] }; //********...
JavaScript
function PreferencesAssistant(params) { this.settingsManager = params.settingsManager; //this.settingsManager = AppAssistant.settingsManager; /* this is the creator function for your scene assistant object. It will be passed all the additional parameters (after the scene name) that were passed to pushSce...
JavaScript
function AlbumsAssistant(params){ Mojo.Log.info("--> AlbumsAssistant.prototype.constructor"); this.SceneTitle = params.SceneTitle; this.DisplayArtistInfo = params.DisplayArtistInfo; //this.AlbumsList = params.AlbumsList; //this.AlbumsList.sort(this.sortfunction); this.ExpectedAlbums = params.ExepectedAlbums; ...
JavaScript
function ArtistsAssistant(params){ this.ExpectedArtists = params.ExpectedArtists; this.ARTIST_LIMIT = 200; this.artistOffset = 0; } ArtistsAssistant.prototype.setup = function(){ this.ArtistList = new Array(); /* setup widgets here */ this.spinnerLAttrs = { spinnerSize: 'large' } this.spinnerMod...
JavaScript
function MainmenuAssistant(){ /* this is the creator function for your scene assistant object. It will be passed all the additional parameters (after the scene name) that were passed to pushScene. The reference to the scene controller (this.controller) has not be established yet, so any initialization ...
JavaScript
/* Copyright 2009 Palm, Inc. All rights reserved. */ var MediaEventsService = Class.create( { parsePlaylist: function(playlistFilename, callback) { var parameters = {}; parameters.filename = playlistFilename; return new Mojo.Service.Request( MediaEventsService.identifier, { method: 'parsePlayli...
JavaScript
AudioPlayer = Class.create({ PlayerReady: false, NowPlaying: null, NowPlayingVisible: false, OneTimeInit:false, timeInterval:null, Paused:false, RequestedPlayBeforeReady:false, Controller:null, playOrderList:null, currentPlayingTrack:null, currentPlayingIndex:null, player: null, ...
JavaScript
/** * * Secure Hash Algorithm (SHA256) * http://www.webtoolkit.info/ * * Original code by Angel Marin, Paul Johnston. * **/ function SHA256(s){ var chrsz = 8; var hexcase = 0; function safe_add (x, y) { var lsw = (x & 0xFFFF) + (y & 0xFFFF); var msw = (x >> 16) + (y >> 16) + (lsw >> 16...
JavaScript
SettingsManager = Class.create({ settings:null, depot:null, initialize: function(DataBaseName){ var options = { name: "AmpacheMobileData", //Name used for the HTML5 database name. (required) version: 1, //Version number used for the HTML5 database. (optional, defaults to 1) //displayName: "...
JavaScript
AudioPlayer = Class.create({ PlayerReady: false, NowPlaying: null, NowPlayingVisible: false, OneTimeInit:false, timeInterval:null, Paused:false, RequestedPlayBeforeReady:false, Controller:null, playOrderList:null, currentPlayingTrack:null, currentPlayingIndex:null, playList: null, ...
JavaScript
AmpacheServer = Class.create({ URL: "", UserName: "", Password: "", Connected: false, ConnectionFailed: false, pingTimer:null, ServerAction: "/server/xml.server.php?action=", //Information from connect auth:"", api:"", update:"", add:"", clean:"", songs:"...
JavaScript
function NewUsersAssistant(params) { /* this is the creator function for your scene assistant object. It will be passed all the additional parameters (after the scene name) that were passed to pushScene. The reference to the scene controller (this.controller) has not be established yet, so any initialization ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
function CheckUpdatesAssistant() { /* this is the creator function for your scene assistant object. It will be passed all the additional parameters (after the scene name) that were passed to pushScene. The reference to the scene controller (this.controller) has not be established yet, so any initialization ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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, o...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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, o...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
function TheBasicsAssistant() { /* this is the creator function for your scene assistant object. It will be passed all the additional parameters (after the scene name) that were passed to pushScene. The reference to the scene controller (this.controller) has not be established yet, so any initialization t...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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 Li...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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, o...
JavaScript
/** * * Secure Hash Algorithm (SHA256) * http://www.webtoolkit.info/ * * Original code by Angel Marin, Paul Johnston. * **/ function SHA256(s) { var chrsz = 8; var hexcase = 0; function safe_add(x, y) { var lsw = (x & 0xFFFF) + (y & 0xFFFF); var msw = (x >> 16) + (y >> 16) ...
JavaScript
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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
/* Copyright (c) Ampache Mobile All rights reserved. This file is part of Ampache Mobile. Ampache Mobile 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
// A few configuration settings var CROSSHAIRS_LOCATION = 'images/colorselector/crosshairs.png'; var HUE_SLIDER_LOCATION = 'images/colorselector/h.png'; var HUE_SLIDER_ARROWS_LOCATION = 'images/colorselector/position.png'; var SAT_VAL_SQUARE_LOCATION = 'images/colorselector/sv.png'; function pageCoords(node) { ...
JavaScript
/* * jQuery FlexSlider v2.0 * http://www.woothemes.com/flexslider/ * * Copyright 2012 WooThemes * Free to use under the GPLv2 license. * http://www.gnu.org/licenses/gpl-2.0.html * * Contributing author: Tyler Smith (@mbmufffin) */ ;(function ($) { //FlexSlider: Object Instance $.flexslider = function(el,...
JavaScript
/*! * liScroll 1.0 * Examples and documentation at: * http://www.gcmingati.net/wordpress/wp-content/lab/jquery/newsticker/jq-liscroll/scrollanimate.html * 2007-2010 Gian Carlo Mingati * Version: 1.0.2.1 (22-APRIL-2011) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/m...
JavaScript
//** jQuery Scroll to Top Control script- (c) Dynamic Drive DHTML code library: http://www.dynamicdrive.com. //** Available/ usage terms at http://www.dynamicdrive.com (March 30th, 09') //** v1.1 (April 7th, 09'): //** 1) Adds ability to scroll to an absolute position (from top of page) or specific element on the page ...
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 */ ;(functio...
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'Bladsy'; $.fn.pagination.defaults.afterPageText = 'Van {pages}'; $.fn.pagination.defaults.displayMsg = 'Wys (from) tot (to) van (total) items'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = 'Verwerking, wag asseblief ...'; } if ($.fn.treegrid...
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'Page'; $.fn.pagination.defaults.afterPageText = 'af {pages}'; $.fn.pagination.defaults.displayMsg = 'Viser {from} til {to} af {total} poster'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = 'Behandling, vent venligst ...'; } if ($.fn.treegrid ...
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'Strana'; $.fn.pagination.defaults.afterPageText = 'z {pages}'; $.fn.pagination.defaults.displayMsg = 'Zobrazuji {from} do {to} z {celkové} položky'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = 'Zpracování, čekejte prosím ...'; } if ($.fn.tr...
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'Page'; $.fn.pagination.defaults.afterPageText = 'de {pages}'; $.fn.pagination.defaults.displayMsg = 'Affichage de {from} et {to} au {total} des articles'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = "Traitement, s'il vous plaît patienter .....
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = '第'; $.fn.pagination.defaults.afterPageText = '共{pages}页'; $.fn.pagination.defaults.displayMsg = '显示{from}到{to},共{total}记录'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = '正在处理,请稍待。。。'; } if ($.fn.treegrid && $.fn.datagrid){ $.fn.tre...
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'Seite'; $.fn.pagination.defaults.afterPageText = 'von {pages}'; $.fn.pagination.defaults.displayMsg = 'Angezeigte {from} zu {to} von {total} Artikel'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = 'Processing, bitte warten ...'; } if ($.fn.tr...
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'Страница'; $.fn.pagination.defaults.afterPageText = 'от {pages}'; $.fn.pagination.defaults.displayMsg = 'Показани {from} за {to} от {total} продукти'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = 'Обработка, моля изчакайте ...'; } if...
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'Strana'; $.fn.pagination.defaults.afterPageText = 'z {pages}'; $.fn.pagination.defaults.displayMsg = 'Zobrazuji záznam {from} až {to} z {total}.'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = 'Pracuji, čekejte prosím…'; } if ($.fn.tr...
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'Pagina'; $.fn.pagination.defaults.afterPageText = 'van {pages}'; $.fn.pagination.defaults.displayMsg = 'Tonen van {from} tot {to} van de {totale} items'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = 'Verwerking, even geduld ...'; } if ($.fn....
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'Sayfa'; $.fn.pagination.defaults.afterPageText = ' / {pages}'; $.fn.pagination.defaults.displayMsg = '{from} ile {to} arası gösteriliyor, toplam {total} kayıt'; } if ($.fn.datagrid){ $.fn.panel.defaults.loadingMessage = "Yükleniyor..."; } ...
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = '第'; $.fn.pagination.defaults.afterPageText = '共{pages}頁'; $.fn.pagination.defaults.displayMsg = '顯示{from}到{to},共{total}記錄'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = '正在處理,請稍待。。。'; } if ($.fn.treegrid && $.fn.datagrid){ $.fn.tre...
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'Page'; $.fn.pagination.defaults.afterPageText = 'of {pages}'; $.fn.pagination.defaults.displayMsg = 'Displaying {from} to {to} of {total} items'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = 'Processing, please wait ...'; } if ($.fn.treegrid...
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'Pàgina'; $.fn.pagination.defaults.afterPageText = 'de {pages}'; $.fn.pagination.defaults.displayMsg = "Veient {from} a {to} de {total} d'articles"; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = 'Elaboració, si us plau esperi ...'; } if ($.fn....
JavaScript
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'P&aacute;gina'; $.fn.pagination.defaults.afterPageText = 'de {pages}'; $.fn.pagination.defaults.displayMsg = 'Mostrando {from} a {to} de {total} elementos'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = 'Procesando, por favor espere ...'; } i...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(_2){ var _3=$("<span class=\"spinner\">"+"<span class=\"spinner-arrow\">"+"<span class=\"spinner-arrow-up\"></span>"...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(_2){ $(_2).appendTo("body"); $(_2).addClass("menu-top"); var _3=[]; _4($(_2)); var _5=null; for(var i=0;i<_3.length;...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(_2){ var _3=$.data(_2,"combogrid").options; var _4=$.data(_2,"combogrid").grid; $(_2).addClass("combogrid-f"); $(_2)...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(_2){ var _3=$.data(_2,"propertygrid").options; $(_2).datagrid($.extend({},_3,{cls:"propertygrid",view:(_3.showGroup?...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(_2){ _2.each(function(){ $(this).remove(); if($.browser.msie){ this.outerHTML=""; } }); }; function _3(_4,_5){ var _...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ var _1=false; function _2(_3){ var _4=$.data(_3,"layout").options; var _5=$.data(_3,"layout").panels; var cc=$(_3); if(_4.fit==t...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ var _1=false; function _2(e){ var _3=$.data(e.data.target,"draggable").options; var _4=e.data; var _5=_4.startLeft+e.pageX-_4.st...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(_2){ var t=$(_2); t.wrapInner("<div class=\"dialog-content\"></div>"); var _3=t.children("div.dialog-content"); _3.a...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(a,o){ for(var i=0,_2=a.length;i<_2;i++){ if(a[i]==o){ return i; } } return -1; }; function _3(a,o){ var _4=_1(a,o); ...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ var _1=false; $.fn.resizable=function(_2,_3){ if(typeof _2=="string"){ return $.fn.resizable.methods[_2](this,_3); } function _4...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(_2,_3){ var _4=$.data(_2,"window").options; if(_3){ if(_3.width){ _4.width=_3.width; } if(_3.height){ _4.height=_3.h...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(_2){ var _3=$(_2).children("div.tabs-header"); var _4=0; $("ul.tabs li",_3).each(function(){ _4+=$(this).outerWidth(...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(_2){ $(_2).addClass("validatebox-text"); }; function _3(_4){ var _5=$.data(_4,"validatebox"); _5.validating=false; v...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(_2){ $(_2).addClass("droppable"); $(_2).bind("_dragenter",function(e,_3){ $.data(_2,"droppable").options.onDragEnter...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(_2,_3){ _3=_3||{}; if(_3.onSubmit){ if(_3.onSubmit.call(_2)==false){ return; } } var _4=$(_2); if(_3.url){ _4.attr("...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(el,_2,_3,_4){ var _5=$(el).window("window"); if(!_5){ return; } switch(_2){ case null: _5.show(); break; case "slide...
JavaScript
/** * jQuery EasyUI 1.3 * * Licensed under the GPL terms * To use it on other terms please contact us * * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] * */ (function($){ function _1(_2){ var _3=$(_2); _3.addClass("tree"); return _3; }; function _4(_5){ var _6=[]; _7(_6,$(_5)); function _7(aa,_8){ ...
JavaScript