code
stringlengths
2
1.05M
define([ 'lodash' ], function (_) { 'use strict'; function SqlQueryBuilder(target) { this.target = target; } function renderTagCondition (tag, index) { var str = ""; var operator = tag.operator; var value = tag.value; if (index > 0) { str = (tag.condition || 'AND') + ' '; } ...
/*global window, console, RTCSessionDescription, RoapConnection, webkitRTCPeerConnection*/ var Erizo = Erizo || {}; Erizo.FcStack = function (spec) { "use strict"; var that = {}; that.addStream = function (stream) {}; return that; };
import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <React.Fragment><path fill="none" d="M0 0h24v24H0V0z" /><path d="M11 5v11.17l-4.88-4.88c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41l6.59 6.59c.39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41a.9959.99...
'use strict'; angular.module('copayApp.controllers').controller('createController', function($scope, $rootScope, $location, $timeout, $log, lodash, go, profileService, configService, isMobile, isCordova) { var self = this; var defaults = configService.getDefaults(); this.isWindowsPhoneApp = isMobile.Win...
define( //begin v1.x content { "dateFormatItem-Ehm": "E h:mm a", "days-standAlone-short": [ "dg.", "dl.", "dt.", "dc.", "dj.", "dv.", "ds." ], "months-format-narrow": [ "GN", "FB", "MÇ", "AB", "MG", "JN", "JL", "AG", "ST", "OC", "NV", "DS" ], "field-second-relative+0": "ara",...
/** * Date Time * * DateTime utility class that spits out UTC timestamp strings usually used in a reporting, print-capable process. */ (function () { "use strict"; /** * Register the class with RequireJS. */ define([], function () { /** * Creates a date timestamp string. ...
/** * Module dependencies */ var csv = require('./') , i = 10 function bench (ops) { var data = [] for (var i = 0; i < ops; ++i) { data.push({ id: Math.random().toString(16).slice(2), value: data.length % 2 }); } console.time(ops + ' ops in'); csv(data); console.timeEnd(ops + ' ops in'); } while (i <...
exports.addRoutes = function(app) { //Auto updating server to new git push app.post('/git_pull', function(req, res) { console.log("Pulling...") run_cmd("git pull origin master"); console.log("Pulled!"); res.send("Pulled!", 200); }); app.get('/git_pull', function(req, res){ res.send("HEY YOU! Can't pull f...
/* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is * regenerated. */ '...
'use strict'; const isObject = require('./isObject'); const obj2Str = require('./obj2Str'); const NumberTag = '[object Number]'; module.exports = function isNumber(value) { if (isNaN(value)) return false; return typeof value === 'number' || (isObject(value) && obj2Str(value) === NumberTag); };
const webpackConfigFactory = require('./configFactory'); module.exports = function serverConfigFactory(options = {}, args = {}) { const { mode = 'production' } = options; return webpackConfigFactory({ target: 'server', mode }, args); };
const ClassForMetadata = Jymfony.Component.Metadata.Fixtures.ClassForMetadata; /** * @memberOf Jymfony.Component.Metadata.Fixtures */ export default class SubclassForMetadata extends ClassForMetadata { methodOne() { } }
const PartialGuild = require('./PartialGuild'); const PartialGuildChannel = require('./PartialGuildChannel'); const Constants = require('../util/Constants'); /* { max_age: 86400, code: 'CG9A5', guild: { splash: null, id: '123123123', icon: '123123123', name: 'name' }, created_at: '2...
// Versioning file define(['src/util/versionhandler'], function(VersionHandler) { var version = [2, 2, 2].join('.'); var dataHandler = new VersionHandler(), viewHandler = new VersionHandler(), view, data; viewHandler.version = version; dataHandler.setType('data'); viewHandler.setType('view'); dataHandle...
import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import { chainPropTypes } from '@material-ui/utils'; import withSty...
define(['backbone'], function(Backbone) { return Backbone.Model.extend({ initialize: function(file) { _.bindAll(this); this.file = file; this.set({ name: file.name, type: file.type, size: file.size }); ...
/* eslint-disable no-param-reassign, no-continue, no-underscore-dangle */ const net = require('net') const { EventEmitter } = require('events') const logger = require('p2p-chat-logger') const each = require('p2p-chat-utils/each') const noop = require('p2p-chat-utils/noop') const login = require('./login') const ensure...
import Ember from 'ember'; import { moduleForComponent, test } from 'ember-qunit'; import hbs from 'htmlbars-inline-precompile'; import { $hook, initialize as initializeHook } from 'ember-hook'; import { initialize as initializeStage } from 'affinity-engine-stage'; const { getOwner } = Ember; moduleForComponent('af...
/** * BoardEvent represents an event dispatched by Board * a BoardEvent object contains event type and corresponding details */ var BoardEvent = function(type, details) { //////////////////////////////////////////////// // Representation // this.type = type; this.details = details; }
var mocha = require('mocha'); module.exports = function (grunt) { /* add the grunt-mocha-test task */ grunt.loadNpmTasks('grunt-mocha-test'); /* grunt configuration */ grunt.initConfig({ mochaTest: { test: { options: { reporter: 'spec' }, src: ['tests/*.js'] } } }); /* test task */ ...
var http = require('http'); var _ = require('lodash'); var config = require('./config.js'); module.exports = function(){ var tempf = ''; var humidity = ''; var pressure = ''; function doUpdate(){ var path = '/weatherstation/updateweatherstation.php?action=updateraw&ID=' + config.id + '&PASSWORD=' + conf...
import $ from 'jquery'; import _ from 'lodash'; import utils from 'bigcommerce/stencil-utils'; import StencilDropDown from './stencil-dropdown'; export default function () { let stencilDropDown; const TOP_STYLING = 'top: 49px;'; const $quickSearchResults = $('.quickSearchResults'); const $quickSearchDi...
var React = require('react'); var classNames = require('classnames'); /** * SortButton Component * Used to add the sorting arrows to columns that are sortable. * * @class SortButton * @type {ReactComponent} * * @memberOf TableComponents * @see {@link TableComponents} */ var SortButton = React.createClass({ p...
describe("iD.svg.Areas", function () { var surface, projection = d3.geo.projection(function(x, y) { return [x, y]; }) .clipExtent([[0, 0], [Infinity, Infinity]]), all = d3.functor(true), none = d3.functor(false); beforeEach(function () { surface = d3.select(document....
"use strict"; exports.__esModule = true; var _react = require("react"); var _react2 = _interopRequireDefault(_react); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new...
/* * grunt-init * https://gruntjs.com/ * * Copyright (c) 2012 "Cowboy" Ben Alman, contributors * Licensed under the MIT license. */ 'use strict'; module.exports = function(grunt) { // Project configuration. grunt.initConfig({ jshint: { all: [ 'Gruntfile.js', 'tasks/*.js' ], ...
import { User } from 'models' import { filterUserFields } from 'utils' export default () => { return User.find({}).sort({createdAt: -1}).then(__users => { let dummyUsers = []; let users = []; __users.forEach(item => { if (item.isDummy) { return dummyUsers.push( filterUserFields(it...
// id - uuid // name - text // teacherId (fkey to teachers) "use strict"; module.exports = function(sequelize, DataTypes) { var classes = sequelize.define("classes", { id: { type: DataTypes.INTEGER, primaryKey: true, autoIncrement: true }, name: DataTypes.STRING }, { timestamps: ...
function a() { f((HEAPU8[10202] | 0) + 5 | 0); f(HEAPU8[10202] | 0); f(347); f(351); f(8); HEAP[1024] = 5; HEAP[1024] = 5; whee(12, 13); whee(12, 13); f((g = t(), g + g | 0) | 0); } function b($this, $__n) { $this = $this | 0; $__n = $__n | 0; var $4 = 0, $5 = 0, $10 = 0, $13 = 0, $14 = 0, $15...
'use strict'; angular.module("ngLocale", [], ["$provide", function($provide) { var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; $provide.value("$locale", { "DATETIME_FORMATS": { "AMPMS": [ "TO", "TK" ], "DAY": [ "yakshanba", "d...
"use strict"; const log = require("npmlog"); const { collectUpdates } = require("@lerna/collect-updates"); const { filterPackages } = require("@lerna/filter-packages"); module.exports.getFilteredPackages = getFilteredPackages; /** * @typedef {object} FilterOptions * @property {string} scope * @property {string} i...
/* This file is part of the Jasmine JSReporter project from Ivan De Marino. Copyright (C) 2011 Ivan De Marino (aka detro, aka detronizator), http://blog.ivandemarino.me, ivan.de.marino@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the fo...
declare module "redux-loop" { declare type Effect = $Subtype<{}>; declare type Reducer<S, A> = (state: S, action: A) => S | [S, Effect]; declare type ExtractStateType = <S, A>(r: (state: S, action: A) => any) => S; declare function combineReducers< Reducers: Object, State: $ObjMap<Reducers, ExtractSt...
/** * @file * Task: Serve. */ /* global module */ module.exports = function (gulp, plugins, options) { 'use strict'; gulp.task('serve', ['build:dev', 'browser-sync', 'watch']); };
'use strict'; var esprima; // Browserified version does not have esprima // // 1. For node.js just require module as deps // 2. For browser try to require mudule via external AMD system. // If not found - try to fallback to window.esprima. If not // found too - then fail to parse. // try { espri...
(function(){ 'use strict'; // Declare app level module which depends on the 3rd party libraries angular .module('DCX', [ 'ui.router', 'ngMaterial', 'ngMessages', 'ngAria', 'ngIdle' ]) .config( function(ENVIRONME...
/** * Default model configuration * (sails.config.models) * * Unless you override them, the following properties will be included * in each of your models. */ module.exports.models = { // Your app's default connection. // i.e. the name of one of your app's connections (see `config/connections.js`) // //...
process.on('message', function(msg) { process.send('success: message from worker'); });
// Set up! var a_canvas = document.getElementById("a"); var context = a_canvas.getContext("2d"); // Draw the face context.fillStyle = "yellow"; context.beginPath(); context.arc(95, 85, 40, 0, 2*Math.PI); context.closePath(); context.fill(); context.lineWidth = 2; context.stroke(); context.fillStyle = "black"; // Draw...
/* * Copyright (c) 2013 - 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 * ...
module.exports = function (grunt) { grunt.initConfig({ nugetpack: { dist: { src: 'tests/Package.nuspec', dest: 'tests/' } } }); grunt.loadTasks('tasks'); grunt.registerTask('default', ['nugetpack']); };
$(function () { $("select#dns_acl_country").change(function () { $.get( "/dns/regions", {country: this.value}, function (data) { var w = $("select#dns_acl_region"); w.empty(); w.append(data); }); }); });
'use strict'; // to enable these logs set `DEBUG=boot:03-load-content` or `DEBUG=boot:*` var log = require('debug')('boot:03-load-content'); module.exports = function (app) { if (app.dataSources.db.name !== 'Memory' && !process.env.INITDB) { return; } log('Creating categories and products'); var Catego...
(function(root, factory) { if(typeof exports === 'object') { module.exports = factory(); } else if(typeof define === 'function' && define.amd) { define('GMaps', [], factory); } root.GMaps = factory(); }(this, function() { /*! * GMaps.js v0.4.9 * http://hpneo.github.com/gmaps/ * * Copyright 2013...
})(this);
/** * Handles the display of reveal.js' optional slide number. */ export default class SlideNumber { constructor( Reveal ) { this.Reveal = Reveal; } render() { this.element = document.createElement( 'div' ); this.element.className = 'slide-number'; this.Reveal.getRevealElement().appendChild( this.elem...
'use strict'; describe('Controller: MainCtrl', function() { // load the controller's module beforeEach(module('softvApp')); var MainCtrl, scope; // Initialize the controller and a mock scope beforeEach(inject(function($controller, $rootScope) { scope = $rootScope.$new(); MainCtrl = $controller('MainCtrl'...
steal("jquery", "jquery/dom/animate", "jquery/dom/compare", "jquery/dom/cookie", "jquery/dom/dimensions", "jquery/dom/form_params", "jquery/dom/range", "jquery/dom/selection", "jquery/dom/styles", "jquery/dom/within", "jquery/event/default", "jquery/event/destroyed", "jquery/event/drag", 'jquery/event/drag...
var Cucumber = function(featureSource, supportCodeInitializer, options) { var configuration = Cucumber.VolatileConfiguration(featureSource, supportCodeInitializer, options); var runtime = Cucumber.Runtime(configuration); return runtime; }; Cucumber.Ast = require('./cucumber/ast'); // brows...
YUI.add('gallery-itsamodellistsyncpromise', function (Y, NAME) { 'use strict'; /*jshint maxlen:205 */ /** * * This module extends Y.ModelList by introducing Promised sync-methods. It also transforms Y.ModelList's sync-events into true events * with a defaultFunc which can be prevented. This means the 'on'-events ...
import invariant from 'invariant'; import isArray from 'lodash/isArray'; import isObject from 'lodash/isObject'; import matchesType from '../utils/matchesType'; export const BEGIN_DRAG = 'dnd-core/BEGIN_DRAG'; export const PUBLISH_DRAG_SOURCE = 'dnd-core/PUBLISH_DRAG_SOURCE'; export const HOVER = 'dnd-core/HOVER'; exp...
'use strict'; const path = require('path'); const fs = require('fs'); const noop = () => {}; before('initialization', function () { this.timeout(0); // Remove timeout limitation process.on('unhandledRejection', err => { // I'd throw the err, but we have a heisenbug on our hands and I'd // rather not have it sc...
/// <reference path="../lib/angular.1.2.1.js" /> // Directive that creates a searchable dropdown list. // Associated attributes:- // ac-model - use instead of ng-model // ac-options - use instead of ng-options. // Example:- <select class="ac-select" ac-model="colour" ac-options="c.name for c in colours"></select> ...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = { 'aliceblue': '#f0f8ff', 'antiquewhite': '#faebd7', 'aqua': '#00ffff', 'aquamarine': '#7fffd4', 'azure': '#f0ffff', 'beige': '#f5f5dc', 'bisque': '#ffe4c4', 'black': '#000000', 'blanchedal...
'use strict'; const { By, until } = require('selenium-webdriver'); const { register, Page, platforms } = require('../../../../../scripts/e2e'); class E2ETestPage extends Page { constructor(driver, platform) { super(driver, `http://localhost:3333/src/components/menu/test/standalone?ionic:mode=${platform}`); } ...
var test = require('tape') var fmt = require('../').transform var collapse = [ { program: 'var x = 1\n' + '\n' + '\n' + 'var z = 2\n', expected: 'var x = 1\n' + '\n' + 'var z = 2\n', msg: 'two empty lines should collapse to one' }, { program: 'var x = 1\n' + ...
var sizeOf = require('image-size'), Promise = require('bluebird'), _ = require('lodash'), path = require('path'), config = require('../../config'), common = require('../common'), urlUtils = require('../../lib/url-utils'), settingsCache = require('../../services/settings/cache'), storageU...
import {expect} from 'chai' import {setupComponentTest} from 'ember-mocha' import hbs from 'htmlbars-inline-precompile' import {beforeEach, describe, it} from 'mocha' describe('Integration: FrostBunsenError', function () { setupComponentTest('frost-bunsen-error', { integration: true }) beforeEach(function (...
$(document).ready(function() { $(".error").fitText(0.4); $(".desc").fitText(8, {minFontSize: '16px'}); });
// Converts an ArrayBuffer directly to base64, without any intermediate 'convert to string then // use window.btoa' step. According to my tests, this appears to be a faster approach: // http://jsperf.com/encoding-xhr-image-data/5 function base64ArrayBuffer(arrayBuffer) { var base64 = '' var encodings = 'ABCDEFG...
var nodeunit = require('nodeunit'); var micropipe = require('../micro-pipe'); module.exports = nodeunit.testCase({ 'args': function(t) { var cnt = 0; micropipe(function(next) { cnt++, next() }, function(next) { cnt++, next() }, function(next) { t.equal(cnt, 2), t.done() }); },...
import Ember from 'ember'; export const declaredStrongAttrsKey = 'declaredStrongAttrs'; export function declareAttr(target, attrName, attrType, isRequired) { ensureDeclaredStrongAttrs(target); target[declaredStrongAttrsKey].push({ name: attrName, type: attrType, required: isRequired }); } export f...
import _extends from"@babel/runtime/helpers/extends";import _objectWithoutProperties from"@babel/runtime/helpers/objectWithoutProperties";var _excluded=["children","weight","Component","getRootRef"];import{createScopedElement}from"../../../lib/jsxRuntime";import{usePlatform}from"../../../hooks/usePlatform";import{class...
/** * Buttons.js * * Released under LGPL License. * Copyright (c) 1999-2017 Ephox Corp. All rights reserved * * License: http://www.tinymce.com/license * Contributing: http://www.tinymce.com/contributing */ define( 'tinymce.plugins.legacyoutput.ui.Buttons', [ ], function () { var register = functio...
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v0.9.7 */ goog.provide('ng.material.components.input'); goog.require('ng.material.core'); /** * @ngdoc module * @name material.components.input */ angular.module('material.components.input', [ 'material.core' ]) .directive...
'use strict'; /** * Module dependencies. */ var should = require('should'), path = require('path'), errorHandler = require(path.resolve('./modules/core/server/controllers/errors.server.controller')), db = require(path.resolve('./config/lib/sequelize')).models, User = db.user; /** * Globals */ var user1, u...
import run from "ember-metal/run_loop"; import View from "ember-views/views/view"; import compile from "ember-template-compiler/system/compile"; import { set as o_set } from "ember-metal/property_set"; import { runAppend, runDestroy } from "ember-runtime/tests/utils"; var textArea, controller; function set(object, ke...
!function ($) { $(function(){ // fullcalendar var date = new Date(); var d = date.getDate(); var m = date.getMonth(); var y = date.getFullYear(); var addDragEvent = function($this){ // create an Event Object (http://arshaw.com/fullcalendar/docs/event_data/Event_Object/) ...
(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);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports...
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- info: > If (Evaluate Statement).type is "break" and (Evaluate Statement).target is in the current label set, (normal, (Evaluate Statement), empty) is returned while eval...
// // LESS - Leaner CSS v1.0.36 // http://lesscss.org // // Copyright (c) 2010, Alexis Sellier // Licensed under the Apache 2.0 License. // (function(y){function q(e){return y.less[e.split("/")[1]]}function U(){for(var e=document.getElementsByTagName("style"),b=0;b<e.length;b++)if(e[b].type.match(V))(new o.Parser).par...
import Container from 'react-container'; import React from 'react'; import Timers from 'react-timers'; import { Mixins, UI } from 'touchstonejs'; module.exports = React.createClass({ mixins: [Mixins.Transitions, Timers()], componentDidMount () { var self = this; this.setTimeout(function () { self.transitionTo...
/* Highstock JS v7.2.0 (2019-09-03) Indicator series type for Highstock (c) 2010-2019 Pawe Dalek License: www.highcharts.com/license */ (function(b){"object"===typeof module&&module.exports?(b["default"]=b,module.exports=b):"function"===typeof define&&define.amd?define("highcharts/indicators/volume-by-price",["h...
/* * Copyright (c) 2016, Globo.com (https://github.com/globocom) * * License: MIT */ import React, {Component} from "react"; import classNames from "classnames"; export default class BlockContent extends Component { render() { let className = classNames("block__content", { [`block__content--${this.pr...
var interface_t_l_m_myo = [ [ "TLMMyoConnectionState", "interface_t_l_m_myo.html#a2b362051a72b535b2a0c9612f0b9603a", [ [ "TLMMyoConnectionStateConnected", "interface_t_l_m_myo.html#a2b362051a72b535b2a0c9612f0b9603aa3ed33b4254a8a97c7cab1bb58df1593e", null ], [ "TLMMyoConnectionStateConnecting", "interfac...
/* Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved. Available via Academic Free License >= 2.1 OR the modified BSD license. see: http://dojotoolkit.org/license for details */ if(!dojo._hasResource["dojox.lang.functional.curry"]){ dojo._hasResource["dojox.lang.functional.curry"]=true; dojo.provide(...
/* * * history.js * all the magic needed to save and load each entry * that is made in the repl. * */ var path = require('path'); var fs = require('fs'); module.exports = function setupHistory(repl, args) { var f = path.join(args.path, '.lev_history'); try { var history = fs.readFileSync(f, 'utf8'); ...
(function () { 'use strict'; angular.module('app') .config(function ($stateProvider) { $stateProvider .state('admin', { url: '/admin', templateUrl: 'app/admin/admin.html', controller: 'AdminCtrl' }); }); }());
// @flow const x = 0; module.exports = x;
/* MAPSTRACTION v2.0.18 http://www.mapstraction.com Copyright (c) 2012 Tom Carden, Steve Coast, Mikel Maron, Andrew Turner, Henri Bergius, Rob Moran, Derek Fowler, Gary Gale All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the ...
/* * @name Figuras primitivas * @description Las funciones primitivas de figuras básicas son triangle(), * rect(), quad(), ellipse() y arc(). Rectángulos y cuadrados se construyen con rect() * y círculos y elipses con ellipse(). Cada una de estas funciones requiere * un número de parámetros para determinar la posi...
import './Example/src';
import ComponentLookup from "ember-views/component_lookup"; import Registry from "container/registry"; import EmberView from "ember-views/views/view"; import compile from "ember-template-compiler/system/compile"; import { runAppend, runDestroy } from "ember-runtime/tests/utils"; var view, registry, container; if (Emb...
// Generated by CoffeeScript 1.6.3 $(document).ready(function() { return $('[data-furatto="toolbar"]').each(function() { return $(this).toolbar({ content: $(this).data('content'), position: $(this).data('position') || 'top', hideOnClick: true }); }); });
/// <autosync enabled="true" /> /// <reference path="../gulpfile.js" /> /// <reference path="js/init.js" /> /// <reference path="js/site.js" /> /// <reference path="lib/bootstrap/dist/js/bootstrap.js" /> /// <reference path="lib/jquery/dist/jquery.js" /> /// <reference path="lib/jquery-validation/dist/jquery.val...
tinymce.addI18n('zh_CN',{ "Redo": "\u91cd\u505a", "Undo": "\u64a4\u9500", "Cut": "\u526a\u5207", "Copy": "\u590d\u5236", "Paste": "\u7c98\u8d34", "Select all": "\u5168\u9009", "New document": "\u65b0\u6587\u4ef6", "Ok": "\u786e\u5b9a", "Cancel": "\u53d6\u6d88", "Visual aids": "\u7f51\u683c\u7ebf", "Bold": "\u7c97\u4f53...
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; /* Tabulator v4.2.6 (c) Oliver Folkerd */ var So...
asynctest( 'browser.core.ThemeTest', [ 'ephox.agar.api.Chain', 'ephox.agar.api.FocusTools', 'ephox.agar.api.GeneralSteps', 'ephox.agar.api.Mouse', 'ephox.agar.api.Pipeline', 'ephox.agar.api.UiControls', 'ephox.agar.api.UiFinder', 'ephox.agar.api.Waiter', 'ephox.mcagar.api.TinyAct...
/** * Copyright (c) 2013-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * * @provides...
/* * * * (c) 2010-2021 Torstein Honsi * * License: www.highcharts.com/license * * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!! * * */ 'use strict'; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.s...
// DATA_TEMPLATE: empty_table oTest.fnStart( "bSort" ); $(document).ready( function () { /* Check the default */ $('#example').dataTable( { "sAjaxSource": "../../../examples/ajax/sources/arrays.txt", "bDeferRender": true } ); oTest.fnWaitTest( "Sorting is on by default", null, function () { return $('...
YUI.add("series-combospline-stacked",function(e,t){e.StackedComboSplineSeries=e.Base.create("stackedComboSplineSeries",e.StackedComboSeries,[e.CurveUtil],{drawSeries:function(){this.get("showAreaFill")&&this.drawStackedAreaSpline(),this.get("showLines")&&this.drawSpline(),this.get("showMarkers")&&this.drawPlots()}},{AT...
/* Blob.js * A Blob implementation. * 2014-07-24 * * By Eli Grey, http://eligrey.com * By Devin Samarin, https://github.com/dsamarin * License: X11/MIT * See https://github.com/eligrey/Blob.js/blob/master/LICENSE.md */ /*global self, unescape */ /*jslint bitwise: true, regexp: true, confusion: true, es5: tru...
/** * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'ko', 'underscore', 'mage/utils/wrapper', 'uiEvents', 'es6-collections' ], function (ko, _, wrapper, Events) { 'use strict'; var nodesMap = new WeakMap(); /** * Re...
var type = 5; var title = "Finish the Garden"; var desc = "Finish the garden."; var completion = "You finished the garden!"; var duration = 0; var claimable = 0; var requirements = { "r1373" : { "bucket_id" : "1", "group_id" : "1", "type" : "item", "class_id" : "mabbish_coffee", "num" : 10, "base_cost"...
var title = "Rising Moon "; var desc = "Moons are for mooning, so get one and use it to moon 5 different players. You'll also need an Emotional Bear to go with your moon (see if you can figure out how they go together), and you can get both from any Street Spirit who sells Hardware."; var offer = "You look glum, chum. ...
/** * @Package: Ultra Admin HTML Theme * @Since: Ultra 1.0 * This file is part of Ultra Admin Theme HTML package. */ jQuery(function($) { 'use strict'; var ULTRA_SETTINGS = window.ULTRA_SETTINGS || {}; /*-------------------------------- Window Based Layout ------------------------...
"use strict"; /** * @license * Copyright 2017 Palantir Technologies, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unle...
var async = require('../lib'); var expect = require('chai').expect; describe('autoInject', function () { it("basics", function (done) { var callOrder = []; async.autoInject({ task1: function(task2, callback){ expect(task2).to.equal(2); setTimeout(functio...
/* ============================================================= * bootstrap-collapse.js v2.0.1 * http://twitter.github.com/bootstrap/javascript.html#collapse * ============================================================= * Copyright 2012 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "Lic...