code
stringlengths
2
1.05M
var healthStore = HKHealthStore.alloc().jsinit(); /***************************************************************** * Name : onRowClick_FrmHomeMenu * Author : Kony * Purpose : Based on the row index , Navigate to respective form. ******************************************************************/ function onRowC...
const assert = require('assert') function assertErrorMessage(...args) { const report = args[0] let index let message if (args.length === 3) { index = args[1] message = args[2] } else { index = 0 message = args[1] } const errorMessage = `Report should contain message with text "${message...
document.write('<h1>Hello World</h1>');
import { UserIsAuthenticated } from 'utils/router' export default UserIsAuthenticated // redirect to /login if user is not authenticated
/* ***** BEGIN LICENSE BLOCK ***** * Distributed under the BSD license: * * Copyright (c) 2010, Ajax.org B.V. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of so...
/* * /MathJax/localization/cdo/HTML-CSS.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 * * http://www.apache...
module.exports = { filter: require('./filter'), includeCount: require('./include-count'), pagination: require('./pagination'), collision: require('./collision'), transactionEvents: require('./transaction-events') };
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * @name: S15.9.5_A36_T1; * @section: 15.9.5; * @assertion: The Date.prototype has the property "setDate"; * @description: The Date.prototype has the property "setDate"; */ if(Da...
'use strict'; /** * @ngdoc filter * @name ng.filter:currency * @function * * @description * Formats a number as a currency (ie $1,234.56). When no currency symbol is provided, default * symbol for current locale is used. * * @param {number} amount Input to filter. * @param {string=} symbol Currency symbol or...
/******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ re...
import React from"react";import createSvgIcon from"./createSvgIcon";export default createSvgIcon(React.createElement("path",{d:"M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z"}),"KeyboardArrowRight");
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * @name: S12.11_A3_T4; * @section: 12.11; * @assertion: Syntax constructions of switch statement; * @description: Using "case" that has no Expresson after it. "CaseClause: case Ex...
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * @name: S11.7.1_A3_T2.7; * @section: 11.7.1; * @assertion: Operator x << y returns ToNumber(x) << ToNumber(y); * @description: Type(x) is different from Type(y) and both types v...
angular.module('merchello.resources').factory('backOfficeCheckoutResource', ['$http', '$q', 'umbRequestHelper', 'customerItemCacheDisplayBuilder', 'invoiceDisplayBuilder', 'shipmentRateQuoteDisplayBuilder', function($http, $q, umbRequestHelper, customerItemCacheDisplayBuilder, invoiceDisplayBuilder, shipmentRat...
Package.describe({ name: "telescope:sitemap", summary: "Sitemap package for Telescope", version: "0.20.6", git: "https://github.com/TelescopeJS/telescope-sitemap.git" }); Package.onUse(function(api) { api.versionsFrom("METEOR@1.0"); api.use([ "telescope:core@0.20.6", "gadicohen:sitemaps@0.0.20" ...
import { IS_DART, StringWrapper } from 'angular2/src/facade/lang'; export var MODULE_SUFFIX = IS_DART ? '.dart' : ''; var CAMEL_CASE_REGEXP = /([A-Z])/g; var DASH_CASE_REGEXP = /-([a-z])/g; export function camelCaseToDashCase(input) { return StringWrapper.replaceAllMapped(input, CAMEL_CASE_REGEXP, (m) => { ret...
Clazz.declarePackage ("JM"); Clazz.load (["JM.PhosphorusPolymer"], "JM.NucleicPolymer", ["JU.Measure", "$.P4", "$.V3", "JM.HBond"], function () { c$ = Clazz.decorateAsClass (function () { this.isDssrSet = false; Clazz.instantialize (this, arguments); }, JM, "NucleicPolymer", JM.PhosphorusPolymer); Clazz.makeConst...
import { settings } from '../../settings'; settings.add('Accounts_OAuth_Dolphin_URL', '', { type: 'string', group: 'OAuth', public: true, section: 'Dolphin', i18nLabel: 'URL' }); settings.add('Accounts_OAuth_Dolphin', false, { type: 'boolean', group: 'OAuth', section: 'Dolphin', i18nLabel: 'Accounts_OAuth_Custom_Enabl...
--- --- var index = lunr(function () { this.field('body'); this.ref('url'); }); var documentTitles = {}; <% for file in @manifest.files: %> <% for section in file.sections: %> documentTitles["<%= @baseUrl + file.slug %>.html#<%= section.slug %>"] = "<%= section.title.replace(/"/g, '\\"') %>"; index.add({ ...
/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'bidi', 'pt-br', { ltr: 'Direção do texto da esquerda para a direita', rtl: 'Direção do texto da direita para a esquerda' });
/** * Copyright 2015 Google Inc. 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 required by appli...
import { LineLinkedShadow } from "./LineLinkedShadow"; import { Color } from "./Color"; export class LineLinked { constructor() { this.blink = false; this.color = new Color(); this.consent = false; this.distance = 100; this.enable = false; this.opacity = 1; th...
"use strict"; module.exports = function (t, a) { a.throws(function () { t(undefined); }, TypeError, "Undefined"); a.throws(function () { t(null); }, TypeError, "Null"); a(t(2), 2, "Number"); a.throws(function () { t(-2); }, TypeError, "Negative"); a.throws(function () { t(2.34); }, TypeError, "Float"); a(t("...
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(n){return"الرجاء حذف "+(n.input.length-n.maximum)+" عناصر"},inputTooShort:function(n){return...
'use strict'; var once = require('once'); var helpers = require('./helpers'); function mapSeries(values, iterator, extensions, done) { // Allow for extensions to not be specified if (typeof extensions === 'function') { done = extensions; extensions = {}; } // Handle no callback case if (typeof don...
/*! * jQuery & Zepto Lazy - AJAX Plugin - v1.3 * http://jquery.eisbehr.de/lazy/ * * Copyright 2012 - 2018, 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 */ ;(function($) { // load d...
define({ "timeout": "انتهاء", "highlightLocation": "تمييز الموقع", "useTracking": "لاحظ تغييرات المواقع", "warning": "مدخلات غير صحيحة", "zoomScale": "مقياس التكبير/التصغير" });
define(['mout/lang/isNull'], function (isNull) { describe('lang/isNull()', function () { it('should detect if value is a Null', function () { expect( isNull(null) ).toBe( true ); expect( isNull('') ).toBe( false ); expect( isNull(123) ).toBe( false ); expe...
/** * Autoinsert script tags (or other filebased tags) in an html file. * * --------------------------------------------------------------- * * Automatically inject <script> tags for javascript files and <link> tags * for css files. Also automatically links an output file containing precompiled * templates usin...
import { ReactiveVar } from 'meteor/reactive-var'; export let mainReady = new ReactiveVar(false); // eslint-disable-line
/** * Globalize Runtime v1.4.0-alpha.2 * * http://github.com/jquery/globalize * * Copyright jQuery Foundation and other contributors * Released under the MIT license * http://jquery.org/license * * Date: 2018-03-09T13:51Z */ /*! * Globalize Runtime v1.4.0-alpha.2 2018-03-09T13:51Z Released under the MIT lice...
/*! @license ScrollReveal v4.0.0-beta.26 Copyright 2018 Fisssion LLC. Licensed under the GNU General Public License 3.0 for compatible open source projects and non-commercial use. For commercial sites, themes, projects, and applications, keep your source code private/proprietary by purchasing a commercial lice...
import filter from './filter.js'; // Trim out all falsy values from an array. export default function compact(array) { return filter(array, Boolean); }
var utils = require('../../../util/utils'); var teamManager = require('../../../services/teamManager'); module.exports = function(){ return new TeamRemote(); }; var TeamRemote = function(){ }; // can a player create a game copy TeamRemote.prototype.canCreateGameCopy = function(args, cb){ var playerId = args.play...
/** * opus-recorder plugin for videojs-record * @version 2.1.0 * @see https://github.com/collab-project/videojs-record * @copyright 2014-2018 Collab * @license MIT */ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([...
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v0.11.0 */ (function( window, angular, undefined ){ "use strict"; /** * @ngdoc module * @name material.components.radioButton * @description radioButton module! */ angular.module('material.components.radioButton', [ 'materi...
(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["VueFire"] = factory(); else root["VueFi...
// Copyright (c) 2015 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge...
// Generated by CoffeeScript 1.12.2 (function() { var BALANCED_PAIRS, CALL_CLOSERS, EXPRESSION_CLOSE, EXPRESSION_END, EXPRESSION_START, IMPLICIT_CALL, IMPLICIT_END, IMPLICIT_FUNC, IMPLICIT_UNSPACED_CALL, INVERSES, LINEBREAKS, SINGLE_CLOSERS, SINGLE_LINERS, generate, k, left, len, ref, rite, indexOf = [].indexOf |...
/* * GoJS v2.0.12 JavaScript Library for HTML Diagrams * Northwoods Software, https://www.nwoods.com/ * GoJS and Northwoods Software are registered trademarks of Northwoods Software Corporation. * Copyright (C) 1998-2019 by Northwoods Software Corporation. All Rights Reserved. * THIS SOFTWARE IS LICENSED. THE LI...
var TupleDictionary = require(__dirname + '/../../src/utils/TupleDictionary'); exports.construct = function(test){ var dict = new TupleDictionary(); test.done(); }; exports.getKey = function(test){ var dict = new TupleDictionary(); var key = dict.getKey(1, 2); test.ok(typeof key === 'number'); test.done()...
var _ = require('./utils'); var errors = module.exports; var canCapture = (typeof Error.captureStackTrace === 'function'); var canStack = !!(new Error()).stack; function ErrorAbstract(msg, constructor) { this.message = msg; Error.call(this, this.message); if (canCapture) { Error.captureStackTrace(this, co...
import React from 'react' export default React.createClass({ render() { return <div className="browser-component--dev-panel"> {this.props.children} </div> } })
import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties"; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import { elementTypeAcceptingRef } from '@material-ui/utils'; import capitali...
// Convert straight quotation marks to typographic ones // 'use strict'; var isWhiteSpace = require('../common/utils').isWhiteSpace; var isPunctChar = require('../common/utils').isPunctChar; var isMdAsciiPunct = require('../common/utils').isMdAsciiPunct; var QUOTE_TEST_RE = /['"]/; var QUOTE_RE = /['"]/g; var A...
/* DOM Level2 Events implemented as described here: * * http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html * */ var core = require("./core").dom.level2.core, utils = require("../utils"), defineGetter = utils.defineGetter, defineSetter = utils.defineSetter, inheritFrom = utils.inhe...
(function () { /** * Threshold Filter. Pushes any value above the mid point to * the max and any value below the mid point to the min. * This affects the alpha channel. * @function * @memberof Kinetic.Filters * @param {Object} imageData * @author ippo615 */ Kinetic.F...
// MobileInit.js // ------------- // Include Mobile Specific JavaScript files here (or inside of your Mobile router) require(["jquery", "backbone", "routers/MobileRouter", "jquerymobile", "backbone.validateAll"], function($, Backbone, MobileRouter) { // Prevents all anchor click handling $.mobile.linkBindi...
var expect = require('expect.js'); var config = require('./config'); var API = require('../'); describe('api_menu.js', function () { var api = new API(config.appid, config.appsecret); before(function (done) { api.getAccessToken(done); }); it('createMenu should ok', function (done) { var menu = JSON.st...
version https://git-lfs.github.com/spec/v1 oid sha256:c396b8ab912daec2b9125dfe8d8e8ec31c25561f4f693fe5c162dbfe735c8c31 size 15266
import { for } from "iteration"
//! moment.js locale configuration //! locale : Spanish (United States) [es-us] //! author : bustta : https://github.com/bustta //! author : chrisrodz : https://github.com/chrisrodz import moment from '../moment'; var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split( '_' ...
// Range nearables screen. ;(function(app) { app.startRangingNearables = function() { function onRange(nearables) { displayNearablesInfo(nearables); } function onError(errorMessage) { console.log('Range error: ' + errorMessage); } function displayNearablesInfo(nearables) { // Clear HTML lis...
import TrackedArray from "ember-runtime/system/tracked_array"; var trackedArray; var RETAIN = TrackedArray.RETAIN; var INSERT = TrackedArray.INSERT; var DELETE = TrackedArray.DELETE; QUnit.module('Ember.TrackedArray'); QUnit.test("operations for a tracked array of length n are initially retain:n", function() { tra...
'use strict'; /** * Module dependencies. */ var mean = require('meanio'), compression = require('compression'), morgan = require('morgan'), consolidate = require('consolidate'), cookieParser = require('cookie-parser'), expressValidator = require('express-validator'), bodyParser = require('bod...
/************************************************************* * * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/fontdata.js * * Initializes the HTML-CSS OutputJax to use the Neo-Euler fonts * Copyright (c) 2013-2016 The MathJax Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); ...
/** * @license Angular v4.3.6 * (c) 2010-2017 Google, Inc. https://angular.io/ * License: MIT */ import { ResourceLoader, platformCoreDynamic } from '@angular/compiler'; import { COMPILER_OPTIONS, Injectable, PLATFORM_ID, Version, createPlatformFactory, ɵglobal } from '@angular/core'; import { ɵPLATFORM_BROWSER_ID ...
function hasValue(e){return null!=e&&!(Array.isArray(e)&&0===e.length)}function isFilled(e){var a=1<arguments.length&&void 0!==arguments[1]&&arguments[1];return e&&(hasValue(e.value)&&""!==e.value||a&&hasValue(e.defaultValue)&&""!==e.defaultValue)}function isAdornedStart(e){return e.startAdornment}export{hasValue,isFil...
var searchData= [ ['pauseprofiler',['PauseProfiler',['../classv8_1_1_v8.html#a5fefebea0cd37105837a9d267baf2e5c',1,'v8::V8']]], ['persistent',['Persistent',['../classv8_1_1_persistent.html',1,'v8']]], ['persistent',['Persistent',['../classv8_1_1_persistent.html#aff7516636baaf209885220f7cff34463',1,'v8::Persistent:...
$( document ).ready(function() { var i = -1; var toastCount = 0; var $toastlast; var getMessage = function () { var msgs = ['My name is Inigo Montoya. You killed my father. Prepare to die!', '<div><input class="input-small" value="textbox"/>&nbsp;<a href="htt...
/******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ re...
/** * Generated bundle index. Do not edit. */ export * from './ga'; //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5ndWxhcnRpY3MyLWdhLmpzIiwic291cmNlUm9vdCI6Im5nOi8vYW5ndWxhcnRpY3MyL2dhLyIsInNvdXJjZXMiOlsiYW5ndWxhcnRpY3MyLWdhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgs...
var fs = require('fs'); var path = require('path'); var connect = require('connect'); var middlewares = []; function helmet(overrides) { overrides = overrides || { csp: false }; var result = connect(); middlewares.forEach(function (name) { if (false !== overrides[name]) { result.use(helmet[name]()); ...
// var stringify = require("json-stringify-safe") var send = require("./index") var isSendObject = require("./is-send-object") module.exports = sendJson function sendJson(req, res, opts, callback) { if (!isSendObject(opts)) { opts = { body: opts } } opts = opts || {} if (opts.pretty) { ...
/* YUI 3.17.0 (build ce55cc9) Copyright 2014 Yahoo! Inc. All rights reserved. Licensed under the BSD License. http://yuilibrary.com/license/ */ YUI.add('widget-stdmod', function (Y, NAME) { /** * Provides standard module support for Widgets through an extension. * * @module widget-stdmod */ var L = Y.Lang, ...
'use strict'; /* jshint -W030 */ /* jshint -W110 */ var chai = require('chai') , expect = chai.expect , Sequelize = require('../../index') , Support = require(__dirname + '/support') , DataTypes = require(__dirname + '/../../lib/data-types') , dialect = Support.getTestDialect() , config = require(__dirname...
// Heatmap Constructor var Heatmap = (function HeatmapClosure() { var Coordinator = (function CoordinatorClosure() { function Coordinator() { this.cStore = {}; }; Coordinator.prototype = { on: function(evtName, callback, scope) { var cStore = this.cStore; if (!cStore[evtNam...
tinyMCE.addI18n('fr.style_dlg',{ title:"\u00C9diter la feuille de style CSS", apply:"Appliquer", text_tab:"Texte", background_tab:"Fond", block_tab:"Bloc", box_tab:"Bo\u00EEte", border_tab:"Bordure", list_tab:"Liste", positioning_tab:"Positionement", text_props:"Texte", text_font:"Police", text_size:"Taille", text_weig...
!function(e,_){"object"==typeof exports&&"undefined"!=typeof module?module.exports=_(require("dayjs")):"function"==typeof define&&define.amd?define(["dayjs"],_):e.dayjs_locale_tzl=_(e.dayjs)}(this,function(e){"use strict";e=e&&e.hasOwnProperty("default")?e.default:e;var _={name:"tzl",weekdays:"Súladi_Lúneçi_Maitzi_Márc...
/* * Copyright (c) 2012 - 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 * ...
/** * 2007-2015 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not recei...
export default from './component.jsx';
'use strict'; exports.__esModule = true; exports.default = tokenize; var _tokenTypes = require('./tokenTypes'); var t = _interopRequireWildcard(_tokenTypes); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Objec...
import React from 'react'; import pure from 'recompose/pure'; import SvgIcon from '../../SvgIcon'; let ImageAssistantPhoto = (props) => ( <SvgIcon {...props}> <path d="M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z"/> </SvgIcon> ); ImageAssistantPhoto = pure(ImageAssistantPhoto); ImageAssistantPhoto.displayName = 'Image...
import React from 'react'; import pure from 'recompose/pure'; import SvgIcon from '../../SvgIcon'; let HardwareKeyboardVoice = (props) => ( <SvgIcon {...props}> <path d="M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.42 2.72 6....
import React from 'react'; import pure from 'recompose/pure'; import SvgIcon from '../../SvgIcon'; let ActionZoomIn = (props) => ( <SvgIcon {...props}> <path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 1...
'use strict';function __export(m) { for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } /** * @module * @description * Starting point to import all compiler APIs. */ __export(require('./src/compiler/url_resolver')); __export(require('./src/compiler/xhr')); __export(require('./src/com...
// #1683 var arr = []; for (var i = 0; i < 4; ++i) { arr.push(React.createElement("i", null)); }
/** math-expression-evaluator version 1.2.16 Dated:2017-02-02 */ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}els...
/** * ag-grid - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components * @version v7.0.2 * @link http://www.ag-grid.com/ * @license MIT */ var eventService_1 = require("../eventService"); var utils_1 = require("../utils"); var TouchListener = (function () { function TouchLis...
"use strict";var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault"),_interopRequireWildcard=require("@babel/runtime/helpers/interopRequireWildcard");Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=useForkRef;var React=_interopRequireWildcard(require("react")),_setRef=_...
(function (exports,covutils) { 'use strict'; function iota$1(n) { var result = new Array(n); for(var i=0; i<n; ++i) { result[i] = i; } return result } var iota_1 = iota$1; /*! * Determine if an object is a Buffer * * @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org> * @license MI...
'use strict'; // Angular E2E Testing Guide: // https://docs.angularjs.org/guide/e2e-testing describe('PhoneCat Application', function() { it('should redirect `index.html` to `index.html#!/phones', function() { browser.get('index.html'); expect(browser.getLocationAbsUrl()).toBe('/phones'); }); describe...
/** * @author mrdoob / http://mrdoob.com/ */ var Script = function ( editor ) { var signals = editor.signals; var container = new UI.Panel(); container.setId( 'script' ); container.setPosition( 'absolute' ); container.setBackgroundColor( '#272822' ); container.setDisplay( 'none' ); var header = new UI.Pane...
// VexFlow - Trill Tests Vex.Flow.Test.GraceNote = {}; Vex.Flow.Test.GraceNote.Start = function() { module("Grace Notes"); Vex.Flow.Test.runTest("Grace Note Basic", Vex.Flow.Test.GraceNote.basic); Vex.Flow.Test.runTest("Grace Note Basic with Slurs", Vex.Flow.Test.GraceNote.basicSlurred); Vex.Flow.Test.runTest...
(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...
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.Hls = f()}})(f...
// knockout-sortable 0.13.0 | (c) 2016 Ryan Niemeyer | http://www.opensource.org/licenses/mit-license ;(function(factory) { if (typeof define === "function" && define.amd) { // AMD anonymous module define(["knockout", "jquery", "jquery-ui/sortable", "jquery-ui/draggable"], factory); } else if (...
'use strict'; /** * Module dependencies. */ var _ = require('lodash'), path = require('path'), config = require(path.resolve('./config/config')), errorHandler = require(path.resolve('./modules/core/server/controllers/errors.server.controller')), mongoose = require('mongoose'), passport = require('passport'), ...
'use strict'; const path = require('path'); /** * Copyright (c) 2014-present, Facebook, Inc. All rights reserved. * * This source code is licensed under the BSD-style license found in the ...
//>>built define("dojox/atom/widget/nls/uk/PeopleEditor",({add:"Додати",addAuthor:"Додати автора",addContributor:"Додати учасника"}));
/* angular-md5 - v0.1.6 2014-01-14 */ (function(window, angular, undefined) { angular.module("angular-md5", [ "gdi2290.md5" ]); angular.module("ngMd5", [ "gdi2290.md5" ]); angular.module("gdi2290.md5", []); "use strict"; angular.module("gdi2290.gravatar-filter", []).filter("gravatar", [ "md5", ...
/* global CodeMirror */ import Ember from 'ember'; const {Component} = Ember; export default Component.extend({ classNameBindings: ['isFocused:focused'], value: '', // make sure a value exists isFocused: false, // options for the editor lineNumbers: true, indentUnit: 4, mode: 'htmlmixed'...
(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["InspireTree"] = factory(); else root["I...
/*! * Microbe JavaScript Library v0.4.13 * http://m.icro.be * * Copyright 2014-2015 Sociomantic Labs and other contributors * Released under the MIT license * http://m.icro.be/license * * Date: Sat Nov 28 2015 */ !function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("f...
/*! * inferno-mobx v1.0.0-beta21 * (c) 2016 Ryan Megidov * Released under the MIT License. */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./inferno-component'), require('./inferno'), require('./inferno-create-class'), require('./inf...
'use strict'; module.exports = { set: function (v) { this.setProperty('background-position-y', v); }, get: function () { return this.getPropertyValue('background-position-y'); }, enumerable: true };
var differenceInMilliseconds = require('../difference_in_milliseconds/index.js') var MILLISECONDS_IN_MINUTE = 60000 /** * @category Minute Helpers * @summary Get the number of minutes between the given dates. * * @description * Get the number of minutes between the given dates. * * @param {Date|String|Number} ...
/** * ag-grid - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components * @version v4.2.1 * @link http://www.ag-grid.com/ * @license MIT */ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : ...
(function($){ SlideDeckLens['reporter'] = function(slidedeck){ var self = this; var slidedeck = $(slidedeck); var slidedeckFrame = slidedeck.closest('.slidedeck-frame'); var images = slidedeckFrame.find('img.slide-image'); var deck = slidedeck.slidedeck(); var deckElement = slidedeck; var navD...