code
stringlengths
2
1.05M
/* This file is part of Ext JS 4 Copyright (c) 2011 Sencha Inc Contact: http://www.sencha.com/contact Commercial Usage Licensees holding valid commercial licenses may use this file in accordance with the Commercial Software License Agreement provided with the Software or, alternatively, in accordance with the term...
// This is a manifest file that'll be compiled into application.js, which will include all the files // listed below. // // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative pat...
var expect = require("chai").expect; // node.js core module var build = require("../../lib/build.js"); describe('custom-props build', function(){ it('should convert custom properties into a content tag with JSON data', function() { var css = [ 'selector {', ' color: red;', ' --custom-color: ...
/** * Help router instance. */ var express = require('express'); var article = require('../models/article'); var scheme = require('../models/scheme'); var resource = require('../models/resource'); var interpreter = require('../models/interpreter'); var help = express.Router(); var pages = [ 'general', 'browser...
/** * Owl carousel * @version 2.0.0 * @author Bartosz Wojciechowski * @license The MIT License (MIT) * @todo Lazy Load Icon * @todo prevent animationend bubling * @todo itemsScaleUp * @todo Test Zepto * @todo stagePadding calculate wrong active classes */ ;(function($, window, document, undefined) ...
'use strict'; var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }; var _inherits = function (subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super ex...
var http = require('http') var parse = require('parse-json-response') var test = require('tap').test var reg = 'http://admin:admin@localhost:15986/registry' var ping = reg + '/_design/scratch/_show/ping' var rw = reg + '/_design/scratch/_rewrite/-/ping' var wanted = { host: 'localhost:15986' , ok: true , username: ...
var searchData= [ ['commandlib_117',['CommandLib',['../namespace_command_lib.html',1,'']]] ];
qx.Class.define("testapp.Issue503", { extend: qx.core.Object, members: { testOne(aOptions) { var {activeUserOnly = false} = aOptions; console.log("activeUserOnly=" + activeUserOnly); }, testTwo(aOptions) { var [activeUserOnly = false] = aOptions; console.log("activeUserOnly=" ...
"use strict"; app.config(['$locationProvider', '$urlRouterProvider', function ($locationProvider, $urlRouterProvider) { $locationProvider.html5Mode(false); $urlRouterProvider.otherwise('/login/'); }]);
'use strict'; var ReposView = require('../../repos/views/repos'); module.exports = Backbone.View.extend({ el: '#appview', render: function () { new ReposView({ el: this.el }); } });
version https://git-lfs.github.com/spec/v1 oid sha256:4ba78c622bbf5aa7dbb7376d9057308e9cbe2545cea99c689bdd2ea4a48794a2 size 6093
var d={a:"_grail_super_",c:function(a,b){if(a==b||a.prototype.isPrototypeOf(b.prototype))throw Error("Invalid circular inheritance");if(a.prototype[d.a])throw Error("Invalid multiple inheritance");a.prototype=Object.create(b.prototype,d.b(a.prototype));a.prototype.constructor=a;Object.defineProperty(a.prototype,d.a,{co...
const express = require ('express') const router = express.Router ( ) //A ping route router.get('/ping', (req, res) => { //Creating a random number let randomness = Math.random() //Logging the randon number console.log('The initial random is' + randomness) let powerme = (base, exp) => { console.log('Running ...
var http = require('http'); var stacked = require('stacked'); var app = stacked(); // server entry route app.use(function (req, res, next) { if (req.url === '/') { res.end('Hello, world!'); } else { next(); } }); // handle errors app.use(function (req, res, next) { var statusCode = 404; var message...
import React from 'react'; import ReactDOM from 'react-dom'; import SMPTEBackground from './SMPTEBackground'; it('renders without crashing', () => { const div = document.createElement('div'); ReactDOM.render(<SMPTEBackground />, div); });
/** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/license */ /** * This file was added automatically by CKEditor builder. * You may re-use it at any time to build CKEditor again. * * If you would like to build CKEd...
(function (angular, undefined) { 'use strict'; angular.module('app.layout') .controller('equipeController', ['funcoes', 'sortBrFilter', 'Equipe', 'safellyRemoveFilter', equipeController]); function equipeController(funcoes, sort, Equipe, safellyRemove) { var vm = this; vm.funcoes = funcoes; vm.t...
import Ember from 'ember'; export default Ember.Mixin.create({ //submit: function(event) {}, //Fires after submit action handler //change: function(event) {}, //focusIn: function(event){}, //focusOut: function(event) {}, //input: function(event) {} });
/* Copyright © 2011-2012, GlitchTech Science */ /** * @name GTS.selectedMenu * @author Matthew Schott <glitchtechscience@gmail.com> * * Extends the Onyx Menu to indicate which item is selected. * * @class * @version 2.0 (2012/07/12) * @requires onyx 2.0-beta5 * @extends onyx.Menu * @see http://enyojs.com */...
/* * Copyright (C) 2011 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions ...
import React from 'react' export default class CharDisplay extends React.Component { render() { return ( <span className={this.props.cssClass}>{this.props.char}</span> ) } }
//app.js// //Load node_modules var express = require('express'), routes = require('./routes/index'), //Initiate the routes directory connect = require('connect'), http = require('http'), path = require('path'), https = require('https'), //Load SSL module fs = require('fs'), //Load ...
/* Modernizr 2.6.2 (Custom Build) | MIT & BSD * Build: http://modernizr.com/download/#-canvas-draganddrop-touch-shiv-cssclasses-teststyles-hasevent-prefixes-css_pointerevents-file_api-load */ ; window.Modernizr = function(a, b, c) { function x(a) { j.cssText = a } function y(a, b) { retur...
class Session { constructor(payload, userSearcher, optionalUser, optionalGroupIds) { this.payload = payload; this.userSearcher = userSearcher; this._user = optionalUser; this._groupIds = optionalGroupIds; } get id() { return this.payload.id; } get type() { return this.payload.type; }...
function calculateDistanceBetweenPoints(x1, y1, x2, y2) { let distance = Math.sqrt((x1 - x2) ** 2 + (y1 - y2) ** 2); console.log(distance); }
import * as React from 'react'; export default class Layout extends React.Component { render() { return <div> { this.props.children } </div>; } }
version https://git-lfs.github.com/spec/v1 oid sha256:c91e10361115ecab96f8129c007be64e4f0d4d833dc27be0661a397f210d4c16 size 1912
import React, { PropTypes } from 'react'; import CreateShiftModal from '../../../CreateShiftModal'; require('./table-section-photo-name.scss'); function TableSectionJobName({ tableSize, startDate, name, timezone, toggleSchedulingModal, viewBy, employees, jobs, sectionUuid, createTeamShift, updateSchedulingModalFo...
'use strict'; import babel from 'gulp-babel'; import babelCompiler from 'babel'; import del from 'del'; import gulp from 'gulp'; import eslint from 'gulp-eslint'; import istanbul from 'gulp-istanbul'; import jscs from 'gulp-jscs'; import jshint from 'gulp-jshint'; import mocha from 'gulp-mocha'; const configFiles = 'g...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const fs = require("fs"); const config_1 = require("../models/config"); const common_tags_1 = require("common-tags"); const SilentError = require('silent-error'); const chalk = require('chalk'); const Command = require('../ember-cli/lib/models...
/** * jQuery UI PersonContacts Widget * * @copyright 2015-2016 (c) Sahana Software Foundation * @license MIT */ (function($, undefined) { "use strict"; var personcontactsID = 0; /** * Person Contacts Widget */ $.widget('s3.personcontacts', { /** * Default options ...
/* * jQuery data binding plugin. * Author: Florentin Zorca */ (function($) { var eventNamePrefix = 'change.'; var oldattr = $.attr; // overriden JQuery $.attr() function which raises events when properties are set to plain objects. $.attr = function(elem, name, value, pass) { var ret = this, ...
var tipuesearch_stop_words=["and","be","by","do","for","he","how","if","is","it","my","not","of","or","the","to","up","what","when"];var tipuesearch_replace={"words":[{"word":"tipua",replace_with:"tipue"},{"word":"javscript",replace_with:"javascript"}]};var tipuesearch_stem={"words":[{"word":"e-mail",stem:"email"},{"wo...
/** * DocuSign REST API * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com * * NOTE: This class is auto generated. Do not edit the class manually and submit a new issue inste...
// Generated by CoffeeScript 1.9.1 var PaddingRight, _Length, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent....
const { MoleculerError } = require("../../../src/errors"); const Cachers = require("../../../src/cachers"); describe("Test Cacher resolver", () => { it("should resolve null from undefined", () => { let cacher = Cachers.resolve(); expect(cacher).toBeNull(); }); it("should resolve MemoryCacher from true", () =>...
/* * Copyright (c) 2012-2016 André Bargull * Alle Rechte vorbehalten / All Rights Reserved. Use is subject to license terms. * * <https://github.com/anba/es6draft> */ const { assertSame, assertNotSame, assertTrue } = Assert; const isLittleEndian = new Uint8Array(new Uint16Array([1]).buffer)[0] === 1; function...
/** * @author mrdoob / http://mrdoob.com/ */ THREE.MaterialLoader = function ( manager ) { this.manager = ( manager !== undefined ) ? manager : THREE.DefaultLoadingManager; }; THREE.MaterialLoader.prototype = { constructor: THREE.MaterialLoader, load: function ( url, onLoad, onProgress, onError...
/* eslint import/extensions: ["off"] */ /* eslint no-unused-vars: ["off"] */ import buble from 'rollup-plugin-buble'; import uglify from 'rollup-plugin-uglify'; const externs = ['isFunction', 'isArrayLikeObject', 'isNumber', 'isString', 'isDate', 'isObject', 'isPlainObject', 'isBoolean']; const external = []; const gl...
/** * Page.js * * @description :: TODO: You might write a short summary of how this model works and what it represents here. * @docs :: http://sailsjs.org/#!documentation/models */ module.exports = { attributes: { title: { type: "string" }, content: { type: "string" } } };
import React from 'react'; import EditIcon from 'material-ui/svg-icons/editor/mode-edit'; import { ListItem } from 'material-ui/List'; import { CompanyDetails } from './CompanyDetails'; import EditNameCompanyForm from './edit/EditNameCompanyForm'; describe('src/names/selected/CompanyDetails', () => { it('renders na...
/** * PaytypeCurrency Schema */ Core.Schemas.Currency = new SimpleSchema({ _id: { type: String, optional: true }, code: { type: String }, rateToBaseCurrency: { type: Number, decimal: true }, period: { type: String }, businessId: { ...
const gulp = require('./src/gulp/')([ 'browserify', 'fonts', 'styles', 'scripts', 'serve', 'less', 'images', 'views' ]); gulp.task('default', ['scripts', 'fonts', 'styles', 'less', 'browserify', 'images', 'views','serve']);
import { ms } from "../src/milsymbol"; ms.reset(); import { ms2525c } from "milstd2525"; import verify from "./letter-sidc"; import { air as icons } from "../src/lettersidc"; ms.addIcons(icons); export default verify(ms, "MIL-STD-2525C Air", ms2525c.WAR.AIRTRK);
import objectAssign from 'object-assign'; import HTML4 from '../utils/HTML4'; export default { /** * To use Oy, we convert `data-foo` attributes to `foo` attributes in * renderTemplate(). This converts `foo` attributes to transformable * `data-*` form. This is to bypass React's attribute whitelist. */ ...
require.config({ enforceDefine: true, paths: { jquery: '../lib/js/jquery/jquery.min', backbone: '../lib/js/backbone-amd/backbone.min', underscore: '../lib/js/underscore-amd/underscore.min' }, shim: { "underscore": { deps: [], exports: "_" }, "backbone": { deps: ["jquery...
/** * Created by admin on 16/1/25. */ var mongoose = require('mongoose'); mongoose.connect('mongodb://localhost/floyd'); var Schema = mongoose.Schema; var userSchema = new Schema({ name: String, birthday: String, weiboId: String, weiboToken: String, avatarKey: String, avatarHash: String, ...
'use strict'; var User = require('../models/user'); /* * POST /signup */ exports.signup = function (req, res) { req.onValidationError(function (msg) { //Redirect to `/signup` if validation fails return res.redirect('/signup'); }); req.check('email', 'Please enter a valid em...
import { gql } from '@apollo/client' export default gql` fragment permanentTokenFields on PermanentToken { id title } `
import { render, getByTestId } from '@testing-library/react'; import SubNav from './sub-nav'; test('renders Sub Nav', () => { render(<SubNav />); expect(getByTestId(document.documentElement, 'hide-grid-dom')).toBeInTheDocument(); });
/* eslint-env node */ const CopyWebpackPlugin = require("copy-webpack-plugin"); const path = require("path"); const webpack = require("webpack"); const root = __dirname; module.exports = function(env, argv) { const isDev = argv.mode === "development"; return { mode: isDev ? "development" : "production", ...
/* * Touch devices often wait 250ms to convert touchstart/touchstop pairs into a click. * This leads to terrible feeling mobile first applications. * Add this in if you want to get snappier clicks. */ Helm.Overrides.ClickEvent = { isTouch: function() { // taken from Modernizr: http://modernizr.com/license ...
var passport = require('passport'); var LocalStrategy = require('passport-local').Strategy; var User = require('../../models/User'); module.exports = function() { passport.use(new LocalStrategy(function(username, password, done) { User.findOne( {username: username}, function(err, user) { if (err) ret...
/* globals describe, it */ var should = require('should'), sinon = require('sinon'), // Test items RequestError = require('../../lib/error/RequestError'); describe('Request Errors', function() { it('should identify as RequestError', function() { var err = new RequestError(); ...
version https://git-lfs.github.com/spec/v1 oid sha256:13b4b728515a268c66055f940765f9e902b626439b3f75c34786a04b72679b01 size 29634
version https://git-lfs.github.com/spec/v1 oid sha256:97e6d0cf23a3b5a5738cee17cfa8c27b53814db8765326253bb2b5225e3b1ced size 2467
const baseConfig = require('./browserstack.conf'); module.exports = function (config) { baseConfig({ set(base) { base.browsers = ['android-9.0', 'android-10.0', 'android-11.0']; config.set(base); }, }); };
/** * Module dependencies. */ var express = require('express') , routes = require('./routes') , http = require('http'); var app = express(); var server = app.listen(3000); var io = require('socket.io').listen(server); // Node-serialport var SerialPort = require("serialport").SerialPort var serialPort = new Seri...
var ExpressRouteMapper, adapter, exports; adapter = require('./adapter'); exports = module.exports = ExpressRouteMapper = function() {}; ExpressRouteMapper.use = function(expressInstance) { return adapter(expressInstance); };
'use strict'; var app = angular.module('airCompare',['ngMaterial','ngMdIcons']); //Controller for Angualr Material Dialog app.controller('AppCtrl', function($scope) { $scope.submit = function() { alert("On Wisconsin!"); }; }); //Controller for API Call app.controller('resultListCtrl', ['$scope','$http', f...
export { default } from 'ember-cli-button-dropdown/components/dropdown-container/component';
CKEDITOR.plugins.setLang( 'tablesorter', 'de', { contextAsc: 'Sort ascending', contextDesc: 'Sort descending', } );
import { hello, // signUp, logIn, // logOut } from 'server/cloud/auth'; function getArguments(params, user) { return { req: { params, user }, res: { success: sinon.spy(), error: sinon.spy() } }; } describe('(Cloud) Auth', () => { beforeEach(() => { }); it('Sh...
'use strict'; /** * Module dependencies. */ var mongoose = require('mongoose'), errorHandler = require('./errors.server.controller'), Golfer = mongoose.model('Golfer'), _ = require('lodash'); /** * Create a Golfer */ exports.create = function(req, res) { var golfer = new Golfer(req.body); golfer.user = req.u...
define(['underscore','backbone', 'models/lot'], function(_, Backbone, Lot) { var LotsCollection = Backbone.Collection.extend({ model: Lot, url: function() { return this.user.url() + '/lots'; }, initialize: function(models, options) { this.user = options.user; console.log('user url...
/** * Created by vanya on 6/2/2015. */ function findResult(input, searchedWord, caseInsensitive) { var inputStr, word, arr, i, len, count = 0; switch (arguments.length) { case 2: inputStr = input.toString(); console.log('Case-sensitive search'); break; ...
window.addEventListener("load", function(){ //Creating The Elements var backpackThis = document.createElement("div"); var backpackThisLink = document.createElement("a"); var backpackThisImg = document.createElement("img"); var backpackThisText = document.createElement("p"); //Crafting DOM Elements backpackThisLink.hre...
import React, { Component,PropTypes } from 'react'; import { AppState, Dimensions, Modal,NetInfo,Platform,Linking,LayoutAnimation } from 'react-native' import { StyleProvider, Container, Content, Footer, FooterTab, Button, Icon, Badge, Header, Title, Text, View, Tabs, Spinner } from 'native-base'; import I18n from 'rea...
var grunt = require('grunt'); module.exports = { normalizedFile: function (filepath) { return grunt.util.normalizelf(grunt.file.read(filepath)); } };
'use strict'; //Trips service used to communicate Trips REST endpoints angular.module('trips').factory('Trips', ['$resource', function($resource) { return $resource('api/trips/:tripId', { tripId: '@_id' }, { update: { method: 'PUT' } }); } ]);
var http = (function(config) { var timeOut = 10000; //ms // transform a map into a url query string var encodeQueryData = function (data) { var pairs = []; for (var property in data) { if (data.hasOwnProperty(property)) { var value = data[property]; pairs.push(encodeURIComponent...
$(document).ready(function () { $(".column-cards").sortable(); $.getJSON('/api/messages', function ( data ) { var messageHTML = ""; $.each(data["messages"], function (key, val) { console.log(val); messageHTML += "<div class='card'>" + val["from"]["name"] + "</br>" + ...
var expect = require('chai').expect; var gama = require('../src/gama'); describe('gama.testPointRectangle', function() { it('test that point lays inside the rectangle', function() { const rect = gama.Rectangle(0, 0, 4, 2); expect(gama.testPointRectangle(gama.Point(1, 1), rect)).to.be.equal(true); expect...
/** * Broadcast updates to client when the model changes */ 'use strict'; import StatEvents from './stat.events'; // Model events to emit var events = ['save', 'remove']; export function register(socket) { // Bind model events to socket events for(var i = 0, eventsLength = events.length; i < eventsLength; i++...
/** * Created by desver_f on 06/02/17. */ import _ from 'lodash'; export default function parseNews(news) { return _.map(news, (news) => { const title = parseTitle(news.title); const details = parseDetails(news.content); return { title: title.title, link: title.l...
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("va...
const expect = require('chai').expect const Poison = require('../lib/poison') suite('poison', function () { test('default', function (done) { const p = new Poison(done) expect(p.phase).to.be.equal('incoming') expect(p.isEnabled()).to.be.true p.handler()() }) test('state', function (done) { c...
/* This file is module for request 处理请求的模块 */ /** handle post request */ var querystring = require("querystring"), fs = require("fs"); var formidable = require('formidable') var dict = {status: 0, error_info: ""}; function parseJSON(res,req){ console.log("start parse json"); // var arr = []; var ...
import React, { PropTypes } from 'react'; import styles from './Navbar.css'; import NavItem from './NavItem.js'; import Logo from 'components/Logo.js'; const propTypes = { children: PropTypes.oneOfType([ PropTypes.arrayOf(PropTypes.node), PropTypes.node, ]), }; export default function Navbar() { return ...
angular.module('app') .directive('ngLoad', ['$parse', function ($parse) { return { restrict: 'A', compile: function ($element, attr) { var fn = $parse(attr['ngLoad']); return function (scope, element, attr) { ...
const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const CleanWebpackPlugin = require('clean-webpack-plugin'); module.exports = { entry: { app: './src/index.js', }, output: { // [name]就是entry中的'app', filename: '[name].bundle.js', path: pa...
describe('ocTime', function () { var compile; var scope; var interval; var currentDate = new Date(2016, 7, 7, 10, 2, 3); beforeEach(function () { module('ocWebGui.shared.time'); module(function ($provide) { $provide.service('CustomDate', function () { return { getDate: functi...
const invoker = require('./invoker') function CDRator (config, defaultContext) { this.send = invoker.send.bind(invoker, config, defaultContext) } CDRator.prototype.assignCampaign = async function (subscriptionId, campaignKey) { return this.send('SOAP_ASSIGN_CAMPAIGN', { subscriptionId: subscriptionId, cam...
module.exports = function(grunt){ grunt.initConfig({ watch: { default: { options: { spawn: false, interrupt: true }, files: ["settings_edit.html", "js/settings_edit.js", "css/settings.css"], t...
import React from 'react'; import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs'; import markdown from './expansion-panel.md'; export default function Page() { return <MarkdownDocs markdown={markdown} />; }
var express = require('express') , passport = require('passport') , util = require('util') , WindowsLiveStrategy = require('passport-windowslive').Strategy , http = require('http') , app = express() , path = require('path') , logger = require('morgan') , cookieParser = require('cookie-parser') , bodyP...
version https://git-lfs.github.com/spec/v1 oid sha256:6b8f77bd44086e6eba5092b4b4d676005f4c596e097b237d3d36c757a2aad9c2 size 937
// COPYRIGHT © 2017 Esri // // All rights reserved under the copyright laws of the United States // and applicable international laws, treaties, and conventions. // // This material is licensed for use under the Esri Master License // Agreement (MLA), and is bound by the terms of that agreement. // You may redistribute...
// All code points with the `Alphabetic` derived core property as per Unicode v3.2.0: [ 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x4B, 0x4C, 0x4D, 0x4E, 0x4F, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, ...
// All symbols in the Cyrillic Extended-B block as per Unicode v6.2.0: [ '\uA640', '\uA641', '\uA642', '\uA643', '\uA644', '\uA645', '\uA646', '\uA647', '\uA648', '\uA649', '\uA64A', '\uA64B', '\uA64C', '\uA64D', '\uA64E', '\uA64F', '\uA650', '\uA651', '\uA652', '\uA653', '\uA654', '\uA655', '\uA...
/* Builds a scraper with proxy server */ import { createScraper } from 'little-scraper' const buildScraperWithProxy = config => createScraper({ // proxyUrl: 'http://open.proxymesh.com:31280', // proxyUrl: 'http://nl.proxymesh.com:31280', // proxyUrl: 'http://us-fl.proxymesh.com:31280', // blocked bikere...
// // MDL-style Radio button component. // // - @see [MDL Radio Button](http://www.getmdl.io/components/index.html#toggles-section/radio) // - [Props](#props) // - [Defaults](#defaults) // - [Built-in builders](#builders) // // Created by ywu on 15/10/12. // const React = require('react-native'); const { Component, ...
var util = require('util'), connect = require('connect'), serveStatic = require('serve-static'), port = process.env.PORT || 3000; connect().use(serveStatic(__dirname)).listen(port);
var {Actions} = require('flummox'); class AgendaActions extends Actions { constructor(registry, api) { super(); this.registry = registry; this.api = api; } fetch(meetingId) { return this.api.agendaFetch(meetingId); } addTopic(meetingId, content) { var currentUserStore = this.registry.g...
/* * MelonJS Game Engine * Copyright (C) 2011 - 2017, Olivier Biot, Jason Oster, Aaron McLeod * http://www.melonjs.org * */ (function () { /** * a rectangle Object * @class * @extends me.Polygon * @memberOf me * @constructor * @param {Number} x position of the Rectangle * @pa...
$(document).ready(function () { window.$textarea = $("#beautify"); window.$results = $("#results"); window.loaded = {}; window.saveToUpdate = false; var executeAfter = function ($btn, callback) { var path = $btn.attr("data-require"); if (path && path.length && !window.loaded[path]) { var nanobar = new Nan...
import * as types from '../constants' const initialState = [ ] export default function articles(state = initialState, action) { switch (action.type) { case types.RECV_ARTICLE_ERROR: //TODO do something return state case types.RECV_ARTICLE_DATA: return action.data default: return ...
const vsts = require('vso-node-api'); const ConnectionType = require('./connectionType'); class ConnectionBearer extends ConnectionType { constructor(options) { super(); this._Token = options.token; } static getType() { return 'bearer'; } getHandler() { return vsts.getBearerHandler(this._To...
version https://git-lfs.github.com/spec/v1 oid sha256:6f54b698cbe17175d9c0251046bf5c38aa62b79b1cc8eef477013f68cc2e19ee size 112588