code
stringlengths
2
1.05M
var buster = require("buster"); var assert = buster.assert; var streamLogger = require("./../lib/stream-logger"); buster.testCase("stream logger", { setUp: function () { var self = this; this.stdout = ""; this.stderr = ""; var join = function (arr, sep) { return [].join.call(arr, se...
/* * Copyright (c) 2014 - present Adobe Systems Incorporated. All rights reserved. * * 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 * ...
import { keyframeSelectorKeywords } from "../reference/keywordSets" /** * Check whether a string is a keyframe selector. * * @param {string} selector * @return {boolean} If `true`, the selector is a keyframe selector */ export default function (selector) { if (keyframeSelectorKeywords.has(selector)) { return tr...
/** * @fileoverview Rule to flag block statements that do not use the one true brace style * @author Ian Christian Myers */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //---------------------------------------------------------------------------...
import './jumpToMessage'; import './providers'; import { OEmbed } from './server'; export { OEmbed, };
/** * @author spidersharma / http://eduperiment.com/ */ /** * UnrealBloomPass is inspired by the bloom pass of Unreal Engine. It creates a * mip map chain of bloom textures and blurs them with different radii. Because * of the weighted combination of mips, and because larger blurs are done on * higher mips, this...
(function() { var Declaration, TransformDecl, __hasProp = {}.hasOwnProperty, __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(...
'use strict' const addNestedValue = require('./add-nested-value') const getFormFields = (form) => { const target = {} const elements = form.elements || [] for (let i = 0; i < elements.length; i++) { const e = elements[i] if (!e.hasAttribute('name')) { continue } let type = 'TEXT' swi...
!function(e){"object"==typeof exports&&"object"==typeof module?e(require("../../lib/codemirror"),require("./runmode")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","./runmode"],e):e(CodeMirror)}(function(d){"use strict";var n=/^(p|li|div|h\\d|pre|blockquote|td)$/;function u(e,o){if(3==e.nodeType...
'use strict'; exports.__esModule = true; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writabl...
/* GRUNT instructions 1. ensure you have dependencies installed run `npm install` in the root directory of the repo to get dev dependencies 2. run `grunt` in root dir of the repo in a shell to get the watcher started The watcher looks at files. When a file is added or changed it passes the file through jshint 3. ...
/* This file is part of Ext JS 4.2 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact Commercial Usage Licensees holding valid commercial licenses may use this file in accordance with the Commercial Software License Agreement provided with the Software or, alternatively, in accordance with th...
/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'format', 'gl', { label: 'Formato', panelTitle: 'Formato', tag_address: 'Enderezo', tag_div: 'Paragraph (DIV)', tag_h1: 'Enacabezado 1...
// moment.js language configuration // language : german (de) // author : lluchs : https://github.com/lluchs // author: Menelion Elensúle: https://github.com/Oire (function (factory) { if (typeof define === 'function' && define.amd) { define(['moment'], factory); // AMD } else if (typeof export...
version https://git-lfs.github.com/spec/v1 oid sha256:c8fac8516afadc98edd20403611c110a4ca1165abd2c4314b1492a5e8b70d860 size 570
/** * Created by aleckim on 2018. 1. 2.. */ var start = angular.module('controller.nation', []); start.controller('NationCtrl', function($scope, Util, WeatherUtil, $ionicHistory, $ionicLoading, Units) { var TYPE_SKY_TEMP = 0; var TYPE_RAIN = 1; var TYPE_WIND = 2; var weatherDataList ...
Package.describe({ summary: "Make HTTP calls to remote servers", version: '1.1.1' }); Npm.depends({request: "2.53.0"}); Package.onUse(function (api) { api.use([ 'underscore', 'url', 'ecmascript' ]); api.export('HTTP'); api.export('HTTPInternals', 'server'); api.addFiles('httpcall_common.js'...
/* global require, module */ /* jshint node: true*/ var EmberApp = require('ember-cli/lib/broccoli/ember-addon'); var merge = require('broccoli-merge-trees'); var globals = require('./lib/globals'); var yuidoc = require('./lib/yuidoc'); module.exports = function(defaults) { var app = new EmberApp(defaults, { ...
module.exports = { parse : { appKey:'UF8d6AANHEJQF16gli8iFuxm4M8lkkX1fOQUwy76', restKey:'nIIafPJCIxjKPoRqGiXc5YCrQ8D08F1qef8vcxrZ' } , screenshots : { apiUrl:'http://site2img-api.herokuapp.com/' } , site: { baseUrl: 'http://in1-app.herokuapp.com' } };
import t from "../../lib/index.js"; import definitions from "../../lib/definitions/index.js"; import formatBuilderName from "../utils/formatBuilderName.js"; import lowerFirst from "../utils/lowerFirst.js"; import stringifyValidator from "../utils/stringifyValidator.js"; function areAllRemainingFieldsNullable(fieldName...
Craft.StructureTableSorter = Garnish.DragSort.extend({ // Properties // ========================================================================= tableView: null, structureId: null, maxLevels: null, _helperMargin: null, _$firstRowCells: null, _$titleHelperCell: null, _titleHelperCellOuterWidth: null, _a...
// define global object sentinel = this.sentinel || (function () { var isArray = Array.isArray, selectorToAnimationMap = {}, animationCallbacks = {}, styleEl, styleSheet, cssRules; return { /** * Add watcher. * @param {array} cssSelectors - List of CSS selector strings * @param {Functio...
'use strict'; module.exports = function (math) { var util = require('../../util/index'), BigNumber = math.type.BigNumber, Complex = require('../../type/Complex'), collection = math.collection, isNumber = util.number.isNumber, isBoolean = util['boolean'].isBoolean, isComplex = Co...
/** * * Get current device activity. * * <example> :getCurrentDeviceActivity.js it('should get current Android activity', function () { var activity = browser.getCurrentDeviceActivity(); console.log(activity); // returns ".MainActivity" }); * </example> * * @see https://github.com/ap...
'use strict'; exports.__esModule = true; var _extends2 = require('babel-runtime/helpers/extends'); var _extends3 = _interopRequireDefault(_extends2); var _objectWithoutProperties2 = require('babel-runtime/helpers/objectWithoutProperties'); var _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProper...
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var _useDrop=require("./useDrop");Object.keys(_useDrop).forEach(function(e){"default"!==e&&"__esModule"!==e&&(e in exports&&exports[e]===_useDrop[e]||Object.defineProperty(exports,e,{enumerable:!0,get:function(){return _useDrop[e]}}))});
$(function() { });
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate...
import { Directive, HostListener, Input } from '@angular/core'; import { MenuController } from './menu-controller'; /** * @name MenuClose * @description * The `menuClose` directive can be placed on any button to close an open menu. * * @usage * * A simple `menuClose` button can be added using the following marku...
import EmberObject from 'ember-runtime/system/object'; import {SuiteModuleBuilder} from 'ember-runtime/tests/suites/suite'; var suite = SuiteModuleBuilder.create(); // .......................................................... // filter() // suite.module('filter'); suite.test('filter should invoke on each item', fu...
const Server = require('karma').Server; const ROOT = require('../const').ROOT; exports.task = function(done) { const srv = new Server({ logLevel: 'warn', configFile: ROOT + '/config/karma-sauce.conf.js' }, done); srv.start(); };
module.exports={A:{A:{"2":"H E G C B A WB"},B:{"2":"D u g I J"},C:{"1":"0 1 2 4 5 6 K","2":"3 UB x F L H E G C B A D u g I J Y O e P Q R S T U V W X v Z a b c d N f M h i j k l m n o p q r s t y SB RB"},D:{"1":"5 6 GB AB CB VB DB EB","2":"0 1 2 3 4 F L H E G C B A D u g I J Y O e P Q R S T U V W X v Z a b c d N f M h i...
//将路由注入进来 var showApp= angular.module('show', ['ngRoute']); //配置路由 showApp.config(function($routeProvider) { $routeProvider .when('/', { templateUrl : 'main.html' }) .when('/hot-site/', {redirectTo: '/hot-site/0'}) .when('/hot-site/:index', { templateUrl : 'template/sho...
var assert = require('assert'); // assert up here to ensure that hoisting works as expected assert('gen' == gen.name); assert('GeneratorFunction' == gen.constructor.name); function *gen () {} var g = gen(); assert('function' == typeof g.next); assert('function' == typeof g.throw);
const normalizeMin = (value, previousValue, allValues, previousAllValues) => { if (allValues.max !== previousAllValues.max) { // max changed if (value === undefined || Number(allValues.max) < Number(value)) { return allValues.max } } return value } export default normalizeMin
/* Highcharts JS v6.1.0 (2018-04-13) Money Flow Index indicator for Highstock (c) 2010-2017 Grzegorz Blachliski License: www.highcharts.com/license */ (function(e){"object"===typeof module&&module.exports?module.exports=e:e(Highcharts)})(function(e){(function(e){function p(b){return b.reduce(function(c,b){retur...
steal('funcunit/qunit','jquery/lang/observe/delegate',function(){ module('jquery/lang/observe') test("Basic Observe",9,function(){ var state = new $.O({ category : 5, productType : 4, properties : { brand: [], model : [], price : [] } }); var added; state.bind("change", function(ev, att...
var R = require('..'); var eq = require('./shared/eq'); describe('apply', function() { it('applies function to argument list', function() { eq(R.apply(Math.max, [1, 2, 3, -99, 42, 6, 7]), 42); }); it('is curried', function() { eq(R.apply(Math.max)([1, 2, 3, -99, 42, 6, 7]), 42); }); it('provides n...
// Custom events are not natively supported, so you have to hijack a random // event. // // Just use jQuery.
//=============================================================================================================== // System : Sandcastle Help File Builder // File : branding-Website.js // Author : Eric Woodruff (Eric@EWoodruff.us) // Updated : 03/04/2015 // Note : Copyright 2014-2015, Eric Woodruff, All right...
enum E { "foo", "bar" = 1, }
(function(){/* Copyright (c) 2016 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at ...
(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global.scrollDir = factory()); }(this, (function () { 'use strict'; var defaults = { el: document.documentElement, win: window...
(function webpackUniversalModuleDefinition(root, factory) { if(typeof exports === 'object' && typeof module === 'object') module.exports = factory(); else if(typeof define === 'function' && define.amd) define([], factory); else if(typeof exports === 'object') exports["Cleave"] = factory(); else root["Cleave...
/*! * Inferno.h v1.5.5 * (c) 2017 Dominic Gannaway' * Released under the MIT License. */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('inferno')) : typeof define === 'function' && define.amd ? define(['inferno'], factory) : (globa...
loadIonicon('<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 76c48.1 0 93.3 18.7 127.3 52.7S436 207.9 436 256s-18.7 93.3-52.7 127.3S304.1 436 256 436c-48.1 0-93.3-18.7-127.3-52.7S76 304.1 76 256s18.7-93.3 52.7-127.3S207.9 76 256 76m0-28C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-...
'use strict' const BB = require('bluebird') const andAddParentToErrors = require('./and-add-parent-to-errors.js') const failedDependency = require('./deps.js').failedDependency const isInstallable = BB.promisify(require('./validate-args.js').isInstallable) const moduleName = require('../utils/module-name.js') const n...
/*! * angular-translate - v2.17.0 - 2017-12-21 * * Copyright (c) 2017 The angular-translate team, Pascal Precht; Licensed MIT */ (function (root, factory) { if (typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module unless amdModuleId is set define([], function () { r...
/** PURE_IMPORTS_START .._scheduler_async,.._operators_timeoutWith PURE_IMPORTS_END */ import { async } from '../scheduler/async'; import { timeoutWith as higherOrder } from '../operators/timeoutWith'; /* tslint:enable:max-line-length */ /** * * Errors if Observable does not emit a value in given time span, in case o...
/** * @fileoverview Rule to flag use of an object property of the global object (Math and JSON) as a function * @author James Allardice */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------...
define( "dojo/cldr/nls/de/number", //begin v1.x content { "group": ".", "percentSign": "%", "exponential": "E", "scientificFormat": "#E0", "percentFormat": "#,##0 %", "list": ";", "infinity": "∞", "patternDigit": "#", "minusSign": "-", "decimal": ",", "nan": "NaN", "nativeZeroDigit": "0", "perMille": "‰", ...
var convert = require('./convert'), func = convert('invertBy', require('../invertBy')); func.placeholder = require('./placeholder'); module.exports = func;
var React = require('react'), Application = require('./public/application') window.onload = function() { React.render(<Application />, document.getElementById('app')) }
'use strict'; exports.__esModule = true; exports['default'] = shallowEqual; function shallowEqual(objA, objB) { if (objA === objB) { return true; } if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) { return false; } var keysA = Object.keys(objA); var key...
(function(c){c.fn.stupidtable=function(b){return this.each(function(){var a=c(this);b=b||{};b=c.extend({},c.fn.stupidtable.default_sort_fns,b);a.data("sortFns",b);a.on("click.stupidtable","thead th",function(){c(this).stupidsort()})})};c.fn.stupidsort=function(b){var a=c(this),g=0,f=c.fn.stupidtable.dir,e=a.closest("ta...
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v1.0.0-master-19c11fd */ !function(a,i,t){"use strict";!function(){function a(){return{restrict:"E",require:["^?mdFabSpeedDial","^?mdFabToolbar"],compile:function(a,t){var n=a.children(),e=!1;i.forEach(["","data-","x-"],function(a...
/* eslint-disable no-console */ export default function l(stuffToLog = this) { console.log(stuffToLog); return this; } // [1, 2, 3].map(x => x + 1)::l().filter(x => x < 3)::l() // [2, 3, 4] // [2] // wow wat // <Spring endValue={...}> // {() => // <div> // bla // </div> // ::log('hi')::log('ke...
/*! * MediaElement.js * http://www.mediaelementjs.com/ * * Wrapper that mimics native HTML5 MediaElement (audio and video) * using a variety of technologies (pure JavaScript, Flash, iframe) * * Copyright 2010-2017, John Dyer (http://j.hn/) * License: MIT * */(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[...
module.exports = require("npm:https-browserify@0.0.0/index");
/* Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'sourcearea', 'fo', { toolbar: 'Kelda' } );
(function ($) { $.Redactor.opts.langs['zh-CN'] = { html: 'HTML代码', video: '视频', image: '图片', table: '表格', link: '链接', link_insert: '插入链接', link_edit: 'Edit link', unlink: '取消链接', formatting: '样式', paragraph: '段落', quote: '引用', code: '代码', header1: '一级标题', header2: '二级标题', header3: '三级标题', header4: '四级标题...
/* Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'flash', 'da', { access: 'Scriptadgang', accessAlways: 'Altid', accessNever: 'Aldrig', accessSameDomain: 'Samme domæne', alignAbsBottom: 'Absolut...
//This is dummy file. To commit unnittest-files folder git needs a file.
module.exports = function(hljs) { var RUBY_METHOD_RE = '[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?'; var RUBY_KEYWORDS = { keyword: 'and then defined module in return redo if BEGIN retry end for self when ' + 'next until do begin unless END rescue else break u...
jQuery.extend(jQuery.validator.messages,{required:"Ovo polje je obavezno.",remote:"Ovo polje treba popraviti.",email:"Unesite ispravnu e-mail adresu.",url:"Unesite ispravan URL.",date:"Unesite ispravan datum.",dateISO:"Unesite ispravan datum (ISO).",number:"Unesite ispravan broj.",digits:"Unesite samo brojeve.",creditc...
define(function () { return function () { describe('PubSub', function () { it('listen() without context', function (done) { $.listen('foo', function (arg) { expect(arg).to.be('bar'); done(); }); $.emit('foo', 'bar'); }); it('listen() with context', fun...
/* Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'pagebreak', 'da', { alt: 'Sideskift', toolbar: 'Indsæt sideskift' } );
;/*! showdown 17-12-2016 */ (function(){ /** * Created by Tivie on 13-07-2015. */ function getDefaultOpts(simple) { 'use strict'; var defaultOptions = { omitExtraWLInCodeBlocks: { defaultValue: false, describe: 'Omit the default extra whiteline added to code blocks', type: 'boolean' ...
/* */ "format cjs"; /* eslint no-unused-vars: 0 */ "use strict"; exports.__esModule = true; // istanbul ignore next function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key))...
YUI.add('loader-yui3', function(Y) { /* This file is auto-generated by src/loader/meta_join.py */ /** * YUI 3 module metadata * @module loader * @submodule yui3 */ YUI.Env[Y.version].modules = YUI.Env[Y.version].modules || { "anim": { "submodules": { "anim-base": { "require...
'use strict'; exports.type = 'perItem'; exports.active = true; exports.description = 'converts colors: rgb() to #rrggbb and #rrggbb to #rgb'; exports.params = { currentColor: false, names2hex: true, rgb2hex: true, shorthex: true, shortname: true }; var collections = require('./_collections'), ...
IntlMessageFormat.__addLocaleData({locale:"jmc", messageformat:{pluralFunction:function (n) { n=Math.floor(n);if(n===1)return"one";return"other"; }}});
/*! * Kraken v7.3.0: A lightweight front-end boilerplate * (c) 2016 Chris Ferdinandi * MIT License * http://github.com/cferdinandi/kraken */ ;(function (window, document, undefined) { 'use strict'; // SVG feature detection var supports = !!document.createElementNS && !!document.createElementNS('http://www.w3...
(function($) { if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) _wpcf7 = {}; _wpcf7 = $.extend({ cached: 0 }, _wpcf7); $(function() { _wpcf7.supportHtml5 = $.wpcf7SupportHtml5(); $('div.wpcf7 > form').wpcf7InitForm(); }); $.fn.wpcf7InitForm = function() { this.ajaxForm({ beforeSubmit: function(a...
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.ex...
// http://dev.w3.org/csswg/css-color/ function Color(value) { this.r = 0; this.g = 0; this.b = 0; this.a = null; var result = this.fromArray(value) || this.namedColor(value) || this.rgb(value) || this.rgba(value) || this.hex6(value) || this.hex3(value); } Co...
/** * Klass.js - copyright @ded & @fat * https://github.com/polvero/klass * Follow our software http://twitter.com/dedfat * MIT License */ !function(a){function g(a){var f=this,g,h=e(a)?(g={},a):(g=a,this),i=function i(){f.apply(this,arguments),h.apply(this,arguments)},j=new c;i.methods=function(a){for(var c ...
/*! * angular-translate - v2.5.1 - 2014-12-10 * http://github.com/angular-translate/angular-translate * Copyright (c) 2014 ; Licensed MIT */ angular.module('pascalprecht.translate') /** * @ngdoc object * @name pascalprecht.translate.$translatePartialLoaderProvider * * @description * By using a $translatePartia...
/*! * jQuery UI Progressbar 1.11.1 * http://jqueryui.com * * Copyright 2014 jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * * http://api.jqueryui.com/progressbar/ */ (function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. R...
/* By André Knieriem, www.andreknieriem.de Available for use under the MIT License */ ;( function( $, window, document, undefined ) { 'use strict'; $.fn.simpleLightbox = function( options ) { var options = $.extend({ overlay: true, spinner: true, nav: true, navText: ['&larr;','&r...
// Generated by CoffeeScript 1.7.1 (function() { var $, cardFromNumber, cardFromType, cards, defaultFormat, formatBackCardNumber, formatBackExpiry, formatCardNumber, formatExpiry, formatForwardExpiry, formatForwardSlash, hasTextSelected, luhnCheck, reFormatCardNumber, restrictCVC, restrictCardNumber, restrictExpiry, ...
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = _filter; var _arrayMap = require('lodash/_arrayMap'); var _arrayMap2 = _interopRequireDefault(_arrayMap); var _baseProperty = require('lodash/_baseProperty'); var _baseProperty2 = _interopRequireDefault(_baseProperty...
// Copyright 2012 The Closure Library Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless requ...
/*! * jQuery Lazy - v0.6.2 * http://jquery.eisbehr.de/lazy/ * * Copyright 2012 - 2015, Daniel 'Eisbehr' Kern * * Dual licensed under the MIT and GPL-2.0 licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl-2.0.html * * $("img.lazy").lazy(); */ ;(function($, window...
/** * API Bound Models for AngularJS * @version v0.4.0 - 2013-10-25 * @link https://github.com/angular-platanus/angular-restmod * @author Ignacio Baixas <iobaixas@gmai.com> * @license MIT License, http://www.opensource.org/licenses/MIT */ !function(a,b){"use strict";a.module("plRestmod").factory("DirtyModel",["$r...
/*! * jquery.inputmask.phone.extensions.js * http://github.com/RobinHerbots/jquery.inputmask * Copyright (c) 2010 - 2014 Robin Herbots * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) * Version: 3.1.45 */ ;!function(a){"function"==typeof define&&define.amd?define(["jquery","./jquery...
(function($){ var id = 0; var isNumber = function(string){ return (typeof string == 'number' || (string && string == string * 1)); }; var retDefault = function(val, def){ if(!(typeof val == 'number' || (val && val == val * 1))){ return def; } return val * 1; }; var createOpts = ['step', 'min', 'max',...
// Backbone.Marionette, v0.10.2 // Copyright (c)2012 Derick Bailey, Muted Solutions, LLC. // Distributed under MIT license // http://github.com/derickbailey/backbone.marionette Backbone.Marionette = (function(Backbone, _, $){ var Marionette = {}; // EventBinder // ----------- // The event binder facilitates the bin...
/*! * jBone v0.0.8 - 2013-11-13 - Library for DOM manipulation * * https://github.com/kupriyanenko/jbone * * Copyright 2013 Alexey Kupriyanenko * Released under the MIT license. */ (function(exports, global) { global["true"] = exports; var rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/; var rquickExpr = ...
/* Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'wsc', 'th', { btnIgnore: 'ยกเว้น', btnIgnoreAll: 'ยกเว้นทั้งหมด', btnReplace: 'แทนที่', btnReplaceAll: 'แทนที่ทั้งหมด', btnUndo: 'ยกเลิก', ch...
if ($.fn.pagination){ $.fn.pagination.defaults.beforePageText = 'Strana'; $.fn.pagination.defaults.afterPageText = 'z {pages}'; $.fn.pagination.defaults.displayMsg = 'Zobrazuji {from} do {to} z {total} položky'; } if ($.fn.datagrid){ $.fn.datagrid.defaults.loadMsg = 'Zpracování, čekejte prosím ...'; } if ($.fn.tree...
/* * Globalize Culture sr-Latn-ME * * http://github.com/jquery/globalize * * Copyright Software Freedom Conservancy, Inc. * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * This file was generated by the Globalize Culture Generator * Translation: bugs found in this file n...
/* * /MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js * * Copyright (c) 2009-2016 The MathJax Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * h...
/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'table', 'en-au', { border: 'Border size', caption: 'Caption', cell: { menu: 'Cell', insertBefore: 'Insert Cell Before', insertAfter: 'Insert...
/** * ag-grid - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components * @version v5.0.7 * @link http://www.ag-grid.com/ * @license MIT */
/* * Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved. * * 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 ri...
/* Copyright (c) 2006-2012 by OpenLayers Contributors (see authors.txt for * full list of contributors). Published under the 2-clause BSD license. * See license.txt in the OpenLayers distribution or repository for the * full text of the license. */ /** * @requires OpenLayers/Format/XML/VersionedOGC.js * @require...
/*! Amaze UI v2.2.0 ~ Old IE Fucker | by Amaze UI Team | (c) 2015 AllMobilize, Inc. | Licensed under MIT | 2015-01-28T06:01:01 UTC */ (function e(t, n, r) { function s(o, u) { if (!n[o]) { if (!t[o]) { var a = typeof require == "function" && require; if (!u && a) return a(o, !0); if ...
"use strict"; exports.__esModule = true; var _map = require("babel-runtime/core-js/map"); var _map2 = _interopRequireDefault(_map); var _classCallCheck2 = require("babel-runtime/helpers/classCallCheck"); var _classCallCheck3 = _interopRequireDefault(_classCallCheck2); var _possibleConstructorReturn2 = require("ba...
var count = (function abs(BigNumber) { var start = +new Date(), log, error, passed = 0, total = 0; if (typeof window === 'undefined') { log = console.log; error = console.error; } else { log = function (str) { document.body.innerHTML += str.replace('\...