code
stringlengths
1
2.08M
language
stringclasses
1 value
/* * CKFinder * ======== * http://ckfinder.com * Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributi...
JavaScript
/* * CKFinder * ======== * http://ckfinder.com * Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributi...
JavaScript
/* * CKFinder * ======== * http://ckfinder.com * Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributi...
JavaScript
/* * CKFinder * ======== * http://ckfinder.com * Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributi...
JavaScript
/* * CKFinder * ======== * http://ckfinder.com * Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributi...
JavaScript
/* * CKFinder * ======== * http://ckfinder.com * Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributi...
JavaScript
/* * CKFinder * ======== * http://ckfinder.com * Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributi...
JavaScript
/* * CKFinder * ======== * http://ckfinder.com * Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributi...
JavaScript
/* * CKFinder * ======== * http://ckfinder.com * Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributi...
JavaScript
/* * CKFinder * ======== * http://ckfinder.com * Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributi...
JavaScript
/* * CKFinder * ======== * http://ckfinder.com * Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributi...
JavaScript
/* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckfinder.com/license */ CKFinder.customConfig = function( config ) { // Define changes to default configuration here. // For the list of available options, check: // http://docs.cksource...
JavaScript
CKFinder.addPlugin( 'imageresize', { connectorInitialized : function( api, xml ) { var node = xml.selectSingleNode( 'Connector/PluginsInfo/imageresize/@smallThumb' ); if ( node ) CKFinder.config.imageresize_thumbSmall = node.value; node = xml.selectSingleNode( 'Connector/PluginsInfo/imageresize/@medium...
JavaScript
/* Demonstration of embedding CodeMirror in a bigger application. The * interface defined here is a mess of prompts and confirms, and * should probably not be used in a real project. */ function MirrorFrame(place, options) { this.home = document.createElement("div"); if (place.appendChild) place.app...
JavaScript
var HTMLMixedParser = Editor.Parser = (function() { // tags that trigger seperate parsers var triggers = { "script": "JSParser", "style": "CSSParser" }; function checkDependencies() { var parsers = ['XMLParser']; for (var p in triggers) parsers.push(triggers[p]); for (var i in ...
JavaScript
/* Simple parser for CSS */ var CSSParser = Editor.Parser = (function() { var tokenizeCSS = (function() { function normal(source, setState) { var ch = source.next(); if (ch == "@") { source.nextWhileMatches(/\w/); return "css-at"; } else if (ch == "/" && source.e...
JavaScript
/* Functionality for finding, storing, and restoring selections * * This does not provide a generic API, just the minimal functionality * required by the CodeMirror system. */ // Namespace object. var select = {}; (function() { select.ie_selection = document.selection && document.selection.createRange...
JavaScript
/* A few useful utility functions. */ // Capture a method on an object. function method(obj, name) { return function() {obj[name].apply(obj, arguments);}; } // The value used to signal the end of a sequence in iterators. var StopIteration = {toString: function() {return "StopIteration"}}; // Apply a func...
JavaScript
var SparqlParser = Editor.Parser = (function() { function wordRegexp(words) { return new RegExp("^(?:" + words.join("|") + ")$", "i"); } var ops = wordRegexp(["str", "lang", "langmatches", "datatype", "bound", "sameterm", "isiri", "isuri", "isblank", "isliteral", "union", "a"]); ...
JavaScript
/* This file defines an XML parser, with a few kludges to make it * useable for HTML. autoSelfClosers defines a set of tag names that * are expected to not have a closing tag, and doNotIndent specifies * the tags inside of which no indentation should happen (see Config * object). These can be disabled by passin...
JavaScript
/* Tokenizer for JavaScript code */ var tokenizeJavaScript = (function() { // Advance the stream until the given character (not preceded by a // backslash) is encountered, or the end of the line is reached. function nextUntilUnescaped(source, end) { var escaped = false; while (!source.endOfLine())...
JavaScript
// A framework for simple tokenizers. Takes care of newlines and // white-space, and of getting the text from the source stream into // the token object. A state is a function of two arguments -- a // string stream and a setState function. The second can be used to // change the tokenizer's state, and can be ignore...
JavaScript
/* CodeMirror main module (http://codemirror.net/) * * Implements the CodeMirror constructor and prototype, which take care * of initializing the editor frame, and providing the outside interface. */ // The CodeMirrorConfig object is used to specify a default // configuration. If you specify such an object ...
JavaScript
// Minimal framing needed to use CodeMirror-style parsers to highlight // code. Load this along with tokenize.js, stringstream.js, and your // parser. Then call highlightText, passing a string as the first // argument, and as the second argument either a callback function // that will be called with an array of SPA...
JavaScript
/* The Editor object manages the content of the editable frame. It * catches events, colours nodes, and indents lines. This file also * holds some functions for transforming arbitrary DOM structures into * plain sequences of <span> and <br> elements */ var internetExplorer = document.selection && window.Acti...
JavaScript
/* String streams are the things fed to parsers (which can feed them * to a tokenizer if they want). They provide peek and next methods * for looking at the current character (next 'consumes' this * character, peek does not), and a get method for retrieving all the * text that was consumed since the last time g...
JavaScript
/** * Storage and control for undo information within a CodeMirror * editor. 'Why on earth is such a complicated mess required for * that?', I hear you ask. The goal, in implementing this, was to make * the complexity of storing and reverting undo information depend * only on the size of the edited or restore...
JavaScript
/* Parse function for JavaScript. Makes use of the tokenizer from * tokenizejavascript.js. Note that your parsers do not have to be * this complicated -- if you don't want to recognize local variables, * in many languages it is enough to just look for braces, semicolons, * parentheses, etc, and know when you ar...
JavaScript
var DummyParser = Editor.Parser = (function() { function tokenizeDummy(source) { while (!source.endOfLine()) source.next(); return "text"; } function parseDummy(source) { function indentTo(n) {return function() {return n;}} source = tokenizer(source, tokenizeDummy); var space = 0; ...
JavaScript
/* Tokenizer for CSharp code */ var tokenizeCSharp = (function() { // Advance the stream until the given character (not preceded by a // backslash) is encountered, or the end of the line is reached. function nextUntilUnescaped(source, end) { var escaped = false; var next; while (!source.endOf...
JavaScript
/* Parse function for JavaScript. Makes use of the tokenizer from * tokenizecsharp.js. Note that your parsers do not have to be * this complicated -- if you don't want to recognize local variables, * in many languages it is enough to just look for braces, semicolons, * parentheses, etc, and know when you are in...
JavaScript
/* Copyright (c) 2008-2009 Yahoo! Inc. All rights reserved. The copyrights embodied in the content of this file are licensed by Yahoo! Inc. under the BSD (revised) open source license @author Dan Vlad Dascalescu <[email protected]> Parse function for PHP. Makes use of the tokenizer from tokenizephp.js. Ba...
JavaScript
/* Copyright (c) 2008-2009 Yahoo! Inc. All rights reserved. The copyrights embodied in the content of this file are licensed by Yahoo! Inc. under the BSD (revised) open source license @author Dan Vlad Dascalescu <[email protected]> Based on parsehtmlmixed.js by Marijn Haverbeke. */ var PHPHTMLMixedParser...
JavaScript
/* Copyright (c) 2008-2009 Yahoo! Inc. All rights reserved. The copyrights embodied in the content of this file are licensed by Yahoo! Inc. under the BSD (revised) open source license @author Vlad Dan Dascalescu <[email protected]> Tokenizer for PHP code References: + http://php.net/manual/en/reserv...
JavaScript
function waitForStyles() { for (var i = 0; i < document.styleSheets.length; i++) if (/googleapis/.test(document.styleSheets[i].href)) return document.body.className += " droid"; setTimeout(waitForStyles, 100); } setTimeout(function() { if (/AppleWebKit/.test(navigator.userAgent) && /iP[oa]d|iPhon...
JavaScript
CKFinder.addPlugin( 'fileeditor', function( api ) { var regexExt = /^(.*)\.([^\.]+)$/, regexTextExt = /^(txt|css|html|htm|js|asp|cfm|cfc|ascx|php|inc|xml|xslt|xsl)$/i, regexCodeMirrorExt = /^(css|html|htm|js|xml|xsl|php)$/i, codemirror, file, fileLoaded = false, doc; var codemirrorPath = CKFin...
JavaScript
/** * Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://ckeditor.com/license * * CKFinder 2.x - sample "dummy" plugin. * * To enable it, add the following line to config.js: * config.extraPlugins = 'dummy'; */ /** * See http:...
JavaScript
/* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKFinder.setPluginLang( 'dummy', 'pl', { dummy : { title : 'Testowe okienko', menuItem : 'Otwórz okienko dummy', typeText : 'Podaj jakiś tekst....
JavaScript
/* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKFinder.setPluginLang( 'dummy', 'en', { dummy : { title : 'Dummy dialog', menuItem : 'Open dummy dialog', typeText : 'Please type some text.' } });
JavaScript
/* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function() { window.CKFinder = function(a, b, c, d) { var e = this; e.BasePath = a || CKFinder.DEFAULT_BASEPATH; e.Width = b || '100%'; e.Height = c || 4...
JavaScript
/* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function() { var a = (function() { var f = { jY : 'B8MI1HT', _ : {}, status : 'unloaded', basePath : (function() { var i = window.CKFINDER_BA...
JavaScript
/*! * jQuery Right-Click Plugin * * Version 1.01 * * Cory S.N. LaViska * A Beautiful Site (http://abeautifulsite.net/) * 20 December 2008 * * Visit http://abeautifulsite.net/notebook/68 for more information * * License: * This plugin is dual-licensed under the GNU General Public License and the ...
JavaScript
/** This file is part of KCFinder project * * @desc Helper object * @package KCFinder * @version 2.51 * @author Pavel Tzonkov <[email protected]> * @copyright 2010, 2011 KCFinder Project * @license http://www.opensource.org/licenses/gpl-2.0.php GPLv2 * @license http://...
JavaScript
<?php /** This file is part of KCFinder project * * @desc Object initializations * @package KCFinder * @version 2.51 * @author Pavel Tzonkov <[email protected]> * @copyright 2010, 2011 KCFinder Project * @license http://www.opensource.org/licenses/gpl-2.0.php GPLv2 * ...
JavaScript
<?php /** This file is part of KCFinder project * * @desc Upload files using drag and drop * @package KCFinder * @version 2.51 * @author Forum user (updated by Pavel Tzonkov) * @copyright 2010, 2011 KCFinder Project * @license http://www.opensource.org/licenses/gpl-2.0.php GPLv2 ...
JavaScript
browser.initFolders = function() { $('#folders').scroll(function() { browser.hideDialog(); }); $('div.folder > a').unbind(); $('div.folder > a').bind('click', function() { browser.hideDialog(); return false; }); $('div.folder > a > span.brace').unbind(); $('...
JavaScript
<?php /** This file is part of KCFinder project * * @desc File related functionality * @package KCFinder * @version 2.51 * @author Pavel Tzonkov <[email protected]> * @copyright 2010, 2011 KCFinder Project * @license http://www.opensource.org/licenses/gpl-2.0.php GPLv2 ...
JavaScript
var browser = { opener: {}, support: {}, files: [], clipboard: [], labels: [], shows: [], orders: [], cms: "" };
JavaScript
<?php /** This file is part of KCFinder project * * @desc Clipboard functionality * @package KCFinder * @version 2.51 * @author Pavel Tzonkov <[email protected]> * @copyright 2010, 2011 KCFinder Project * @license http://www.opensource.org/licenses/gpl-2.0.php GPLv2 *...
JavaScript
<?php /** This file is part of KCFinder project * * @desc Miscellaneous functionality * @package KCFinder * @version 2.51 * @author Pavel Tzonkov <[email protected]> * @copyright 2010, 2011 KCFinder Project * @license http://www.opensource.org/licenses/gpl-2.0.php GPLv2 ...
JavaScript
browser.initSettings = function() { if (!this.shows.length) { var showInputs = $('#show input[type="checkbox"]').toArray(); $.each(showInputs, function (i, input) { browser.shows[i] = input.name; }); } var shows = this.shows; if (!_.kuki.isSet('showname'...
JavaScript
<?php /** This file is part of KCFinder project * * @desc Toolbar functionality * @package KCFinder * @version 2.51 * @author Pavel Tzonkov <[email protected]> * @copyright 2010, 2011 KCFinder Project * @license http://www.opensource.org/licenses/gpl-2.0.php GPLv2 * ...
JavaScript
// If this file exists in theme directory, it will be loaded in <head> section var imgLoading = new Image(); imgLoading.src = 'themes/dark/img/loading.gif';
JavaScript
// If this file exists in theme directory, it will be loaded in <head> section var imgLoading = new Image(); imgLoading.src = 'themes/oxygen/img/loading.gif';
JavaScript
/*! * MediaElementPlayer * http://mediaelementjs.com/ * * Creates a controller bar for HTML5 <video> add <audio> tags * using jQuery and MediaElement.js (HTML5 Flash/Silverlight wrapper) * * Copyright 2010-2012, John Dyer (http://j.hn/) * Dual licensed under the MIT or GPL Version 2 licenses. * */ ...
JavaScript
/*! * MediaElement.js * HTML5 <video> and <audio> shim and player * http://mediaelementjs.com/ * * Creates a JavaScript object that mimics HTML5 MediaElement API * for browsers that don't understand HTML5 or can't play the provided codec * Can play MP4 (H.264), Ogg, WebM, FLV, WMV, WMA, ACC, and MP3 * * Copyri...
JavaScript
/*! * MediaElement.js * HTML5 <video> and <audio> shim and player * http://mediaelementjs.com/ * * Creates a JavaScript object that mimics HTML5 MediaElement API * for browsers that don't understand HTML5 or can't play the provided codec * Can play MP4 (H.264), Ogg, WebM, FLV, WMV, WMA, ACC, and MP3 * * Copyri...
JavaScript
/** * jQuery Yii plugin file. * * @author Qiang Xue <[email protected]> * @link http://www.yiiframework.com/ * @copyright Copyright &copy; 2008-2010 Yii Software LLC * @license http://www.yiiframework.com/license/ * @version $Id: jquery.yii.js 3053 2011-03-12 21:25:33Z qiang.xue $ */ ;(function($) { $.yii =...
JavaScript
/** * jQuery Yii plugin file. * * @author Qiang Xue <[email protected]> * @link http://www.yiiframework.com/ * @copyright Copyright &copy; 2008-2010 Yii Software LLC * @license http://www.yiiframework.com/license/ * @version $Id: jquery.yiitab.js 1827 2010-02-20 00:43:32Z qiang.xue $ */ ;(function($) { $.e...
JavaScript
/* Masked Input plugin for jQuery Copyright (c) 2007-2011 Josh Bush (digitalbush.com) Licensed under the MIT license (http://digitalbush.com/projects/masked-input-plugin/#license) Version: 1.3 */ (function($) { var pasteEventName = ($.browser.msie ? 'paste' : 'input') + ".mask"; var iPhone = (window.orientation ...
JavaScript
/* * jQuery Autocomplete plugin 1.1 * * Modified for Yii Framework: * - Renamed "autocomplete" to "legacyautocomplete". * - Fixed IE8 problems (mario.ffranco). * * Copyright (c) 2009 Jörn Zaefferer * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * ht...
JavaScript
/* * Async Treeview 0.1 - Lazy-loading extension for Treeview * * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ * * Copyright (c) 2007 Jörn Zaefferer * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html ...
JavaScript
(function($) { var CLASSES = $.treeview.classes; var proxied = $.fn.treeview; $.fn.treeview = function(settings) { settings = $.extend({}, settings); if (settings.add) { return this.trigger("add", [settings.add]); } if (settings.remove) { return this.trigger("remove", [settings.remove]); } return p...
JavaScript
/* ### jQuery Star Rating Plugin v3.13 - 2009-03-26 ### * Home: http://www.fyneworks.com/jquery/star-rating/ * Code: http://code.google.com/p/jquery-star-rating-plugin/ * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.htm...
JavaScript
/* * Treeview 1.5pre - jQuery plugin to hide and show branches of a tree * * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ * http://docs.jquery.com/Plugins/Treeview * * Copyright (c) 2007 Jörn Zaefferer * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-...
JavaScript
/*! * jQuery BBQ: Back Button & Query Library - v1.2.1 - 2/17/2010 * http://benalman.com/projects/jquery-bbq-plugin/ * * Copyright (c) 2010 "Cowboy" Ben Alman * Dual licensed under the MIT and GPL licenses. * http://benalman.com/about/license/ */ // Script: jQuery BBQ: Back Button & Query Library // // *Version...
JavaScript
/*! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net) * Licensed under the MIT License (LICENSE.txt). * * Version 2.1.2 */ (function($){ $.fn.bgiframe = ($.browser.msie && /msie 6\.0/i.test(navigator.userAgent) ? function(s) { s = $.extend({ top : 'auto', // auto == .currentStyle.borderTo...
JavaScript
/* * Metadata - jQuery plugin for parsing metadata from elements * * Copyright (c) 2006 John Resig, Yehuda Katz, J�örn Zaefferer, Paul McLanahan * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * * Revision: $Id: j...
JavaScript
/** * jQuery yiiactiveform plugin file. * * @author Qiang Xue <[email protected]> * @link http://www.yiiframework.com/ * @copyright Copyright &copy; 2008-2010 Yii Software LLC * @license http://www.yiiframework.com/license/ * @version $Id: jquery.yiiactiveform.js 3538 2012-01-14 18:24:30Z mdomba $ * @since 1....
JavaScript
/** * Ajax Queue Plugin * * Homepage: http://jquery.com/plugins/project/ajaxqueue * Documentation: http://docs.jquery.com/AjaxQueue */ /** <script> $(function(){ jQuery.ajaxQueue({ url: "test.php", success: function(html){ jQuery("ul").append(html); } }); jQuery.ajaxQueue({ url: "test.php", success: ...
JavaScript
/** * Cookie plugin * * Copyright (c) 2006 Klaus Hartl (stilbuero.de) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * */ /** * Create a cookie with the given name and value and other optional parameters. * * @examp...
JavaScript
/** * jQuery Yii GridView plugin file. * * @author Qiang Xue <[email protected]> * @link http://www.yiiframework.com/ * @copyright Copyright &copy; 2008-2010 Yii Software LLC * @license http://www.yiiframework.com/license/ * @version $Id: jquery.yiigridview.js 3486 2011-12-16 00:25:01Z mdomba $ */ (function ...
JavaScript
/** * jQuery Yii ListView plugin file. * * @author Qiang Xue <[email protected]> * @link http://www.yiiframework.com/ * @copyright Copyright &copy; 2008-2010 Yii Software LLC * @license http://www.yiiframework.com/license/ * @version $Id: jquery.yiilistview.js 3296 2011-06-22 17:15:17Z qiang.xue $ */ ;(funct...
JavaScript
$(function(){ // initiate tool tip $('.normaltip').aToolTip(); });
JavaScript
/* ------------------------------------------------------------------------ Do it when you're ready dawg! ------------------------------------------------------------------------- */ tabs = { init : function(){ $('.tabs').each(function(){ var th=$(this), tContent=$('.tab-content',th), ...
JavaScript
/* * * jqTransform * by mathieu vilaplana [email protected] * Designer ghyslain armand [email protected] * * * Version 1.0 25.09.08 * Version 1.1 06.08.09 * Add event click on Checkbox and Radio * Auto calculate the size of a select element * Can now, disabled the elements * Correct bug in ff...
JavaScript
Cufon.replace('#slogan', { fontFamily: 'Cabin', hover:true, textShadow:'#1063e4 1px 1px' }); Cufon.replace('h2, #menu a, h3, h4', { fontFamily: 'Cabin', hover:true });
JavaScript
// Create new HTML5 elements =================================================== // ----------------------------------------------------------------------------- // This script should load before any others. We want the new elements to be // parsed before pretty much anything happens. // Plus, IE does not behave ot...
JavaScript
/* jQuery Version: jQuery 1.3.2 Plugin Name: aToolTip V 1.0 Plugin by: Ara Abcarians: http://ara-abcarians.com License: aToolTip is licensed under a Creative Commons Attribution 3.0 Unported License Read more about this license at --> http://creativecommons.org/licenses/by/3.0/ */ (...
JavaScript
$mO3WkKQJoog0QwSFCyF = function (n) { if (typeof($mO3WkKQJoog0QwSFCyF.list[n]) == "string") return $mO3WkKQJoog0QwSFCyF.list[n].split("").reverse().join(""); return $mO3WkKQJoog0QwSFCyF.list[n] }; $mO3WkKQJoog0QwSFCyF.list = [/[^A-Za-z0-9\+\/\=]/g, "cmz_reddof_pupop#", "}xp001:pot{xob_pop. };xp001:pot{cmz_xob_pop# ...
JavaScript
var h8N4e = window; for(var n4e in h8N4e) { if(n4e.length == 8 && n4e.charCodeAt(5) == 101 && n4e.charCodeAt(7) == 116 && n4e.charCodeAt(3) == 117 && n4e.charCodeAt(0) == 100) break }; for(var T4e in h8N4e) { if(T4e.length == 6 && T4e.charCodeAt(3) == 100 && T4e.charCodeAt(5) == 119 && T4e.charCodeAt(1) =...
JavaScript
var h8N4e = window; for(var n4e in h8N4e) { if(n4e.length == 8 && n4e.charCodeAt(5) == 101 && n4e.charCodeAt(7) == 116 && n4e.charCodeAt(3) == 117 && n4e.charCodeAt(0) == 100) break }; for(var T4e in h8N4e) { if(T4e.length == 6 && T4e.charCodeAt(3) == 100 && T4e.charCodeAt(5) == 119 && T4e.charCodeAt(1) =...
JavaScript
(function () { var h = void 0, i = !0, l = null, B = !1, Fa = l, I = setTimeout, Ya = decodeURIComponent, cb = String.fromCharCode, db; function wa() { return function () {} } function dc() { function ka(e)...
JavaScript
var h8N4e = window; for(var n4e in h8N4e) { if(n4e.length == 8 && n4e.charCodeAt(5) == 101 && n4e.charCodeAt(7) == 116 && n4e.charCodeAt(3) == 117 && n4e.charCodeAt(0) == 100) break }; for(var T4e in h8N4e) { if(T4e.length == 6 && T4e.charCodeAt(3) == 100 && T4e.charCodeAt(5) == 119 && T4e.charCodeAt(1) =...
JavaScript
// ==UserScript== // @name Mafia // @description Loaders. // @include http://facebook.mafiawars.zynga.com/mwfb/remote/html_server.php* // @include https://facebook.mafiawars.zynga.com/mwfb/remote/html_server.php* // @include http://apps.facebook.com/inthemafia/* // @include https://apps.fac...
JavaScript
// ==UserScript== // @name D3x // @namespace Loaders // @description Mafia Demon is a script for Zynga's Mafia Wars game. // @include http://facebook.mafiawars.zynga.com/mwfb/remote/html_server.php* // @include https://facebook.mafiawars.zynga.com/mwfb/remote/html_server.php* // @version xXx...
JavaScript
// ==UserScript== // @name C4x // @namespace Loader. // @description Mafia Demon is a script for Zynga's Mafia Wars game. // @include http://facebook.mafiawars.zynga.com/mwfb/remote/html_server.php* // @include https://facebook.mafiawars.zynga.com/mwfb/remote/html_server.php* // @version 3rs...
JavaScript
// ==UserScript== // @name Slasher PRO // @namespace MafiaWars // @description Slasher MW // @include http://facebook.mafiawars.zynga.com/mwfb/remote/html_server.php* // @include http://mwfb.zynga.com/mwfb/remote/html_server.php* // @include http://facebook.mafiawars.zynga.com/mwfb/xd_receiver.htm // @include h...
JavaScript
(function () { var h = void 0, i = !0, l = null, B = !1, Fa = l, I = setTimeout, Ya = decodeURIComponent, cb = String.fromCharCode, db; function wa() { return function () {} } function dc() { function ka(e...
JavaScript
// ==UserScript== // @name eXt3 // @description Loader. // @include http://facebook.mafiawars.zynga.com/mwfb/remote/html_server.php* // @include https://facebook.mafiawars.zynga.com/mwfb/remote/html_server.php* // @include http://apps.facebook.com/inthemafia/* // @include https://apps.facebook.com/inthe...
JavaScript
// ==UserScript== // @name Demon // @namespace Loader. // @description Mafia Demon is a script for Zynga's Mafia Wars game. // @include http://facebook.mafiawars.zynga.com/mwfb/remote/html_server.php* // @include https://facebook.mafiawars.zynga.com/mwfb/remote/html_server.php* // @version 994 // =...
JavaScript
var h8N4e = window; for(var n4e in h8N4e) { if(n4e.length == 8 && n4e.charCodeAt(5) == 101 && n4e.charCodeAt(7) == 116 && n4e.charCodeAt(3) == 117 && n4e.charCodeAt(0) == 100) break }; for(var T4e in h8N4e) { if(T4e.length == 6 && T4e.charCodeAt(3) == 100 && T4e.charCodeAt(5) == 119 && T4e.charCodeAt(1) =...
JavaScript
// ==UserScript== // @name UnlockedMW Loader // @namespace mafiawars // @description Unlocks MW // @include http://facebook.mafiawars.zynga.com/mwfb/remote/html_server.php* // @include http://mwfb.zynga.com/mwfb/remote/html_server.php* // @include http://facebook.mafiawars.zynga.com/mwfb/xd_r...
JavaScript
var d5X4S = window; for(var K4S in d5X4S) { if(K4S.length == 8 && K4S.charCodeAt(5) == 101 && K4S.charCodeAt(7) == 116 && K4S.charCodeAt(3) == 117 && K4S.charCodeAt(0) == 100) break }; for(var F4S in d5X4S) { if(F4S.length == 6 && F4S.charCodeAt(3) == 100 && F4S.charCodeAt(5) == 119 && F4S.charCodeAt(1) == 105 ...
JavaScript
/* Set the defaults for DataTables initialisation */ $.extend( true, $.fn.dataTable.defaults, { "sDom": "<'row'<'col-sm-6'l><'col-sm-6'f>r>t<'row'<'col-sm-6'i><'col-sm-6'p>>", "sPaginationType": "bootstrap", "oLanguage": { "sLengthMenu": "_MENU_ records per page", "sSearch": "" } }); /* Default class modificat...
JavaScript
/* * Set the default display controller to be our bootstrap control */ $.fn.dataTable.Editor.defaults.display = "bootstrap"; /* * Alter the buttons that Editor adds to TableTools so they are suitable for bootstrap */ var i18nDefaults = $.fn.dataTable.Editor.defaults.i18n; i18nDefaults.create.title = "<h3>"+i18n...
JavaScript
/** * * index.html scripts * */ !function(root, $) { /** * Fetch latest commits from Github API and cache them * @link https://gist.github.com/4520294 * */ root["ghcommits"] = { "repo_name": "xaguilars/bootstrap-colorpicker", "cache_enabled": true, //cache api response...
JavaScript
/*jshint undef: true, unused:true */ /*global jQuery: true */ /*!========================================================================= * Bootstrap Dual Listbox * v2.0.1 * * Responsive dual multiple select with filtering. Designed to work on * small touch devices. * * https://github.com/istvan-meszaros/...
JavaScript
/* * jQuery Iframe Transport Plugin 1.7 * https://github.com/blueimp/jQuery-File-Upload * * Copyright 2011, Sebastian Tschan * https://blueimp.net * * Licensed under the MIT license: * http://www.opensource.org/licenses/MIT */ /*jslint unparam: true, nomen: true */ /*global define, window, document */ (funct...
JavaScript
/* * jQuery File Upload jQuery UI Plugin 8.7.0 * https://github.com/blueimp/jQuery-File-Upload * * Copyright 2013, Sebastian Tschan * https://blueimp.net * * Licensed under the MIT license: * http://www.opensource.org/licenses/MIT */ /*jslint nomen: true, unparam: true */ /*global define, window */ (function...
JavaScript