code stringlengths 2 1.05M |
|---|
// Make inheritance bearable: clone one level of properties
MM.extend = function(child, parent) {
for (var property in parent.prototype) {
if (typeof child.prototype[property] == "undefined") {
child.prototype[property] = parent.prototype[property];
}
}
... |
/**
* Create the store with asynchronously loaded reducers
*/
import { createStore, applyMiddleware, compose } from 'redux';
import { fromJS } from 'immutable';
import { routerMiddleware } from 'react-router-redux';
import createSagaMiddleware from 'redux-saga';
import createReducer from './reducers';
const sagaMid... |
/*
* jQuery prettyDate v1.2.0pre
*
* @author John Resig (ejohn.org)
* @author Jörn Zaefferer
* @author Timo Tijhof
*
* Based on http://ejohn.org/blog/javascript-pretty-date
* Documentation: http://bassistance.de/jquery-plugins/jquery-plugin-prettydate/
*
* Copyright 2013 Jörn Zaefferer
* Released under the M... |
/**
* @license Highcharts JS v8.2.2 (2020-10-22)
*
* (c) 2009-2019 Sebastian Bochan, Rafal Sebestjanski
*
* License: www.highcharts.com/license
*/
'use strict';
(function (factory) {
if (typeof module === 'object' && module.exports) {
factory['default'] = factory;
module.exports = factory;
... |
/*!
* Bootstrap-select v1.13.18 (https://developer.snapappointments.com/bootstrap-select)
*
* Copyright 2012-2020 SnapAppointments, LLC
* Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
*/
!function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof defin... |
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<e8b636a26472c96224e2eadc9f2d6038>>
* @flow
* @lightSyntaxTransform
* @nogrep
*/
/* eslint-disabl... |
#pragma strict
private var originalScale: Vector3;
var playSound: boolean = true;
function Start () {
originalScale = this.transform.localScale;
this.transform.localScale *= 0.9;
}
function OnMouseEnter () {
this.transform.localScale = originalScale;
}
function OnMouseExit () {
this.transform.localScale = origin... |
import React from 'react';
import { EmojiButton } from './emoji-button';
export default { component: EmojiButton, title: 'Examples / Emoji Button' };
export const WithArgs = (args) => <EmojiButton {...args} />;
WithArgs.args = { label: 'With args' };
export const Basic = () => <EmojiButton label="Click me" />;
|
/**
* @ngdoc service
* @name umbraco.resources.contentTypeResource
* @description Loads in data for content types
**/
function contentTypeResource($q, $http, umbRequestHelper, umbDataFormatter) {
return {
getCount: function () {
return umbRequestHelper.resourcePromise... |
import { useRouter } from 'next/router'
export const getServerSideProps = () => {
return {
props: {
hello: 'world',
random: Math.random(),
},
}
}
export default (props) => (
<>
<h3 id="gssp">getServerSideProps</h3>
<p id="props">{JSON.stringify(props)}</p>
<div id="pathname">{use... |
// Copyright Joyent, Inc. and other Node contributors.
//
// 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, modi... |
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: match returns array as specified in 15.10.6.2
es5id: 15.5.4.10_A2_T12
description: >
Regular expression is variable that have value /([\d]{5})([-\
]?[\d]{4})?$/g
---*/... |
module.exports={"zones":{"America/Anguilla":["z",{"wallclock":-1825113600000,"format":"AST","abbrev":"AST","offset":-14400000,"posix":-1825098464000,"save":0},{"wallclock":-1.7976931348623157e+308,"format":"LMT","abbrev":"LMT","offset":-15136000,"posix":-1.7976931348623157e+308,"save":0}]},"rules":{}} |
var pex = pex || require('../../build/pex');
pex.sys.Window.create({
settings: {
width: 1280,
height: 720,
type: '3d',
vsync: true,
multisample: true,
fullscreen: false,
center: true,
canvas : pex.sys.Platform.isBrowser ? document.getElementById('canvas') : null
},
init: function(... |
import valid from "card-validator";
import { removeNonNumber, removeLeadingSpaces } from "./Utilities";
import pick from "lodash.pick";
const limitLength = (string = "", maxLength) => string.substr(0, maxLength);
const addGaps = (string = "", gaps) => {
const offsets = [0].concat(gaps).concat([string.length]);
re... |
exports.title = 'Camera';
exports.run = function(UI, Map) {
var win = UI.createWindow();
var rows = [
{
title: 'Set Camera',
run: function(){
map.camera = Map.createCamera({
centerCoordinate: {
latitude: -33.87365,... |
/*
* 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.
*/
'... |
// If no env is set, default to development
// This needs to be above all other require()
// modules to ensure config gets right setting.
// Module dependencies
var config = require('./config'),
express = require('express'),
when = require('when'),
_ = require('underscore'),
... |
/*!
* jQuery JavaScript Library v2.0.3 -event-alias,-effects,-offset,-dimensions
* http://jquery.com/
*
* Includes Sizzle.js
* http://sizzlejs.com/
*
* Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2013-07-07T17:13Z
... |
import { requireComponentDependancyByName } from '../dependancies'
export default function ContentZone(props) {
function RenderModules() {
let modules = props.page.zones[props.name]
return modules.map((m, i) => {
const AgilityModule = requireComponentDependancyByName(m.moduleName)
return <Agilit... |
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @emails react-core
*/
'use strict';
var React;
var ReactDOM;
describe('SyntheticWheelEvent', () => {
var container;
beforeEach... |
/*! @license Firebase v4.3.0
Build: rev-bd8265e
Terms: https://firebase.google.com/terms/
---
typedarray.js
Copyright (c) 2010, Linden Research, 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 Softw... |
'use strict';
var React = require('react');
var PureRenderMixin = require('react-addons-pure-render-mixin');
var SvgIcon = require('../../svg-icon');
var DeviceBrightnessLow = React.createClass({
displayName: 'DeviceBrightnessLow',
mixins: [PureRenderMixin],
render: function render() {
return React.create... |
import { ClientFunction } from 'testcafe';
fixture `Fixture`
.clientScripts({ content: 'window["property1"] = true;' });
const getPropertyValue = ClientFunction(propName => window[propName]);
test('test', async t => {
await t
.expect(getPropertyValue('property1')).ok()
.expect(getPropertyValu... |
var mongoose = require('mongoose'),
Schema = mongoose.Schema;
var userSchema = new Schema({
// The firstname of the user
firstname: {
type: String,
required: true
},
// The lastname of the user
lastname: {
type: String,
required: true
},
// When the use... |
YUI.add('inputex-serialize', function (Y, NAME) {
/**
* @module inputex-serialize
*/
var inputEx = Y.inputEx;
/**
* SerializeField allows to serialize/deserialize a complex sub-group to a string
* @class inputEx.SerializeField
* @extends inputEx.Field
* @constructor
* @param {Object} options Standard in... |
var UIconfig = require('../vue/UIconfig');
var config = {};
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// GENERAL SETTINGS
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
config.silent = false;
config.debug = true;
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~... |
tinymce.addI18n('zh_CN.GB2312',{
"Cut": "\u526a\u5207",
"Heading 5": "\u7ae0\u8282\u6807\u98985",
"Header 2": "\u6807\u98982",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u4f60\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301\u8bbf\u95ee\u526a\u5207... |
(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 + "'");
... |
import { Base } from './_Base';
export class OmnichannelQueue extends Base {
constructor() {
super('omnichannel_queue');
}
}
export default new OmnichannelQueue();
|
/**
* @requires OpenLayers/Lang.js
*/
/**
* Namespace: OpenLayers.Lang["en"]
* Dictionary for English. Keys for entries are used in calls to
* <OpenLayers.Lang.translate>. Entry bodies are normal strings or
* strings formatted for use with <OpenLayers.String.format> calls.
*/
OpenLayers.Lang... |
var cookieParser = require('..')
var http = require('http')
var request = require('supertest')
var signature = require('cookie-signature')
describe('connect.cookieParser()', function(){
var server
before(function(){
server = createServer('keyboard cat')
})
describe('when no cookies are sent',... |
/*
Highcharts JS v7.0.3 (2019-02-06)
Indicator series type for Highstock
(c) 2010-2019 Sebastian Bochan
License: www.highcharts.com/license
*/
(function(a){"object"===typeof module&&module.exports?(a["default"]=a,module.exports=a):"function"===typeof define&&define.amd?define(function(){return a}):a("undefined"... |
// validate.js v 1.98
// a generic form validator
// (cc) Brian Lalonde http://webcoder.info/downloads/validate.html
// License: http://creativecommons.org/licenses/by-sa/2.0/
//TODO: figure out why javascript form validation doesnt verify required select-one boxes
function formFocus(frm)
{ // convenient wa... |
var _idToPagePanelInfo = {};
var _url2link = {};
_getPanels = function ( panelEL ) {
var panels = [];
var panelDOM = Polymer.dom(panelEL);
for ( var i = 0; i < panelDOM.children.length; ++i ) {
var childEL = panelDOM.children[i];
var id = childEL.getAttribute('id');
panels.push(id)... |
/*
Highcharts JS v7.1.1 (2019-04-09)
Item series type for Highcharts
(c) 2019 Torstein Honsi
License: www.highcharts.com/license
*/
(function(a){"object"===typeof module&&module.exports?(a["default"]=a,module.exports=a):"function"===typeof define&&define.amd?define("highcharts/modules/item-series",["highcharts"... |
/*!
* froala_editor v3.0.5 (https://www.froala.com/wysiwyg-editor)
* License https://froala.com/wysiwyg-editor/terms/
* Copyright 2014-2019 Froala Labs
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('froala-editor')) :
typeof define === 'function... |
Clazz.declarePackage ("JSV.common");
Clazz.load (["JSV.common.Annotation", "$.Coordinate"], "JSV.common.Measurement", null, function () {
c$ = Clazz.decorateAsClass (function () {
this.pt2 = null;
this.value = 0;
Clazz.instantialize (this, arguments);
}, JSV.common, "Measurement", JSV.common.Annotation);
Clazz.p... |
module.exports = {
devtool: 'inline-source-map',
bail: true,
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel',
query: {
compact: false,
cacheDirectory: tr... |
/**
* @output wp-admin/js/user-profile.js
*/
/* global ajaxurl, pwsL10n */
(function($) {
var updateLock = false,
__ = wp.i18n.__,
$pass1Row,
$pass1,
$pass2,
$weakRow,
$weakCheckbox,
$toggleButton,
$submitButtons,
$submitButton,
currentPass;
function generatePassword() {
if ( typeof zxcvbn !... |
/*!
* Copyright (c) Metaways Infosystems GmbH, 2011
* LGPLv3, http://opensource.org/licenses/LGPL-3.0
*/
Ext.ns('MShop.panel.attribute');
// hook text picker into the attribute ItemUi
Ext.ux.ItemRegistry.registerItem('MShop.panel.attribute.ItemUi', 'MShop.panel.attribute.TextItemPickerUi', {
xtype : 'MShop.pa... |
'use strict';
var multiplicationOperator = function (a, b) {
return a * b;
};
/**
* Raise value to a positive integer power by repeated squaring.
*
* @param {*} base
* @param {number} power
* @param {function} [mul] - Multiplication function,
* standard multiplication operator by default.
* @param {*} id... |
// Sticky Plugin v1.0.0 for jQuery
// =============
// Author: Anthony Garand
// Improvements by German M. Bravo (Kronuz) and Ruud Kamphuis (ruudk)
// Improvements by Leonardo C. Daronco (daronco)
// Created: 2/14/2011
// Date: 2/12/2012
// Website: http://labs.anthonygarand.com/sticky
// Description: Makes an ... |
/*!
* remark (http://getbootstrapadmin.com/remark)
* Copyright 2016 amazingsurge
* Licensed under the Themeforest Standard Licenses
*/
(function(document, window, $) {
'use strict';
var Site = window.Site;
$(document).ready(function($) {
Site.run();
});
// Sparkline Basic
// ---------------
// ... |
require("should");
var dataUtil = require("../../data-util/garment-purchasing/garment-currency-data-util");
var helper = require("../../helper");
// var validate = require("dl-models").validator.garmentPurchasing.garmentPurchaseOrder;
var moment = require('moment');
var Manager = require("../../../src/managers/garment... |
import warning from './warning'
import { loopAsync } from './AsyncUtils'
import { matchPattern } from './PatternUtils'
import { createRoutes } from './RouteUtils'
function getChildRoutes(route, location, callback) {
if (route.childRoutes) {
callback(null, route.childRoutes)
} else if (route.getChildRoutes) {
... |
/*
* @flow
* @lint-ignore-every LINEWRAP1
*/
import {suite, test} from 'flow-dev-tools/src/test/Tester';
export default suite(({addFile, addFiles, addCode}) => [
test('Prevent reposition loops', [
addCode(`
declare class Map<K,V> {
get(k:K): ?V;
set(k:K,v:V): void
}
`).noNewE... |
var ZK = require ('../lib/zookeeper');
var assert = require('assert');
var log4js = require('log4js');
var async = require('async');
//
// based on node-leader
// https://github.com/mcavage/node-leader
// callback(error, zookeeperConnection)
//
function startZK(options, callback) {
if(typeof(options) !== 'object')
... |
import React from 'react'
import { Icon, Popup } from 'semantic-ui-react'
const PopupExampleOffset = () => (
<div>
<Popup
trigger={<Icon size='large' name='heart' circular />}
content='Way off to the left'
offset={50}
positioning='left center'
/>
<Popup
trigger={<Icon size='... |
/*
* $Id: combinatorics.js,v 0.25 2013/03/11 15:42:14 dankogai Exp dankogai $
*
* Licensed under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
* References:
* http://www.ruby-doc.org/core-2.0/Array.html#method-i-combination
* http://www.ruby-doc.org/core-2.0/Array.html#method-... |
//#include include/takeable.js
var label = "Mailbox Kit";
var version = "1327361898";
var name_single = "Mailbox Kit";
var name_plural = "Mailbox Kits";
var article = "a";
var description = "";
var is_hidden = false;
var has_info = true;
var adjusted_scale = 1;
var stackmax = 1;
var base_cost = 0;
var input_for = [];
... |
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you m... |
module.exports=[')',']','}','\u0F3B','\u0F3D','\u169C','\u2046','\u207E','\u208E','\u2309','\u230B','\u232A','\u2769','\u276B','\u276D','\u276F','\u2771','\u2773','\u2775','\u27C6','\u27E7','\u27E9','\u27EB','\u27ED','\u27EF','\u2984','\u2986','\u2988','\u298A','\u298C','\u298E','\u2990','\u2992','\u2994','\u2996','\u2... |
module.exports = require('./skypager.js')
|
/*
* Copyright (C) 2015 Glyptodon LLC
*
* 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, publi... |
var connect = require('connect')
var app = connect()
app.use(function(req,res,next){
res.writeHead(200)
res.end(JSON.stringify({"web":{"test":"web"}}))
})
app.listen(62626)
console.log('ready')
setTimeout(process.exit,3000)
|
const KEYWORDS = [
"as", // for exports
"in",
"of",
"if",
"for",
"while",
"finally",
"var",
"new",
"function",
"do",
"return",
"void",
"else",
"break",
"catch",
"instanceof",
"with",
"throw",
"case",
"default",
"try",
"switch",
"continue",
"typeof",
"delete",
"let",... |
var currentBoard = function() {
return Boards.findOne(Router.current().params.boardId);
}
var widgetTitles = {
filter: 'filter-cards',
background: 'change-background'
};
Template.boardWidgets.helpers({
currentWidget: function() {
return Session.get('currentWidget') + 'Widget';
},
curre... |
window.onload = function() {
var artwork = document.getElementById("j5-artwork");
if (!artwork) {
return;
}
var original = artwork.firstElementChild;
var payload = artwork.lastElementChild;
var audio = document.createElement("audio");
var sequence = [38, 38, 40, 40, 37, 39, 37, 39, 66, 65];
var pr... |
import createRound from '../internal/createRound';
/**
* Calculates `n` rounded up to `precision`.
*
* @static
* @memberOf _
* @category Math
* @param {number} n The number to round up.
* @param {number} [precision=0] The precision to round up to.
* @returns {number} Returns the rounded up number.
* @example
... |
var ChannelModule = require("./module");
var Poll = require("../poll").Poll;
const TYPE_NEW_POLL = {
title: "string",
timeout: "number,optional",
obscured: "boolean",
opts: "array"
};
const TYPE_VOTE = {
option: "number"
};
function PollModule(channel) {
ChannelModule.apply(this, arguments);
... |
const {createAddColumnMigration} = require('../../utils');
module.exports = createAddColumnMigration('members_stripe_customers_subscriptions', 'cancellation_reason', {
type: 'string',
maxlength: 500,
nullable: true
});
|
var error = require('./error');
function flattenShallow(array) {
if (!array || !array.reduce) { return array; }
return array.reduce(function(a, b) {
var aIsArray = Array.isArray(a);
var bIsArray = Array.isArray(b);
if (aIsArray && bIsArray ) {
return a.concat(b);
}
if (aIsArray) {
a... |
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'clipboard', 'pl', {
copy: 'Kopiuj',
copyError: 'Ustawienia bezpieczeństwa Twojej przeglądarki nie pozwalają na automatyczne kopiowanie tekstu. Użyj ... |
/**
* @author mrdoob / http://mrdoob.com/
*/
Sidebar.Settings = function ( editor ) {
var config = editor.config;
var signals = editor.signals;
var strings = editor.strings;
var container = new UI.Panel();
container.setBorderTop( '0' );
container.setPaddingTop( '20px' );
container.setPaddingBottom( '20px' )... |
tinyMCE.addI18n('no.advhr_dlg',{
width:"Bredde",
size:"Høyde",
noshade:"Ingen skygge"
});
|
import Ember from 'ember';
const a = Ember.A;
export default Ember.Route.extend({
model() {
return {
items: a(['Uno', 'Dos', 'Tres', 'Cuatro', 'Cinco'])
};
},
actions: {
update(newOrder, draggedModel) {
this.set('currentModel.items', a(newOrder));
this.set('currentModel.dragged', d... |
module.exports={title:"Databricks",slug:"databricks",get svg(){return'<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Databricks</title><path d="'+this.path+'"/></svg>'},path:"M.95 14.184L12 20.403l9.919-5.55v2.21L12 22.662l-10.484-5.96-.565.308v.77L12 24l11.05-6.218v-4.317l-.515-.309L12 1... |
/****************************************************************************
Copyright (c) 2011 Gordon P. Hemsley
http://gphemsley.org/
Copyright (c) 2010-2013 cocos2d-x.org
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associ... |
module.exports={title:"Crystal",slug:"crystal",get svg(){return'<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Crystal</title><path d="'+this.path+'"/></svg>'},path:"M23.964 15.266l-8.687 8.669c-.034.035-.086.052-.121.035L3.29 20.79c-.052-.017-.087-.052-.087-.086L.007 8.856c-.018-.053 0-.... |
angular.module('ui.bootstrap.position', [])
/**
* A set of utility methods that can be use to retrieve position of DOM elements.
* It is meant to be used where we need to absolute-position DOM elements in
* relation to other, existing elements (this is the case for tooltips, popovers,
* typeahead suggestions etc.)... |
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
// THIS CODE IS GENERATED - DO NOT MODIFY
// See angular/tools/gulp-tasks/cldr/extract.js
(function(global) {
global... |
/**
* @file 命令相关配置项目,用来配置命令执行前或者执行后的动作
* @author mengke01(kekee000@gmail.com)
*/
define(
function (require) {
// 支持历史记录的命令列表
var supportHistory = {
alignshapes: true,
verticalalignshapes: true,
horizontalalignshapes: true,
joinshapes: true,
... |
import { settings } from '../../../settings';
settings.addGroup('Webdav Integration', function() {
this.add('Webdav_Integration_Enabled', false, {
type: 'boolean',
public: true,
});
});
|
var key_2_s = function( p ) {
var x = 20;
p.setup = function() {
p.createCanvas(100, 100);
p.strokeWeight(4);
}
p.draw = function() {
p.background(204);
if (p.keyIsPressed == true) { // If the key is pressed
x++; // add 1 to x
}
p.line(x, 20, x-60, 80);
}
};
... |
import Vue from 'vue';
const manager = new Vue({
data() {
return {
current: null
};
}
});
export default manager;
|
import { useMemo } from 'react';
import { DropTargetMonitorImpl } from '../../internals';
import { useDragDropManager } from '../useDragDropManager';
export function useDropTargetMonitor() {
var manager = useDragDropManager();
return useMemo(function () {
return new DropTargetMonitorImpl(manager);
}, [manager... |
"use strict";
module.exports = require("./is-implemented")()
? Math.sinh
: require("./shim");
|
// Load modules
var Http = require('http');
var Stream = require('stream');
var Bluebird = require('bluebird');
var Boom = require('boom');
var Code = require('code');
var Hapi = require('..');
var Hoek = require('hoek');
var Lab = require('lab');
// Declare internals
var internals = {};
// Test shortcuts
var la... |
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
import type {PriorityLevel} from './SchedulerPriorities';
import {enableProfiling} from './SchedulerFeatureFlags';
im... |
'use strict';
const stringUtil = require('ember-cli-string-utils');
module.exports = {
description: 'Generates an Ember application with a module unification layout.',
filesToRemove: [],
locals(options) {
let entity = options.entity;
let rawName = entity.name;
let name = stringUtil.dasherize(rawNa... |
// @noflow
var x: string = 123;
|
/*
Language: VBScript in HTML
Requires: xml.js, vbscript.js
Author: Ivan Sagalaev <maniac@softwaremaniacs.org>
Description: "Bridge" language defining fragments of VBScript in HTML within <% .. %>
Website: https://en.wikipedia.org/wiki/VBScript
Category: scripting
*/
function vbscriptHtml(hljs) {
return {
name: ... |
const path = require('path');
module.exports = {
entry: {
client1: './src/client1.js',
client2: './src/client2.js',
client3: './src/client3.js',
client4: './src/client4.js'
},
output: {
path: path.resolve(__dirname, '../public'),
filename: '[name].bundle.js'
}
};
|
// 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 applicable law or agreed to in writing, software
// distributed ... |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'format', 'ko', {
label: '포맷',
panelTitle: '포맷',
tag_address: 'Address',
tag_div: 'Normal (DIV)', // MISSING
tag_h1: 'Heading 1',
ta... |
/**
@module dbUpdate
@class dbUpdate
@toc
1. sessId
*/
'use strict';
var Q = require('q');
var lodash = require('lodash');
var dependency =require('../../../dependency.js');
var pathParts =dependency.buildPaths(__dirname, {});
// var StringMod =require(pathParts.services+'string/string.js');
var MongoDBMod =requir... |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'image', 'he', {
alertUrl: 'יש להקליד את כתובת התמונה',
alt: 'טקסט חלופי',
border: 'מסגרת',
btnUpload: 'שליחה לשרת',
button2Img: 'האם ... |
version https://git-lfs.github.com/spec/v1
oid sha256:f253cdd70d6409cfd55dbf57f6304532b6af981d266164254fd41de91a500998
size 2723
|
/*
* This file has been generated to support Visual Studio IntelliSense.
* You should not use this file at runtime inside the browser--it is only
* intended to be used only for design-time IntelliSense. Please use the
* standard jQuery library for all production use.
*
* Comment version: 1.6.1
*/
/*!
* jQuery JavaScr... |
/*! Raven.js 3.23.1 (84edddc) | github.com/getsentry/raven-js */
/*
* Includes TraceKit
* https://github.com/getsentry/TraceKit
*
* Copyright 2018 Matt Robenolt and other contributors
* Released under the BSD license
* https://github.com/getsentry/raven-js/blob/master/LICENSE
*
*/
(function(f){if(typeof expor... |
/**
* Copyright 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.
*
* @noflow
* @p... |
import Ember from 'ember';
const {assign} = Ember;
export default {
name: 'jquery-ajax-oauth-prefilter',
after: 'ember-simple-auth',
initialize(application) {
let session = application.lookup('service:session');
Ember.$.ajaxPrefilter(function (options) {
session.authorize('au... |
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.runTapticImpactOccurred = runTapticImpactOccurred;
var _vkBridge = _interopRequireDefault(require("@vkontakte/vk-bridge"));
function ru... |
describe("expression", function() {
var rootEl;
beforeEach(function() {
rootEl = browser.rootEl;
browser.get("./examples/example-example89/index-jquery.html");
});
it('should calculate expression in binding', function() {
expect(element(by.binding('1+2')).getText()).toEqual('1+2=3');
});
});
|
import Colors from '../colors';
import ColorManipulator from '../../utils/color-manipulator';
import Spacing from '../spacing';
/*
* Light Theme is the default theme used in material-ui. It is guaranteed to
* have all theme variables needed for every component. Variables not defined
* in a custom theme will defa... |
beforeAll(function() {
RewardDetailsMockery = function(attrs) {
var attrs = attrs || {};
var data = {
id: 25935,
project_id: 6140,
description: "reward_descriptiom",
minimum_value: 20,
maximum_contributions: null,
deliver_at: "2014-12-01T02:00:00",
updated_at: "2014-0... |
module.exports={A:{A:{"2":"VB","8":"J C G","129":"B A","161":"E"},B:{"129":"D Y g H L"},C:{"1":"0 1 3 4 5 6 L M N O P Q R S T U V W X v Z a b c d e f K h i j k l m n o p q r s x y u t","2":"TB z","33":"F I J C G E B A D Y g H RB QB"},D:{"1":"0 1 3 4 5 6 f K h i j k l m n o p q r s x y u t FB AB CB UB DB","33":"F I J C ... |
import UsersSelect from '~/users_select';
import ShortcutsNavigation from '~/behaviors/shortcuts/shortcuts_navigation';
import initBoards from '~/boards';
document.addEventListener('DOMContentLoaded', () => {
new UsersSelect(); // eslint-disable-line no-new
new ShortcutsNavigation(); // eslint-disable-line no-new
... |
// flow-typed signature: 899226cdfae67586c21c8615d3d4fc42
// flow-typed version: <<STUB>>/tcomb_v^3.2.15/flow_v0.37.1
/**
* This is an autogenerated libdef stub for:
*
* 'tcomb'
*
* Fill this stub out by replacing all the `any` types.
*
* Once filled out, we encourage you to share your work with the
* commu... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.