code stringlengths 2 1.05M |
|---|
var x: null = null;
var o = { p: 0, ...x };
(o.p: empty); // error: number ~> empty
|
Ergo.declare('Ergo.layouts.Form', 'Ergo.core.Layout', {
defaults: {
name: 'form'
},
wrap: function(item) {
var w = $('<div/>');
if(!item.$label && item.options.label) {
item.$label = $.ergo({etype: 'html:label', text: item.options.label});
}
if(item.$label) {
w.append(item.$label.el);
}
w.app... |
var EventViewPage = Backbone.View.extend({
initialize: function(d) {
if(d){
this.setEventId(d);
}
else{
var modalDialog = new ModalDialogView();
modalDialog.show({
message: 'There is no Event to View',
type: "danger",
});
}
_.bindAll(this,"render");
this.ren... |
'use strict';
var grunt = require('grunt');
exports.sasslint = {
test: function (test) {
}
};
|
$(document).ready(function() {
main();
});
function main() {
}
|
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } }... |
/**
* @author alteredq / http://alteredqualia.com/
* @author mr.doob / http://mrdoob.com/
*/
var Detector = {
canvas: !! window.CanvasRenderingContext2D,
webgl: ( function () { try { return !! window.WebGLRenderingContext && !! document.createElement( 'canvas' ).getContext( 'experimental-webgl' ); ... |
'use strict';
var React = require('react');
var SvgIcon = require('../../svg-icon');
var EditorBorderColor = React.createClass({
displayName: 'EditorBorderColor',
render: function render() {
return React.createElement(
SvgIcon,
this.props,
React.createElement('path', { d: 'M17.75 7L14 3.25l... |
import Events from './Events';
class Route {
constructor(path, options) {
options = options || {};
/**
* Route callback
* @type {function|null}
*/
this.action = options.action;
/**
* Route events
* @type {{}}
*/
this.events = {};
/**
* Route name
* ... |
import check from './check';
export {
check
}
export default {
check
} |
var w = 960,
h = 500,
node,
link,
root,
colorscale = d3.scale.category10();
var force = d3.layout.force()
.on("tick", tick)
.charge(function(d) { return d._children ? -d.size : -30; })
.linkDistance(function(d) { return d.target._children ? 80 : 30; })
.size([w, h]);
var vis = d3.s... |
'use strict';
var _inheritsLoose = require('@babel/runtime/helpers/inheritsLoose');
var React = require('react');
var createCache = require('@emotion/cache');
var utils = require('@emotion/utils');
var serialize = require('@emotion/serialize');
function _interopDefault (e) { return e && e.__esModule ? e : { 'default'... |
var path = require('path');
var fs = require('fs');
var async = require('async');
var copyObj = require(path.join(__dirname, '/../utils')).copyObj;
var crypto = require('crypto');
module.exports = function(dir, models) {
var self = this;
var usersDir = path.join(dir, '/data/users/');
var users = [];
// Loa... |
'use strict';
var version = '22.52.561.4';
var beta = '';
var exec = require('child_process').exec;
var fs = require('fs');
var wget = require('node-wget');
function prepareLibrary (filePath) {
try {
fs.unlinkSync('./libs/' + filePath);
}
catch (e) {
console.log('No previous file');
... |
'use strict';
const testGenerators = require('aot-test-generators');
let _generators = {};
Object.keys(testGenerators).forEach(name => {
let testGenerator = testGenerators[name];
_generators[name] = function(relativePath, errors, results) {
let passed = hasPassed(results);
let message = createAssertionM... |
const { describe, it } = global;
import { expect } from 'chai';
import { spy, stub } from 'sinon';
import actions from '../feed';
describe('users.actions.feed', () => {
it('should do something');
});
|
'use strict';
const MockBot = require('./_mock_bot');
// if using MockBot in your library, just do a require('botmaster/tests').MockBot
// and make sure the following packages are either in your dependencies exports
// dev-dependencies:
/**
* express
* koa
* body-parser
*/
module.exports = {
MockBot,
};
|
/* global $array_grafico, google, $arrayGrafico_js */
var string_grafico_pie = $arrayGrafico_js_pie;
var arrayGrafico_pie = string_grafico_pie.split("|");
var string_grafico_column = $arrayGrafico_js_column;
var arrayGrafico_column = string_grafico_column.split("|");
google.load("visualization", "1", {... |
module.exports={A:{A:{"1":"C G E B A","2":"TB","8":"J"},B:{"1":"D X g H L"},C:{"1":"1 2 3 RB F I J C G E B A D X g H L M N O P Q R S T U V W t Y Z a b c d e f K h i j k l m n o p q v w x y z s r PB OB"},D:{"1":"1 2 7 9 F I J C G E B A D X g H L M N O P Q R S T U V W t Y Z a b c d e f K h i j k l m n o p q v w x y z s r... |
/**
* Create a LRUStorage obj. This is a wrapper of original storage.
* The storage is http://dev.w3.org/html5/webstorage/
* @constructor
* @param {Storage} storage The under hook storage obj.
*/
var WC_DEBUG = true;
function LRUStorage(storage) {
if (!window.localStorage) {
if (WC_DEBUG) log.error('localStorag... |
module.exports = function(lofcg) {
describe("Pull List", function() {
const pullListDate = "2017-05-03";
require("./issues-list.spec")(lofcg, pullListDate);
require("./series-list.spec")(lofcg, pullListDate);
});
};
|
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2022 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Class = require('../../utils/Class');
var Vector2 = require('../../math/Vector2');
/**
* @classdesc
*
* The Body Bounds class contains m... |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// deepMerge
function emptyTarget(value) {
return Array.isArray(value) ? [] : {};
}
function cloneUnlessOtherwiseSpecified(value, options) {
return (options.clone !== false && options.isMergeableObject(value))
? deepMerge(empty... |
var EntitySelection = require('../../../entities/EntitySelection');
var System = require('../../../entities/systems/System');
var SystemBus = require('../../../entities/SystemBus');
var Transform = require('../../../math/Transform');
var Material = require('../../../renderer/Material');
var ShaderLib = require('../../.... |
/**
@module ember
@submodule ember-testing
*/
import { checkWaiters } from '../test/waiters';
import { RSVP } from 'ember-runtime';
import { run } from 'ember-metal';
import { pendingRequests } from '../test/pending_requests';
/**
Causes the run loop to process any pending events. This is used to ensure that
any a... |
var httpStatus = {
100: { message: "Continue", detail: "" },
101: { message: "Switching Protocols", detail: "" },
102: { message: "Processing", detail: "" },
200: { message: "OK", detail: "" },
201: { message: "Created", detail: "" },
202: { message: "Accepted", detail: "" },
203: { message: "Non-Authoritative ... |
module.exports = {
"1.4.15":"53.0.2785.143",
"1.4.14":"53.0.2785.143",
"1.4.13":"53.0.2785.143",
"1.4.12":"54.0.2840.51",
"1.4.11":"53.0.2785.143",
"1.3.13":"52.0.2743.82",
"1.4.10":"53.0.2785.143",
"1.4.9":"53.0.2785.143",
"1.4.8":"53.0.2785.143",
"1.3.10":"52.0.2743.82",
"1.3.9":"52.0.2743.82",
"1.4.7":"5... |
var ByteBuffer = require('bytebuffer')
var crypto = require("./crypto.js")
var constants = require("../constants.js")
var slots = require("../time/slots.js")
function getClientFixedTime() {
return slots.getTime() - constants.clientDriftSeconds
}
function toLocalBuffer(buf) {
if (typeof window !== 'undefined') {
... |
var _dec, _class;
import { inject } from 'aurelia-dependency-injection';
import { Validator } from './validator';
import { validateTrigger } from './validate-trigger';
import { getPropertyInfo } from './property-info';
export var ValidationController = (_dec = inject(Validator), _dec(_class = function () {
functi... |
module.exports={A:{A:{"2":"H D G E A B EB"},B:{"2":"C p x J L N I"},C:{"2":"ZB BB F K H D G E A B C p x J L N I O P Q R S T XB RB","804":"0 1 2 3 4 5 6 8 9 U V W X Y Z b c d e f g h i j k l m n o M q r s t u v w y"},D:{"2":"F","676":"0 1 2 3 4 5 6 8 9 K H D G E A B C p x J L N I O P Q R S T U V W X Y Z b c d e f g h i ... |
export { default } from 'ember-appbase/initializers/torii-session-injections';
|
var FXStage = require('./FXStage');
var fs = require('fs');
var VERT = fs.readFileSync(__dirname + '/ScreenImage.vert', 'utf8');
var FRAG = fs.readFileSync(__dirname + '/SSAO.frag', 'utf8');
FXStage.prototype.ssao = function (options) {
var ctx = this.ctx;
options = options || {};
scale = options.scale !=... |
/**
* @license Highstock JS v8.0.0 (2019-12-10)
* @module highcharts/modules/full-screen
* @requires highcharts
*
* Advanced Highstock tools
*
* (c) 2010-2019 Highsoft AS
* Author: Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../modules/full-screen.src.js';
|
jQuery.extend(jQuery.fn.dataTableExt.oSort,{"ip-address-pre":function(e){var t,r,n,s,l,i;if(!e)return"000000000000";if(2==(n=(e=e.replace(/<[\s\S]*?>/g,"")).split(":")).length?(r=n[0].split("."),s=n[1]):r=e.split("."),g=e.split(":"),i=l="",4==r.length){for(f=0;f<r.length;f++)t=r[f],l+="000".substr(t.length)+t;s&&(l+=":... |
import React from "react";
export default function client(Loader) {
return function clientDecorator(Component) {
return class ClientResolver extends React.Component {
displayName = `ClientResolver`
constructor(props, context) {
super(props, context);
this.state = { visible: process.... |
const { CheckerPlugin, TsConfigPathsPlugin } = require('awesome-typescript-loader')
const path = require('path');
module.exports = {
entry: './src/demo/ts/ephox/sugar/demo/Demo.ts',
devtool: 'source-map',
resolve: {
extensions: ['.ts', '.js'],
plugins: [
new TsConfigPathsPlugin({
baseUrl: ... |
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } }... |
export class About {
} |
/*
* 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.
*/
'... |
/*
* noVNC: HTML5 VNC client
* Copyright (C) 2012 Joel Martin
* Copyright (C) 2018 Samuel Mannehed for Cendio AB
* Copyright (C) 2018 Pierre Ossman for Cendio AB
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
*
*/
import TightDecoder from './tight.js';
ex... |
const webpack = require('webpack'),
makeConfig = require('../make-config'),
projectConfig = require('../../../config');
const config = makeConfig({
name : 'server',
target : 'node',
entry : {
app : [
projectConfig.inSrc('entry-points/server')
]
},
output : {
filename... |
/*global tarteaucitron */
tarteaucitron.lang = {
"adblock": "Ahoj! Tato stránka je transparetní a umožňuje ti si přímo vybrat, jaké služby třetích stran chceš povolit.",
"adblock_call": "Pro úpravu osobních preferencí si, prosím, vypni adblock.",
"reload": "Načíst stránku znovu",
"alertBigScroll": ... |
const when = require('when')
let response
const rest = jest.fn((url)=>{
return when({
entity: response
})
});
rest.__return = function(resp){
response = resp
};
export default rest
|
// Copyright 2012-2017 (c) Peter Širka <petersirka@gmail.com>
//
// 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, cop... |
var bodyParser = require('body-parser');
var passport = require('passport');
var cors = require('cors');
var prettyjson = require('prettyjson');
module.exports = function (app, express) {
var port = process.env.PORT || 8000;
// Socket.io works by listening from the port in the index.js file
var server = app.... |
'use strict';
angular.module('copayApp.controllers').controller('preferencesAltCurrencyController',
function($scope, $log, $timeout, configService, rateService, lodash, go, profileService, walletService) {
var config = configService.getSync();
var next = 10;
var completeAlternativeList;
$scope.curre... |
/*! jQuery UI - v1.10.4 - 2014-03-23
* http://jqueryui.com
* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
jQuery(function(t){t.datepicker.regional.bs={closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Januar","Februar","Mart","April","Maj","Juni","Juli... |
/**
* Validation triggers.
*/
export var validateTrigger;
(function (validateTrigger) {
/**
* Manual validation. Use the controller's `validate()` and `reset()` methods
* to validate all bindings.
*/
validateTrigger[validateTrigger["manual"] = 0] = "manual";
/**
* Validate the bindin... |
define(function(require) {
'use strict';
var flight = require('flight');
require('bootstrap');
return flight.component(function filtering() {
this.attributes({
contentSelector: '#message'
});
this.toggle = function() {
this.$node.toggle();
};
this.after('initialize', function(... |
import hammerhead from '../deps/hammerhead';
const browserUtils = hammerhead.utils.browser;
const MODIFIERS = {
alt: 18,
ctrl: 17,
meta: 91,
shift: 16,
};
const SHIFT_MAP = {
'~': '`',
'!': '1',
'@': '2',
'#': '3',
'$': '4',
'%': '5',
'^': '6',
'&': '7',
'*': ... |
'use strict';
/**
* Module dependencies.
*/
const mongoose = require('mongoose');
const notify = require('../mailer');
// const Imager = require('imager');
// const config = require('../../config/config');
// const imagerConfig = require(config.root + '/config/imager.js');
const Schema = mongoose.Schema;
const g... |
/* jshint node:true */
module.exports = function(self, argv, callback) {
return self._apos.forEachPage({ type: self.pieceName }, {}, function(piece, callback) {
var oldSlug = piece.slug;
self.pieces.addDateToSlug(piece, true);
function attempt() {
return self._apos.pages.update({
slug: old... |
console.log("Web application.js");
|
define(function defineFocusTrapCaptureBody(require) {
'use strict';
var queryTabbable = require('../dom/query-tabbable');
// redirect the first focusin/focus event to the first tabbable element in context
function captureBodyFocus(context, eventName) {
function handleFocusEvent(event) {
context._und... |
/*
* $Id: es5.js,v 0.1 2012/08/23 19:43:17 dankogai Exp dankogai $
*
* use mocha to test me
* http://visionmedia.github.com/mocha/
*/
var assert, Base64;
if (this['window'] !== this) {
assert = require("assert");
Base64 = require('../base64.js').Base64;
}
var is = function (a, e, m) {
retur... |
/**
* ag-grid-community - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
* @version v21.2.1
* @link http://www.ag-grid.com/
* @license MIT
*/
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var CellRangeType;
(function (CellRangeType) {
C... |
(function ($) {
$.fn.countTo = function (options) {
options = options || {};
return $(this).each(function () {
// set options for current element
var settings = $.extend({}, $.fn.countTo.defaults, {
from: $(this).data('from'),
to: $(this).data('to'),
... |
/* jshint esnext: true, asi: true */
const gulp = require('gulp');
const minifycss = require('gulp-minify-css');
const rename = require('gulp-rename');
const concat = require('gulp-concat');
const uglify = require('gulp-uglify');
const livereload = require('gulp-livereload');
const sass = require('gulp-sass');
const so... |
// character limitation script for Add/Edit Apprentice page
$('#charCount').show(); // javascript enabled version only
$('#charCount-noJS').hide(); // javascript disabled version only
// variables
var totalChars = 20, countTextBox = $('#EmployerRef'), charsCountEl = $('#countchars');
charsCountEl.text(totalChars);
va... |
/**
* Module dependencies.
*/
var debug = require('debug')('express:router:route');
var methods = require('methods');
var utils = require('../utils');
/**
* Expose `Route`.
*/
module.exports = Route;
/**
* Initialize `Route` with the given `path`,
*
* @param {String} path
* @api private
*/
function Route(... |
/**
* ag-grid-community - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
* @version v21.1.1
* @link http://www.ag-grid.com/
* @license MIT
*/
"use strict";
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
Object.definePrope... |
// # Ghost Head Helper
// Usage: `{{ghost_head}}`
//
// Outputs scripts and other assets at the top of a Ghost theme
//
// We use the name ghost_head to match the helper for consistency:
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
var proxy = require('./proxy'),
_ = require('lodash'),
Promise = requ... |
// This file is part of Indico.
// Copyright (C) 2002 - 2021 CERN
//
// Indico is free software; you can redistribute it and/or
// modify it under the terms of the MIT License; see the
// LICENSE file for more details.
/**
* Returns true if the object is an array or is listable.
* @param {Object} object
* @return {... |
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(d... |
var
merge = require('merge'),
Messages = require('./../../lib/constants/messages'),
Validator = require('./../../lib/Validator'),
validator,
report,
expected,
file
;
exports.tests = {
'should report errors when tabs and spaces are mixed': function(test) {
file = __dirname + '/fixures/mixed.js';
validator =... |
var R = require('../source');
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('provides no way to specify context', function() {
var obj = {method: function() { return this =... |
/* eslint-disable */
;(function(root, factory) {
if (typeof define === 'function' && define.amd) { // AMD
define(['../core'], factory);
} else if (typeof exports === 'object') { // Node.js
module.exports = factory(require('../core'));
} else { // Browser
root.Blockly.Msg = factory(root.Blockly);
}
}... |
'use strict';
module.exports = {
item: '<li>{{label}}</li>',
link: '<a href="{{url}}">{{label}}</a>'
};
|
module.exports = Torrent
var addrToIPPort = require('addr-to-ip-port') // browser exclude
var BitField = require('bitfield')
var ChunkStoreWriteStream = require('chunk-store-stream/write')
var createTorrent = require('create-torrent')
var debug = require('debug')('webtorrent:torrent')
var Discovery = require('torrent-... |
version https://git-lfs.github.com/spec/v1
oid sha256:9cb73ee5021d6aa9f739fb07255d48cd7ad0f8c2acd5c37d0aac93f65bf60898
size 794
|
module.exports = {
'type': 'MultiPolygon',
'coordinates': [
[
[
[
102.0,
2.0
],
[
103.0,
2.0
],
[
103.0,
... |
define({
"_themeLabel": "Sklopiva tema",
"_layout_default": "Podrazumevani raspored",
"_layout_layout1": "Raspored 1"
}); |
module.exports = require('./lib/sphinxapi.js');
|
import { insertMarkdownText } from '~/lib/utils/text_markdown';
describe('init markdown', () => {
let textArea;
beforeAll(() => {
textArea = document.createElement('textarea');
document.querySelector('body').appendChild(textArea);
textArea.focus();
});
afterAll(() => {
textArea.parentNode.rem... |
(function(d3, fc) {
'use strict';
var dataGenerator = fc.data.random.financial()
.startDate(new Date(2014, 1, 1));
var data = dataGenerator(50);
// Calculate the scale domain
var day = 8.64e7, // One day in milliseconds
dateFrom = new Date(d3.min(data, function(d) { return d.date; ... |
/*
* ImageCache2::Viewer
*/
// {{{ GLOBALS
var last_checked_box = null, last_unchecked_box = null;
// }}}
// {{{ showToolbarExtra()
function showToolbarExtra()
{
var ext = document.getElementById('toolbarExtra');
var swa = document.getElementById('toolbarSwitchA');
var swb = document.getElementById('toolbarSwi... |
/*!
* jQuery JavaScript Library v2.0.0 -wrap,-event-alias,-ajax,-ajax/script,-ajax/jsonp,-ajax/xhr,-effects,-offset,-deprecated
* http://jquery.com/
*
* Includes Sizzle.js
* http://sizzlejs.com/
*
* Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors
* Released under the MIT license
* http://jq... |
$(function() {
$('#field-project').combobox();
}); |
"use strict";
const jsdom = require("../..");
exports["cookieEnabled should be true on the navigator object"] = t => {
const window = jsdom.jsdom().defaultView;
t.strictEqual(window.navigator.cookieEnabled, true, "cookie enabled");
t.done();
};
exports["navigator properties should be read-only from the site"] =... |
/****************************************************************************
Copyright (c) 2013-2014 Chukong Technologies Inc.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
... |
/*
* Creates a configured Webpack instance.
*/
const webpack = require('webpack');
const config = require('../config/webpack');
module.exports = (env = 'development') => webpack(config(env));
|
module.exports = function (babel) {
var Plugin = babel.Plugin;
var t = babel.types;
return new Plugin("meteor-sanitize-for-in-objects", {
visitor: {
// In browsers that do not support defining non-enumerable
// properties, defining any new methods on Array.prototype means
// those methods w... |
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("codesnippet","el",{button:"Εισαγωγή Αποσπάσματος Κώδικα",codeContents:"Περιεχόμενο κώδικα",emptySnippetError:"Δεν γίνεται να είναι κενά τα αποσπάσμα... |
import Vue from 'vue';
import delayedJobMixin from '~/jobs/mixins/delayed_job_mixin';
import mountComponent from 'spec/helpers/vue_mount_component_helper';
describe('DelayedJobMixin', () => {
const delayedJobFixture = getJSONFixture('jobs/delayed.json');
const dummyComponent = Vue.extend({
mixins: [delayedJobM... |
'use strict';
module.exports = require('../is-windows')
? require('./windows/relative').tests : require('./posix/relative').tests;
|
/*
* jQuery miniColors: A small color selector
*
* Copyright 2012 Cory LaViska for A Beautiful Site, LLC. (http://www.abeautifulsite.net/)
*
* Dual licensed under the MIT or GPL Version 2 licenses
*
*/
if(jQuery) (function($) {
$.extend($.fn, {
miniColors: function(o, data) {
var create = function(... |
Ext.ns('Ext.ux.grid');
/**
* @class Ext.ux.grid.MetaGrid
* @extends Object
* <p><b>Demo</b> link (<i>Firefox only for this particular demo!</i>): <a href="http://extjs-ux.org/repo/authors/mjlecomte/trunk/Ext/ux/metagrid.html">here</a></p>
* <p>Plugin (ptype = 'ux-grid-metagrid') to add capability to automatically ... |
/**
* @fileoverview Tests for no-duplicate-case rule.
* @author Dieter Oberkofler
*/
"use strict";
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
const rule = require("../../../lib/ru... |
'use strict';
import H from '../../parts/Globals.js';
import '../../parts/Utilities.js';
var Annotation = H.Annotation,
MockPoint = Annotation.MockPoint;
/**
* @class
* @extends Annotation
* @memberOf Highcharts
**/
function VerticalLine() {
H.Annotation.apply(this, arguments);
}
VerticalLine.connectorFi... |
/*! UIkit 3.1.9 | http://www.getuikit.com | (c) 2014 - 2019 YOOtheme | MIT License */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) :
typeof define === 'function' && define.amd ? define('uikitfilter', ['uikit-util'],... |
module.exports = {
Node: require('./lib/node'),
Broker: require('./lib/broker')
} |
app.service('busyIndicatorService', [function () {
var pleaseWaitDiv = $('<div class="modal hide" id="pleaseWaitDialog" data-backdrop="static" data-keyboard="false"><div class="modal-header"><h1>Processing...</h1></div><div class="modal-body"><div class="progress"><div class="progress-bar progress-striped active"... |
// Make code portable to Node.js without any changes
try {
var autobahn = require('autobahn');
} catch (e) {
// when running in browser, AutobahnJS will
// be included without a module system
}
var log = function(msg) {
document.getElementById('log').innerHTML = msg;
};
// Set up WAMP conne... |
/*
* 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.
*/
'... |
var parent = require('../../actual/reflect/apply');
module.exports = parent;
|
"use strict";
var assert = require("assert");
var testUtils = require("./helpers/util.js");
/*!
*
Copyright 2009–2012 Kristopher Michael Kowal. 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
dea... |
/* */
define(['exports'], function (exports) {
'use strict';
exports.__esModule = true;
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
var ValidationLocale = (function () {
function ValidationLocal... |
// Copyright 2018 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Non-binary properties without a value must throw in Unicode property escapes.
esid: sec-static-semantics-unicodematchproperty-p
negative:
phase: ... |
this["JST"] = this["JST"] || {};;;;;;this["JST"]["test/fixtures/basic.hbs"] = Handlebars.template({"compiler":[6,">= 2.0.0-beta.1"],"main":function(depth0,helpers,partials,data) {
return "Basic template that does nothing.";
},"useData":true});
|
var ItemFormatter = Class.create();
ItemFormatter.TMPL = Template.get("inbox_items");
ItemFormatter.extend({
initialize: function(){
this.tmpl = new Template(ItemFormatter.TMPL);
var filters = {
created_on : Filter.created_on,
modified_on : Filter.modified_on,
au... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.