code stringlengths 2 1.05M |
|---|
$(function() {
// sparkline charts
var myvalues = [10,8,5,7,4,6,7,1,3,5,9,4,4,1];
$('.mini-graph.success').sparkline(myvalues, {type: 'bar', barColor: '#90c657',lineColor:'black', height: '40'} );
$('.inlinesparkline').sparkline();
// sparkline charts
var myvalues = [10,8,5,3,5,7,4,6,7,1,9,4,4,1]... |
/**
* @author v.lugovsky
* created on 10.12.2016
*/
(function () {
'use strict';
angular.module('SouzaCar.theme.inputs', []);
})();
|
define(['./_baseIsSet', './_baseUnary', './_nodeUtil'], function(baseIsSet, baseUnary, nodeUtil) {
/* Node.js helper references. */
var nodeIsSet = nodeUtil && nodeUtil.isSet;
/**
* Checks if `value` is classified as a `Set` object.
*
* @static
* @memberOf _
* @since 4.3.0
* @category Lang
... |
SVG.Parent = SVG.invent({
// Initialize node
create: function(element) {
this.constructor.call(this, element)
}
// Inherit from
, inherit: SVG.Element
// Add class methods
, extend: {
// Returns all child elements
children: function() {
return SVG.utils.map(SVG.utils.filterSVGElements(this... |
(function() {
function Laser(name, deps) {
console.log('Laser plugin loaded');
var claserstate = 0;
// Cockpit
deps.cockpit.on('plugin.laser.set', function (value) {
sendLaser(value);
});
// Arduino
deps.globalEventLoop.on( 'mcu.status', function (data) {
if ('claser' in data... |
angular.module('sandstone.slurm')
.controller('SubmitStatusCtrl', ['$scope','$uibModalInstance','data',function($scope,$uibModalInstance,data) {
$scope.output = data.output;
$scope.dismiss = function () {
$uibModalInstance.dismiss('dismiss');
};
}]);
|
var utils = require('../lib/utils')
, assert = require('assert');
describe('utils.etag(body)', function(){
var str = 'Hello CRC';
var strUTF8 = '<!DOCTYPE html>\n<html>\n<head>\n</head>\n<body><p>自動販売</p></body></html>';
it('should support strings', function(){
utils.etag(str).should.eql('"-2034458343... |
tests.push(['common/space/delBeforePercent', [
['20 %', '20%'],
['около 4\u00A0%', 'около 4%']
]]);
|
var pretender;
var describe = QUnit.module;
var it = QUnit.test;
describe('pretender creation', function(config) {
config.afterEach(function() {
if (pretender) {
pretender.shutdown();
}
pretender = null;
});
test('a mapping function is optional', function(assert) {
var result = false;
... |
var TypedError = require("error/typed")
var process = require("process")
var users = require("./user-db.js")
var NOT_FOUND = TypedError({
statusCode: 404,
message: "Cannot find user %s"
})
module.exports = loadUser
function loadUser(id, callback) {
var user = users[id]
process.nextTick(function () ... |
/*global describe, it, browser */
describe('daterangepicker', function () {
'use strict';
it('should match the baseline screenshot of the daterangepicker', function () {
return browser
.setupTest('/daterangepicker/fixtures/test.full.html')
.compareScreenshot({
s... |
// Karma configuration
// http://karma-runner.github.io/0.12/config/configuration-file.html
// Generated on 2015-07-27 using
// generator-karma 1.0.0
var webpack = require('karma-webpack');
var path = require('path');
var rootDir = path.join(__dirname);
var specDir = path.join(__dirname, '/test/spec/unit');
var libDir... |
'use strict';
module.exports = function(app) {
var users = require('../../app/controllers/users.server.controller');
var vendorcontactnotes = require('../../app/controllers/vendorcontactnotes.server.controller');
// Vendorcontactnotes Routes
app.route('/vendorcontactnotes')
.get(vendorcontactnotes.list)
.post... |
// Simply list all facts
module.exports = function (web) {
var app = web.express();
// Set up views!
app.set('views', __dirname + '/../templates');
app.set('view engine', 'jade');
app.get('/', web.render(app, 'quotes', function (req, next) {
web.bot.db.schemas.quote.findQ({}).then(function (quotes) {
next(... |
#!/usr/bin/env node
var app = require("commander");
var fuzzysearch = require("fuzzysearch");
var getLists = require("./lib/get-lists");
var printList = require("./lib/print-list");
var auth = require("./lib/auth");
app
.description("Display a list")
.usage("[query]")
.parse(process.argv);
function main() {
... |
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon"));
var _jsxRuntime = require("react/jsx-runtime")... |
/*
* angular-elastic v2.4.2
* (c) 2014 Monospaced http://monospaced.com
* License: MIT
*/
angular.module('monospaced.elastic', [])
.constant('msdElasticConfig', {
append: ''
})
.directive('msdElastic', [
'$timeout', '$window', 'msdElasticConfig',
function($timeout, $window, config) {
'use... |
const errors = require('@feathersjs/errors');
const Debug = require('debug');
const debug = Debug('@feathersjs/authentication:express:authenticate');
module.exports = function authenticate (strategy, options = {}) {
// TODO (EK): Support arrays of strategies
if (!strategy) {
throw new Error(`The 'authenticate... |
'use strict';
var should = require('should');
var app = require('../../app');
var request = require('supertest');
var config = require('../../config/environment/test');
var mongoose = require('mongoose');
var Container = require('../container/container.model');
describe('GET /api/dump', function() {
beforeEach(func... |
define([
'hbs!templates/item/total-projects-count'
], function (Template) {
'use strict';
return Backbone.Marionette.ItemView.extend({
serializeData: function () {
return {
totalProjectsCount: this.collection.length
}
},
template: Template
});
});
|
/**
* Copyright 2015 Telerik AD
*
* 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 ... |
'use strict';
const escapeNewlines = (content = '', placeholder = '\n') => {
return content.replace(/[\r\n]+/g, placeholder);
};
const deepTrimObject = attribute => {
if (Array.isArray(attribute)) {
return attribute.map(deepTrimObject);
}
if (typeof attribute === 'object') {
return Object.entries(att... |
UpdateSpace.Show = Backbone.Model.extend({
urlRoot: '/upcomingShows'
}); |
(function() {
'use strict';
angular
.module('articles')
.run(menuConfig);
menuConfig.$inject = ['Menus'];
function menuConfig(Menus) {
Menus.addMenuItem('topbar', {
title: 'Articles',
state: 'articles',
type: 'dropdown',
roles: ['*']
});
// Add the dropdown list i... |
define({
"_widgetLabel": "Atstumai ir kryptys",
"tabLineTitle": "Linija",
"tabCircleTitle": "Apskritimas",
"tabEllipseTitle": "Elipsė",
"tabRingsTitle": "Žiedai",
"multipleNotationsMessage": " žymėjimai, kurie atitinka įvestį. Patvirtinkite, kurį norite naudoti:",
"invalidCoordinateMessage": "Neteisinga k... |
process.env.NODE_ENV = 'production';
require('dotenv').config({silent: true});
var chalk = require('chalk');
var fs = require('fs-extra');
var path = require('path');
var pathExists = require('path-exists');
var webpack = require('webpack');
var config = require('../../config/webview/webpack');
var paths = require('..... |
var ipModal = jQuery('.ip-filter-modal');
jQuery('._js_ip-filter-form').on('submit', function(e){
e.preventDefault();
var requestData = {};
requestData["ip"] = jQuery(this).find('input[name="ip"]').val();
requestData["type"] = jQuery(this).find('input[name="type"]').val();
var xhr = new XMLHttpRequest();
... |
"use strict";
/* global _bingMapKey */
/* global hljs */
/* global vis */
/* global moment */
/*
GalleryOutputModule
*/
PS.API.Playground.GalleryOutputModule = function() {};
PS.API.Playground.GalleryOutputModule.prototype.name = "gallery";
PS.API.Playground.GalleryOutputModule.prototype.createDOM = function() {
... |
'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]; } }... |
var util = require("util");
var PacketType = require("./PacketType");
var RConPacket = require("./RConPacket");
function RConTerminator(id) {
RConPacket.call(this, PacketType.EXEC_RESPONSE, id, "");
}
util.inherits(RConTerminator, RConPacket);
module.exports = RConTerminator;
|
import React from 'react';
import createSvgIcon from './utils/createSvgIcon';
export default createSvgIcon(
<React.Fragment><path fill="none" d="M0 0h24v24H0V0z" /><g><path d="M18 13H6V9H4v6h16V9h-2z" /></g></React.Fragment>
, 'SpaceBarTwoTone');
|
/*!
* angular-masonry 0.8.1
* Pascal Hartig, weluse GmbH, http://weluse.de/
* License: MIT
* Modified from https://github.com/passy/angular-masonry/pull/41/commits to work without jQuery
*/
'use strict';
define(['angular'], function (angular) {
angular.module('wu.masonry', []).controller('MasonryCtrl', [
... |
/**
* ElementType.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.core.dom.ElementType',
[
'ephox.katamari.api.Arr',
'ephox.katamari.api.... |
const serviceAccount = require('./service.json')
const mapValues = require('@f/map-values')
const admin = require('firebase-admin')
const reduce = require('@f/reduce')
admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
databaseURL: 'https://artbot-26016.firebaseio.com'
})
const db = admin.da... |
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import * as MentorshipActionCreators from './actions';
import cssModules from 'react-css-modules';
import styles from './index.module.scss';
import Heading from 'grommet-udacity/components/Headin... |
///////////////////////////////////////////////////////////////////////////
// Copyright © 2014 - 2016 Esri. 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
//
// h... |
// @flow
// This is an internal module, not part of the KaTeX distribution,
// whose purpose is to generate `unicodeSymbols` in Parser.js
// In this way, only this module, and not the distribution/browser,
// needs String's normalize function. As this file is not transpiled,
// Flow comment types syntax is used.
const ... |
var assert = require('assert'), sys = require('sys')
process.mixin(GLOBAL, require('../lib'))
setup(function() {
this.a = 1
})
teardown(function() {
assert.equal(1, this.a) // this should fail for test #2
})
test("assert equals", function() {
assert.equal(1, this.a)
})
test("sample exception", function() {
... |
version https://git-lfs.github.com/spec/v1
oid sha256:d07d49f494d046f497f2a46986506a305c1ddf83cc140ac9152be2ad35abae0e
size 1608
|
const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: {
'vanilla-counter': [
'webpack-hot-middleware/client',
'./example/vanilla-counter/index.js'
],
'react-counter': [
'webpack-hot-middleware/client',
'./... |
Template.orionMaterializeLayout.onRendered(function() {
});
Template.orionMaterializeHeaderContainer.onRendered(function() {
$('#sidenav-overlay').click();
$('.button-collapse').sideNav();
$('.dropdown-button').dropdown({
constrain_width: false,
});
});
Template.orionMaterializeHeaderContainer.events({
... |
//noinspection BadExpressionStatementJS
'format es6';
let name = 'root';
import { registerUiState } from 'nn-ng-utils';
import './nn-menu/nn-menu';
import './nn-menu-toolbar/nn-menu-toolbar';
import './nn-menu-content/nn-menu-content';
import './nn-main/nn-main';
import './nn-main-content/nn-main-content';
import '.... |
module.exports={A:{A:{"1":"E A B","2":"K D G hB"},B:{"1":"2 C d J M H I"},C:{"1":"0 1 3 4 7 8 9 e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"2 eB DB F N K D G E A B C d J M H I O P YB XB","4":"6 Q R S T U V W X Y Z a b c"},D:{"1":"0 1 2 3 4 6 7 8 9 F N K D G E A B C d J M H I O P Q R S T U V W X Y Z... |
import Ember from 'ember';
const {
A,
Route
} = Ember;
export default Route.extend({
model() {
var animalOptions = A();
animalOptions.push(this.store.createRecord('animal', {
id: 1,
name: 'Dog',
longName: 'Big Dog',
}));
animalOptions.push(this.store.createRecord('animal', {
... |
import './notFound.html';
|
const theme = {}
export default theme
|
import React from 'react';
import { mountWithIntl } from 'enzyme-react-intl';
import UpgradeToMaltainvestCard from '../UpgradeToMaltainvestCard';
describe('<UpgradeToMaltainvestCard />', () => {
const PROPS = {
residenceList: [{
phone_idd: '260',
text: 'Zambia',
value: 'zm'
},
{
... |
module.exports={A:{A:{"1":"F A B","2":"M D H mB"},B:{"1":"C E q L O I J K"},C:{"1":"0 1 2 3 4 6 8 9 F A B C E q L O I J P Q R S T U V W X Y Z a b c d f g h i j k l m n o p N r s t u v w x y z LB BB CB DB EB FB HB IB JB","2":"5 jB AB G M D H eB cB"},D:{"1":"0 1 2 3 4 6 9 s t u v w x y z LB BB CB DB EB FB HB IB JB bB VB ... |
import React from 'react';
export default class GetStarted extends React.Component {
render() {
return (
<div className="wrapper">
<div
className="markdown-body"
dangerouslySetInnerHTML={ { __html: require('../../../docs/GETSTARTED.md') } ... |
/**
* @module Pink.Plugin.Signals
* @desc Ink wrapper for Signals.js lib
* @author hlima, ecunha, ttt AT sapo.pt
* @version 1
*/
Ink.createModule('Pink.Plugin.Signals', '1', [], function() {
/**
*
*
*
* Object that represents a binding between a Signal and a listener function.
* <b... |
MathJax.OutputJax["HTML-CSS"].defineImageData({MathJax_AMS:{9733:[[7,6,1],[8,7,1],[9,9,2],[11,11,2],[13,12,2],[15,14,2],[18,17,3],[21,20,3],[25,24,4],[30,27,4],[36,33,5],[42,39,6],[50,46,7],[60,54,8]]}}),MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].imgDir+"/AMS/Regular"+MathJax.OutputJax["HTML-CSS"].imgPacke... |
/*!
* ui-grid - v4.9.0 - 2020-09-27
* Copyright (c) 2020 ; License: MIT
*/
(function() {
'use strict';
/**
* @ngdoc overview
* @name ui.grid.resizeColumns
* @description
*
* # ui.grid.resizeColumns
*
* <div class="alert alert-success" role="alert"><strong>Stable</strong> This feature is s... |
/* *
*
* Experimental Highcharts module which enables visualization of a Venn
* diagram.
*
* (c) 2016-2019 Highsoft AS
* Authors: Jon Arild Nygard
*
* Layout algorithm by Ben Frederickson:
* https://www.benfrederickson.com/better-venn-diagrams/
*
* License: www.highcharts.com/license
*
* !!!!!!! SO... |
module.exports={"title":"KaiOS","hex":"6F02B5","source":"https://www.dropbox.com/sh/2qihtgrzllws8ki/AABmo9X1KMT6lHnvh4Em7dpWa?dl=0","svg":"<svg role=\"img\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><title>KaiOS icon</title><path d=\"M4.47 0a2.81 2.81 0 0 0-2.84 2.78v18.43A2.8 2.8 0 0 0 4.47 24a2.8 2.8... |
/**
* The command line interface for interacting with the Protractor runner.
* It takes care of parsing command line options.
*
* Values from command line options override values from the config.
*/
'use strict';
var args = [];
process.argv.slice(2).forEach(function(arg) {
var flag = arg.split('=')[0];
swit... |
var _iterator = babelHelpers.createForOfIteratorHelper(b),
_step;
try {
myLabel: //woops
for (_iterator.s(); !(_step = _iterator.n()).done;) {
let a = _step.value;
continue myLabel;
}
} catch (err) {
_iterator.e(err);
} finally {
_iterator.f();
}
|
/**
*******************************************************
* *
* Copyright (C) Microsoft. All rights reserved. *
* *
*******************************************************
*/
var glob = require('glob')... |
(function () {
'use strict';
var module = angular.module('fim.base');
module.factory('AccountPostProvider', function (nxt, $q, IndexedEntityProvider, CommentProvider) {
function AccountPostProvider(api, $scope, pageSize, account) {
this.init(api, $scope, pageSize, account);
var account_id = nxt.util.co... |
/* */
"format register";
define(["exports"], function (exports) {
"use strict";
exports.isClass = isClass;
function test() {}
if (!test.name) {
Object.defineProperty(Function.prototype, "name", {
get: function () {
var name = this.toString().match(/^\s*function\s*(\S*)\s*\(/)[1];
Obj... |
/*
* 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.
*/
'... |
// --------------------------------------------------------
// WARNING: this file is used by both the client and the server.
// Do not use any browser or node-specific API!
// --------------------------------------------------------
export default {
run: 'run',
idle: 'idle',
};
|
/**
* @package hubzero-cms
* @copyright Copyright 2005-2019 HUBzero Foundation, LLC.
* @license http://opensource.org/licenses/MIT MIT
*/
if (!jq) {
var jq = $;
}
String.prototype.nohtml = function () {
return this + (this.indexOf('?') == -1 ? '?' : '&') + 'no_html=1';
};
jQuery(document).ready(function... |
/**
* @constructor
*/
SOULWIRE.Stream = function( $context ) {
this.MAX_TWEETS = 20;
this.MAX_PHOTOS = 10;
this.firstLoad = true;
this.$flickr = $("section.flickr", $context);
this.$github = $("section.github", $context);
this.$twitter = $("section.twitter", $context);... |
// svg.easing.js 0.2 - Copyright (c) 2013 Wout Fierens - Licensed under the MIT license
SVG.easing={backIn:function(e){var t=1.70158;return e*e*((t+1)*e-t)},backOut:function(e){e=e-1;var t=1.70158;return e*e*((t+1)*e+t)+1},bounce:function(e){var t=7.5625,n=2.75,r;if(e<1/n){r=t*e*e}else{if(e<2/n){e-=1.5/n;r=t*e*e+.75}el... |
class A {
declare foo
}
|
define({
"_widgetLabel": "Navodila za pot",
"_featureAction_DirectionFrom": "Navodila za pot od tukaj",
"_featureAction_DirectionTo": "Navodila za pot do sem",
"_featureAction_OpenInDirections": "Odpri v Navodilih za pot",
"_featureAction_OpenRoute": "Odpri pot",
"_featureAction_EditRoute": "Uredi pot",
"... |
module.exports = require("npm:chai@3.2.0/index"); |
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"));
else if (typeof define == "function" && define.amd... |
angular.module('ngAnimateStylers', ['ngAnimateSequence'])
.config(['$$animateStylerProvider', function($$animateStylerProvider)
{
//JQUERY
$$animateStylerProvider.register('jQuery', function() {
return function(element, pre, duration, delay) {
delay = delay || 0;
element.css(pre);
... |
(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.ZeroClientProv... |
/*
* GazeJS - An implementation of the JavaScript bindings for Tobii Gaze SDK.
* https://github.com/jiahansu/GazeJS
*
* Copyright (c) 2013-2013, Jia-Han Su (https://github.com/jiahansu)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted pr... |
/**
* jCarouselLite - jQuery plugin to navigate images/any content in a carousel style widget.
* @requires jQuery v1.1.2
*
* http://gmarwaha.com/jquery/jcarousellite/
*
* Copyright (c) 2007 Ganeshji Marwaha (gmarwaha.com)
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-l... |
///////////////////////////////////////////////////////////////////////////
// Copyright © Esri. 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.ap... |
/* ============================================================
* Builder Script
=========================================================== */
/**** BUILDER FUNCTIONS ****/
function toggleBuilder(){
$('.builder-toggle').on('click', function(){
if($('#builder').hasClass('open')) $('#builder').remo... |
'use strict';
/*
* Performance cache for information about packages (projects/addons/"apps"/modules)
* under an initial root directory and resolving addon/dependency links to other packages.
*/
const fs = require('fs-extra');
const path = require('path');
const ErrorList = require('./error-list');
const Errors = r... |
const cheerio = require(`cheerio`)
const path = require(`path`)
const fs = require(`fs`)
const _ = require(`lodash`)
module.exports = htmlPath => {
// load index.html to pull scripts/links necessary for proper offline reload
let html
try {
// load index.html to pull scripts/links necessary for proper offline... |
/**
* @license
* Copyright Google Inc. 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) {
glo... |
/*
* Some Duktape specific Symbol tests.
*/
/*@include util-buffer.js@*/
/*===
TypeError
TypeError
{"foo":123,"baz":[1,2,null,4,5]}
{foo:123,baz:[1,2,null,4,5]}
0
0
SETTER called number 123 symbol Symbol(accessor)
GETTER called symbol Symbol(accessor)
dummy-getter
===*/
function test() {
// Because Symbols fa... |
/* eslint no-fallthrough: off */
import dateMath from 'date-arithmetic';
import localizer from '../localizer';
const MILLI = {
seconds: 1000,
minutes: 1000 * 60,
hours: 1000 * 60 * 60,
day: 1000 * 60 * 60 * 24
}
const MONTHS = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
let dates = {
...dateMath,
monthsInYe... |
'use strict';
var lint = require('./_lint');
//////////////////////////////
// SCSS syntax tests
//////////////////////////////
describe('space after colon - scss', function () {
var file = lint.file('space-after-colon.scss');
it('[include: true]', function (done) {
lint.test(file, {
'space-after-colon... |
var coregiDirectives = angular.module('coregiDirectives', []);
|
version https://git-lfs.github.com/spec/v1
oid sha256:9d4af347f0a795bf322d4b6bfaf48e96d8f51fcaa8ebca342ad876577463fec4
size 1148
|
/*
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","sk",{euro:"Znak eura",lsquo:"Ľavá jednoduchá úvodzovka",rsquo:"Pravá jednoduchá úvodzovka",ldquo:"Pravá dvojitá úvodzovka",rdquo:"P... |
/**
* Copyright 2012-2016, Plotly, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
module.exports = {
barmode: {
valType: 'enumerated',
values: ['stack', 'group', 'overlay', ... |
var Q = require('q');
var expect = require('expect.js');
var helpers = require('../helpers');
var search = helpers.command('search');
describe('bower search', function () {
it('correctly reads arguments', function () {
expect(search.readOptions(['jquery']))
.to.eql(['jquery']);
});
it('s... |
/*---
{
"skip": true
}
---*/
/*===
next called, done: false
next called, done: false
next called, done: false
next called, done: true
done
all fulfill: foo,bar,quux
===*/
var iterable = {};
var index = 0;
var values = [
// Plain values, Promise, a Promise returning a generic thenable.
'foo',
Promise.r... |
'use strict';
exports.__esModule = 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]; } } } return target; };
var _react = requi... |
/*! jQuery UI - v1.10.4 - 2014-04-20
* http://jqueryui.com
* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
jQuery(function(e){e.datepicker.regional.uk={closeText:"Закрити",prevText:"<",nextText:">",currentText:"Сьогодні",monthNames:["Січень","Лютий","Березень","Квітень","Травень","... |
console.log("Dashboard");
|
export const ADD_MESSAGE = 'ADD_MESSAGE'; |
var connect = require('connect')
, __pause = connect.utils.pause
, everyauth = module.exports = {};
everyauth.helpExpress = function () {
console.warn('everyauth.helpExpress is being deprecated. helpExpress is now automatically invoked when it detects express. So remove everyauth.helpExpress from your code');
... |
var memoryController = require('../../db/controllers/memoryController');
var express = require('express');
var jwt = require('express-jwt');
var multer = require('multer');
var bodyParser = require('body-parser');
var jsonParser = bodyParser.json();
var storage = multer.diskStorage({
destination: function (req, file... |
define( [ "Ember" ], function( Ember ) {
var Router = Ember.Router.extend();
Router.map(function() {
this.route( "index", { path: "/" } );
this.route( "watching" );
this.route( "search", { path: "/search/:filter/:query" } );
this.route( "featured" );
this.resource( "games", function() {
this.route... |
import React from "react";
import {Helmet} from "@nfl/gridiron";
import {Prefetch} from "@nfl/gridiron/addons";
import {Prefetch, Helmet} from "@nfl/gridiron/addons";
import GameStore from "../../stores/GameStore";
@component
@foo({bar: true})
class SuperBowl extends React.Component {
render() {}
}
export defaul... |
"use strict";
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 = Refl... |
var files = require('../fs/files.js');
var utils = require('../utils/utils.js');
var mongoExitCodes = require('../utils/mongo-exit-codes.js');
var fiberHelpers = require('../utils/fiber-helpers.js');
var runLog = require('./run-log.js');
var child_process = require('child_process');
var _ = require('underscore');
var ... |
var fs = require("fs");
var mkdirp = require("mkdirp");
var moment = require("moment");
var Helper = require("./helper");
module.exports.write = function(user, network, chan, msg) {
try {
var path = Helper.HOME + "/logs/" + user + "/" + network;
mkdirp.sync(path);
} catch(e) {
console.log(e);
return;
}
va... |
/**
* @author sunag / http://www.sunag.com.br/
*/
import { TempNode } from '../core/TempNode.js';
import { FloatNode } from '../inputs/FloatNode.js';
import { ExpressionNode } from '../core/ExpressionNode.js';
import { TextureCubeUVNode } from './TextureCubeUVNode.js';
import { ReflectNode } from '../accessors/Refle... |
define({
"showArcgisBasemaps": "Medtag Portal-baggrundskort",
"add": "Klik for at tilføje et nyt baggrundskort",
"edit": "Egenskaber",
"titlePH": "Baggrundskortets titel",
"thumbnailHint": "Klik på billedet for at opdatere",
"urlPH": "Lag-URL",
"addlayer": "Tilføj baggrundskort",
"warning": "Forkert inp... |
/* ========================================================================
* ZUI: boards.js
* http://zui.sexy
* ========================================================================
* Copyright (c) 2014 cnezsoft.com; Licensed MIT
* ======================================================================== */
(... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.