code
stringlengths
2
1.05M
ace.define("ace/mode/vala_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) { "use strict"; var oop = require("../lib/oop"); var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules; var ValaHighlightRules = function(...
describe('Eraser Method TEST', function() { describe('Eraser.prototype.getX', function() { // Positive it('should return 0.5', function() { var eraser = new Eraser(new Mocks.ArtCanvas.Point(0.5, 1)); expect(eraser.getX()).toEqual(0.5); }); // Negative ...
'use strict'; // Init the application configuration module for AngularJS application var ApplicationConfiguration = (function() { // Init module configuration options var applicationModuleName = 'cert'; var applicationModuleVendorDependencies = ['ngResource', 'ngCookies', 'ngAnimate', 'ngTouch', 'ngSanitize', '...
function priceFilter(price) { if (!price) { return null } if (price.value) { return price.value } return Number( String(price) .trim() .replace(/^Kr\.\s*/, '') .replace(/\s*kr/i, '') .replace(/\./g, '') .replace(/,-$/, '') .replace(/,/g, '.') .replace(/\...
console.log("Begin NodeFindBall"); var lwip = require('lwip'); lwip.open('ballimage.jpg', function(err, image){ var batch = image.batch(); for(var i = 1; i < image.width()-1; i+=1) { for(var j = 1; j < image.height()-1; j+=1) { var tolerance = 5; var previousTop = image.getPixel(i-1,j-1).r; ...
self.port.emit("performance/timing", window.performance.timing); self.port.emit("dom", window.performance);
import React, { PropTypes } from 'react'; const ProductRow = ({ data }) => <div> <p>{data.name} = {data.price} </p> </div>; ProductRow.propTypes = { data: PropTypes.object }; export default ProductRow;
/* * Rebate Bus Client API demo * * Note that the AJAX should be run server side in production applications. It only works on demo.rebatebus.com because the * Rebate Bus server sets the Access-Control-Allow-Origin header on requests from that domain. Including it here so that the * entire API process will be vis...
/** * SVGTransformList * * Licensed under the Apache License, Version 2 * * Copyright(c) 2010 Alexis Deveria * Copyright(c) 2010 Jeff Schiller */ // Dependencies: // 1) browser.js var svgedit = svgedit || {}; (function() { if (!svgedit.transformlist) { svgedit.transformlist = {}; } var svgroot = document....
import { A } from '@ember/array'; import EmberObject from '@ember/object'; import IoMixin from '../../../mixins/io'; import AudioService from 'ember-audio/services/audio-service'; import { module, test } from 'qunit'; module('Unit | Mixin | io'); var audioService = AudioService.create(); test('it works', function(as...
define(function(require, exports, module) { "use strict"; //Includes Famous Repositories var Engine = require('famous/core/Engine'); var Surface = require('famous/core/Surface'); var RenderNode = require("famous/core/RenderNode"); var Modifier = require("famous/core/Modifier"); va...
function stringify(data) { return JSON.parse(JSON.stringify(data)); } /* A collection of db records i.e. a database table. */ class DbCollection { constructor(name, initialData) { this.name = name; this._records = []; if (initialData) { this.insert(initialData); } } /* Returns a ...
/** * Created by chenjianjun on 16/2/25. */ var env=require("../../../config"); var type=env.Thinky.type; // 婚礼租车--品牌 /* { "success": true, "message": null, "data": [ { "id": 4, "createTime": "2016-01-21 19:41:31", "updateTime": "2016-01-21 19:41:31", "operater": 1, "isUsed": 1, ...
var Answer = require('../models/answer'); var User = require('../models/user'); var Question = require('../models/question'); var Tag = require('../models/tag'); var Badge = require('../models/badge'); var Favorite = require('../models/favorite'); var QuestionTag = require('../models/questiontag'); var Vote = require('...
import * as types from './mutation-types' import * as actions from './actions' import * as getters from './getters' const state = { allPosts: [], isLoaded: false } const mutations = { [types.INIT_POSTS] (state, posts) { state.allPosts = posts state.isLoaded = true } } export default { state, muta...
/* eslint-disable jsx-a11y/no-static-element-interactions */ import React from 'react' import PropTypes from 'prop-types' import DeleteIcon from 'components/DeleteIcon' import store from 'utils/store' export default function GroupTile ({ onClick, label, handle, isActive, onDelete }) { const { dispatch } = store r...
module.exports = bicubic function bicubic( xf , yf , p00, p01, p02, p03 , p10, p11, p12, p13 , p20, p21, p22, p23 , p30, p31, p32, p33 ) { var yf2 = yf * yf var xf2 = xf * xf var xf3 = xf * xf2 var x00 = p03 - p02 - p00 + p01 var x01 = p00 - p01 - x00 var x02 = p02 - p00 var x0 = x00*xf3 +...
let apiKey = '' const callGoogleAPI = async url => { const response = await fetch(url).then(res => res.json()) if (response.status === 'OK' && response.results.length) { return response.results[0] } else { return null } } export const setApiKey = key => { apiKey = key } export const autocomplete = ...
'use strict'; var mongoose = require('mongoose'); var messageSchema = mongoose.Schema({ id: String, channelID: String, text: String, user: Object, time: String }); module.exports = mongoose.model('Message', messageSchema);
/** * MySQL data adapter */ 'use strict'; var q = require('q'); var moment = require('moment-timezone'); var Table = require('../table'); var GenericDbAdapter = require('./genericdb'); function MysqlAdapter() { /** * mysql connection */ this.mysqlConnection = null; GenericDbAdapter.call(this...
'use strict'; const common = require('../common.js'); const bench = common.createBenchmark(main, { len: [0, 1, 64, 1024], n: [1e7] }); function main({ len, n }) { const buf = Buffer.alloc(len); var i; for (i = 0; i < buf.length; i++) buf[i] = i & 0xff; const hex = buf.toString('hex'); bench.star...
/** * @author mrdoob / http://mrdoob.com/ */ function WebAudio( context ) { if ( context === undefined ) { context = WebAudio.context; } var scope = this; var source, buffer, binary; var currentTime = 0; var loop = false; var playbackRate = 1; var paused = true; var startAt = 0; var volume; if (...
// The MIT License (MIT) // // Copyright (c) 2017-2021 Camptocamp SA // // 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 // u...
import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { Alert, Modal } from 'antd'; import { RekitSteps } from './'; export default class DemoAlert extends Component { static propTypes = { onClose: PropTypes.func, }; static defaultProps = { onClose() {}, }; render() {...
var express = require('express'); var mongoose = require('mongoose'); var workflow = require('./workflow'), PUBLISHED = workflow.PUBLISHED, util = require('./util'); // serve express app exports = module.exports = function(dirname, config, meta) { var app = express(); app.set('view engine', 'ejs'); app...
{ let closeCallback; return { stdout: { on: jest.fn().mockImplementation((event, callback) => { if (event === "data") { setTimeout(() => { callback(mockResponse); setTimeout(closeCallback, 0); }, 0); } else if (event === "close") { clos...
// Ratio app.directive('ngRatio', function () { return { restric: 'A', link: function (scope, element, attr) { var ratio = +(attr.ngRatio); element.css('width', ratio + '%'); } }; }); // Enter Key app.directive('ngEnterKey', function () { return function (sc...
(function (angular) { "use strict"; angular .module('folderPluginDesign') .controller('folderPluginCtrl', ['$scope', 'Utility', function ($scope, Utility) { $scope.availableLayouts = Utility.getLayouts(); $scope.data = Utility.getDefaultScopeData(); ...
import needle from 'needle'; import { SiteConf } from '../../src/base'; export const postApiHandler = async (req, res) => { const { slug } = req.params; const url = `${ SiteConf.PostApi.replace(':slug', slug) }`; const postDetail = await needle('get', url); const { body } = postDetail; if (body.errors) res.s...
'use strict'; const getChannelURL = require('ember-source-channel-url'); module.exports = function() { return Promise.all([ getChannelURL('release'), getChannelURL('beta'), getChannelURL('canary') ]).then(urls => { return { useYarn: true, scenarios: [ { name: 'ember-l...
(function () { 'use strict'; var scripts = document.getElementsByTagName("script"); var currentScriptPath = scripts[scripts.length - 1].src; angular.module('alcance', ['ngRoute']) .controller('AlcanceController', AlcanceController); AlcanceController.$inject = ['$scope', '$location']; ...
/** * Client Webpack Development Configuration */ /** * Webpack */ const webpack = require('webpack'); /** * Helpers */ const helpers = require('../helpers.utils'); const path = require('path'); /** * Webpack Plugins */ const AssetsPlugin = require('assets-webpack-plugin'); const CommonsChunkPlugin = require...
'use strict'; var settings = require('../../settings'); var studentModel = require('../../studentModel'); /** * Model for a student in the database. * @param {mongoose} mongoose Mongoose instance. * @param {class} Schema Schema class. * @function models.student */ module.exports = function (mongoose, Schema) { var ...
import expect from 'expect'; import createSwitchAction from '../src'; describe('createSwitchAction', () => { it('should exist', () => { expect(typeof createSwitchAction !== 'undefined').toBe(true); }); const ADD = 'ADD'; const SUB = 'SUB'; const OTHER = 'OTHER'; const INC = 'INC'; const RETURN_THIS ...
const test = require('tape') const nlp = require('./_lib') test('sanity-check case:', function(t) { let str = 'John xoo, John fredman' let r = nlp(str) str = r.toUpperCase().out('text') t.equal(str, 'JOHN XOO, JOHN FREDMAN', 'uppercase') str = r.toLowerCase().out('text') t.equal(str, 'john xoo, john fredm...
import { createRequests } from '../lib/index'; test('Check requests created by createRequests function', () => { const requests = createRequests('http://wordpress.test/wp-json/', ['books', 'authors']); expect(typeof requests.requestBooks).toBe('function'); expect(typeof requests.requestBooksEndpoint).toBe('functio...
'use strict'; module.exports = function camelcase(str) { return str.replace(/^([A-Z])|[\s-_](\w)/g, function (match, p1, p2) { if (p2) return p2.toUpperCase(); return p1.toLowerCase(); }); };
const subtitleText = 'A nice short description or subtitle to go with the title.'; const menuItems = [ { label: 'One', to: '#' }, { label: 'Two', to: '#' }, { label: 'Three', to: '#' }, { label: 'Four', to: '#' } ]; const menuItemsWithIcons = menuItems.map(a => { const b = Object.assign({}, a...
// the global variable var watchList = [ { "Title": "Inception", "Year": "2010", "Rated": "PG-13", "Released": "16 Jul 2010", "Runtime": "148 min", "Genre": "Action, Adventure, Crime", "Director": "Christopher Nolan", "Writer": "Christopher Nolan", "Actors": "Leonardo DiCaprio, Jo...
/* eslint-disable prefer-arrow-callback */ import { Meteor } from 'meteor/meteor'; import { defineMessages } from 'react-intl'; // API import { Profiles } from '../../profiles/profiles.js'; import { Shows } from '../../shows/shows.js'; import { Events } from '../../events/events.js'; // The actual values are dynamica...
/** * Session Configuration * (sails.config.session) * * Sails session integration leans heavily on the great work already done by * Express, but also unifies Socket.io with the Connect session store. It uses * Connect's cookie parser to normalize configuration differences between Express * and Socket.io and hoo...
const Component = require('./Component'); const {Point} = require('./point'); const {Edge} = require('./edge'); const {degreesToRadians} = require('./math'); class BoundingBox extends Component { static builder() { return new BoundingBoxBuilder(); } constructor(width, height) { super('BoundingBox'); ...
import { LOAD_MESSAGES, LOAD_MESSAGES_SUCCESS, LOAD_MESSAGES_ERROR, UPDATE_MESSAGE_STATUS_SUCCESS } from '../constants'; const initialState = { unreadCount: 0, items: [], loading: true, error: false }; export default (state = initialState, action) => { switch (action.type) { ...
'use strict'; var Handlebars = require('handlebars'), fs = require('fs'), path = require('path'), Util = require('js/util'); // Get all the Handlebars helpers. require('js/templateHelpers'); module.exports = { tmplCache: window.ATOMIC_LACUNA_TEMPLATES || {}, get: function(name) { // Get...
'use strict'; var React = require('react'); var ReactDOM = require('react-dom'); var PropTypes = React.PropTypes; var POSITIONS = { above: 'above', inside: 'inside', below: 'below' }; /** * Calls a function when you scroll to the element. */ var Waypoint = React.createClass({ displayName: 'Waypoint', p...
var myGUI = new Object(); myGUI.shareApp=function(message){ }; myGUI.showAlert=function(title,message,twoButtons,Button1,Button2){ return twoButtons; }; myGUI.saveStringToFile(message, filename){ }; myGUI.loadStringFromFile(String filename){ return ""; };
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _defineProperty2 = require('babel-runtime/helpers/defineProperty'); var _defineProperty3 = _interopRequireDefault(_defineProperty2); exports.toArray = toArray; exports.getActiveIndex = getActiveIndex; exports.getActiveKey = getActive...
/** * Created by alex on 03.10.16. */ import React from 'react'; import { FormattedMessage } from 'react-intl'; import styles from './CategoriesBar.css'; function CategoriesBar(props) { return ( <div> <h3 className={styles.header}><FormattedMessage id="categoriesBarHeader"/></h3> <ul className={st...
define(function (require) { return { notEmpty: require('./validators/notEmpty'), email: require('./validators/email') } });
var examples = { lorem: 'Suspendisse dictum feugiat nisl ut dapibus. Mauris iaculis porttitor posuere. Praesent id metus massa, ut blandit odio. Proin quis tortor orci. Etiam at risus et justo dignissim congue. Donec congue lacinia dui, a porttitor lectus condimentum laoreet. Nunc eu ullamcorper orci. Quisque eget od...
var expect = require("chai").expect; var converter = require("../app/converter"); describe("Color code converter", function(){ describe("RGB to Hex conversion", function() { it("converts the basic colors", function() { var redHex = converter.rgbToHex(255, 0, 0); var greenHex = converter.rgbToHex(0, 255, 0);...
var AmpMoving = require('../ampersand-movingobj'); var domready = require('domready'); domready(function() { var Dialog = AmpMoving.extend({ template: '<div class="dialog">' + ' <h2 data-hook="start-move">This is an example dialog</h2>' + ' <p>' + ' Moving this dialog only works by draggin...
'use strict'; module.exports = { db: 'mongodb://user:password@ds029837.mongolab.com:29837/kaysdatabase', debug: 'true', mongoose: { debug: false }, app: { name: 'MEAN - FullStack JS - Development' }, facebook: { clientID: 'DEFAULT_APP_ID', clientSecret: 'APP_SECRET', callbackURL: 'http...
var breadcrumbs=[['-1',"",""],['2',"SOLUTION-WIDE PROPERTIES Reference","topic_0000000000000C16.html"],['2267',"Tlece.Recruitment.Models.RecruitmentPlanning Namespace","topic_0000000000000692.html"],['2400',"InviteRequestDto Class","topic_000000000000080D.html"],['2401',"Properties","topic_000000000000080D_props--.html...
this.NesDb = this.NesDb || {}; NesDb[ '6501F61FD717AE603C2265D0DF074AC2A4DCB8C7' ] = { "$": { "name": "Faxanadu", "altname": "ファザナドゥ", "class": "Licensed", "catalog": "HFC-FX", "publisher": "Hudson Soft", "developer": "Hudson Soft", "region": "Japan", "players": "1", "date": "1987-11-16" }, "cartr...
var db = { posts: { id: {type: 'increments', nullable: false, primary: true}, uuid: {type: 'string', maxlength: 36, nullable: false, validations: {isUUID: true}}, title: {type: 'string', maxlength: 150, nullable: false}, slug: {type: 'string', maxlength: 150, null...
var outdatedBrowser=function(options){var outdated=document.getElementById("outdated");this.defaultOpts={bgColor:'#f25648',color:'#ffffff',lowerThan:'transform',languagePath:'../outdatedbrowser/lang/en.html'} if(options){if(options.lowerThan=='IE8'||options.lowerThan=='borderSpacing'){options.lowerThan='borderSpacing';...
var OUTPUT_VERBOSITY_QUIET = 0; var OUTPUT_VERBOSITY_NORMAL = 1; var OUTPUT_VERBOSITY_VERBOSE = 2; function Output(verbosity, decorated, formatter) { this.VERBOSITY_QUIET = 0; this.VERBOSITY_NORMAL = 1; this.VERBOSITY_VERBOSE = 2; this.OUTPUT_NORMAL = 0; this.OUTPUT_RAW = 1; this.OUTP...
/* WysiHat - WYSIWYG JavaScript framework, version 0.2.1 * (c) 2008-2010 Joshua Peek * * WysiHat is freely distributable under the terms of an MIT-style license. *--------------------------------------------------------------------------*/ var WysiHat = {}; WysiHat.Editor = { attach: function(textarea, opti...
/* eslint no-console: ["error", { allow: ["warn", "error"] }] */ /* jshint esversion: 6, asi: true, node: true */ /* * index.js * * WebSSH2 - Web to SSH2 gateway * Bill Church - https://github.com/billchurch/WebSSH2 - May 2017 * */ const { config } = require('./server/app'); const { server } = require('./server/...
new function () { var a = 1; b(this.constructor.arguments.c); };
(() => { // packages/alpinejs/src/scheduler.js var flushPending = false; var flushing = false; var queue = []; function scheduler(callback) { queueJob(callback); } function queueJob(job) { if (!queue.includes(job)) queue.push(job); queueFlush(); } function queueFlush() { if (!flu...
/* * Wegas * http://wegas.albasim.ch * * Copyright (c) 2013-2021 School of Management and Engineering Vaud, Comem, MEI * Licensed under the MIT License */ /** * @fileOverview * @author Cyril Junod <cyril.junod at gmail.com> */ YUI.add("wegas-image", function(Y) { "use strict"; /** * @name Y.Wega...
var context = require.context('./test', true, /\.js$/); context.keys().forEach(function(moduleName) { context(moduleName); });
$(document).ready(function() { $("footer div.social-networks").socialSharePrivacy({ services : { facebook : { 'status' : 'on', 'txt_info' : '2 clicks for increased privacy: Only after clicking here the button will become active and allow connecting to Facebook. Data will already be transferred upon activ...
/** * Created by USER: tarso. * On DATE: 26/08/16. * By NAME: rmqt01receive.js. */ /** * Source: https://www.rabbitmq.com/tutorials/tutorial-one-javascript.html */ var amqp = require('amqplib/callback_api'); amqp.connect('amqp://localhost:8080', function(err, conn) { conn.createChannel(functi...
export loadData from './loadData'; export loadInfo from './loadInfo'; export * as widget from './widget'; export * as survey from './survey';
import { moduleForComponent, test } from 'ember-qunit'; import hbs from 'htmlbars-inline-precompile'; moduleForComponent('object-list-view-header-cell', 'Integration | Component | object list view header cell', { integration: true }); test('it renders', function(assert) { this.set('myColumn', { header: 'myHeader'...
import React from "react" import Layout from "../components/layout" import SEO from "../components/seo" const Redirect = () => ( <Layout> <SEO title="Redirect" /> <p>This should be at /pt/redirect-me/</p> </Layout> ) export default Redirect
// ==UserScript== // @name cnes // @namespace cnes // @version 0.1.0.5a // @description Cyber Nations Enhanced Services // @author Ryahn aka Ryan Carr // @match http://www.cybernations.net/* // @require https://code.jquery.com/jquery-3.2.1.min.js // @downloadURL https://raw.githubuse...
$(function() { $.widget('bluetea.bootstrapModal', { // Default options options: { content: null, translations: { textBlockUiTitle: 'Submitting', textBlockUiMessage: 'Please wait...' } }, _element: null, ...
/** * * LayoutContainer * */ import React, { Component } from "react"; import PropTypes from "prop-types"; import Grid from 'material-ui/Grid'; class LayoutContainer extends Component { constructor(props) { super(props); } render() { return ( <Grid container {...this.props}> {this.props.c...
import Ember from 'ember'; export default Ember.Component.extend({ classNames: ['demo-projects'], projects: [ Ember.Object.create({ title: "Code Corps", description: "Building a better future together. Contribute to public software for social good.", iconLargeUrl: "https://d3pgew4wbk2vb1.clou...
/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-var, no-new, max-len */ /* global GitLab */ /* global DropzoneInput */ /* global autosize */ window.gl = window.gl || {}; function GLForm(form) { this.form = form; this.textarea = this.form.find('textarea.js-gfm-input'); // Before we start...
/*! * Native JavaScript for Bootstrap v4.0.7 (https://thednp.github.io/bootstrap.native/) * Copyright 2015-2021 © dnp_theme * Licensed under MIT (https://github.com/thednp/bootstrap.native/blob/master/LICENSE) */ var transitionEndEvent = 'webkitTransition' in document.head.style ? 'webkitTransitionEnd' : 'trans...
import {Person} from '../src/Person'; import Thing from '../src/Thing'; import mocha from 'mocha'; import should from 'should/as-function'; describe('Person interface', () => { it("Basics", (done) => { const john = new Person("John", null, "male"); const jane = john.mom('Jane'); should(john.mom('Jane'...
var breadcrumbs=[['-1',"",""],['2',"SOLUTION-WIDE PROPERTIES Reference","topic_0000000000000C16.html"],['3453',"Tlece.WebApp.Controllers Namespace","topic_0000000000000013.html"],['3471',"WellKnownFileController Class","topic_0000000000000027.html"],['3473',"Methods","topic_0000000000000027_methods--.html"]];
'use strict'; const DEFAULT_CONFIG = { domain: 'localhost', port: '8888', devServerConfig: { // noInfo: true, // quiet: true, clientLogLevel: 'info', // 不启用压缩 compress: false, // enable hmr hot: true, hotOnly: true, // no lazy mode lazy: false, watchOptions: { ig...
/* globals require console*/ "use strict"; let { ShoppingCart, Product } = require("./task-2")(); let sc = new ShoppingCart(); let p = new Product("food", "Bread", "1"); sc.add(new Product("beverages", "Whiskey", "25")); sc.add(p); sc.add(p); sc.add(p); sc.add(p); console.log(sc.showCost()); ...
/*! * DevExtreme (dx.messages.sv.js) * Version: 21.1.0 (build 20361-0317) * Build date: Sat Dec 26 2020 * * Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; ! function(root, factory) { if ("function" ...
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2018 Photon Storm Ltd. * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License} */ var GetBottom = require('../../bounds/GetBottom'); var GetRight = require('../../bounds/GetRight'); var SetRig...
#!/usr/bin/env node var vows = require('vows'), assert = require('assert'), path = require('path'), basename = path.basename(__filename), Template = require('../lib/Template'); /** * @private */ function assertTopicPropertyContext(value, toString) { value = toString ? value.toString() : value; ...
"use strict"; // --------------------------------------------------------------------------- const Exchange = require ('./base/Exchange') const { ExchangeError } = require ('./base/errors') // --------------------------------------------------------------------------- module.exports = class btcturk extends Exchan...
/*! * DevExtreme (dx.messages.en.js) * Version: 20.1.8 * Build date: Fri Oct 09 2020 * * Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; ! function(root, factory) { if ("function" === typeof define &...
import React, { Component, PropTypes } from 'react' import Todo from './todo' class TodoList extends Component { render() { const { todos } = this.props; return( <div> List of things todo: <ul> {todos.map(todo => <Todo {...todo}...
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ /*! * Next JS * Copyright (c)2011 Xenophy.CO.,LTD All rights Reserved. * http://www.xenophy.com */ // {{{ NX.app.controller.Abstract.constructor module.exports = function(config) { config = config || {}; NX.apply(this, config); NX.apply...
'use strict'; // default websocket configs // looks for Rails' <%= action_cable_meta_tag %> in this format: // <meta name="action-cable-url" content="ws://localhost:3000/cable"/> ngActionCable.factory('ActionCableConfig', function() { var defaultWsUri= 'wss://please.add.an.actioncable.meta.tag.invalid:12345/path/to/...
"use strict"; var gulp = require("gulp"), rimraf = require("rimraf"), concat = require("gulp-concat"), cssmin = require("gulp-cssmin"), htmlmin = require("gulp-htmlmin"), //uglify = require("gulp-uglify"), merge = require("merge-stream"), del = require("del"), order = require("gulp-ord...
var breadcrumbs=[['-1',"",""],['2',"SOLUTION-WIDE PROPERTIES Reference","topic_0000000000000C16.html"],['2754',"Tlece.Recruitment.Models.SelectionProcess Namespace","topic_000000000000094D.html"],['2793',"SelectionProcessIndexVm Class","topic_0000000000000969.html"]];
var breadcrumbs=[['-1',"",""],['2',"SOLUTION-WIDE PROPERTIES Reference","topic_0000000000000C16.html"],['408',"Tlece.Recruitment.Controllers Namespace","topic_000000000000018A.html"],['537',"QuestionVideoCreateController Class","topic_00000000000001F9.html"]];
window.onload = function() { // Create your Phaser game and inject it into the gameContainer div. // We did it in a window.onload event, but you can do it anywhere (requireJS load, anonymous function, jQuery dom ready, - whatever floats your boat) var game = new Phaser.Game(800, 600, Phaser.AUTO, 'gameContaine...
import { moduleForComponent, test } from 'ember-qunit'; import hbs from 'htmlbars-inline-precompile'; moduleForComponent('project-list', 'Integration | Component | project list', { integration: true }); test('it renders', function(assert) { assert.expect(1); this.render(hbs`{{project-list}}`); assert.equal(...
search_result['3295']=["topic_00000000000007D9_methods--.html","ApplicationDetailDto Methods",""];
/* Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'blockquote', 'sr-latn', { toolbar: 'Block Quote' // MISSING } );
/*! Tiles.js | http://thinkpixellab.com/tilesjs | 2012-12-03 */ // single namespace export var Tiles = {}; (function($) { var Tile = Tiles.Tile = function(tileId, element) { this.id = tileId; // position and dimensions of tile inside the parent panel this.top = 0; this.left = 0...
/*global require global describe it expect*/ var q = require("q"); var mapper = require('../../lib/mapper'); var Module = require('../../lib/module'); var Selector = require('../../lib/selector'); var Logger = require('../../lib/logger'); var helpers = require('../_helpers'); var getChildren = helpers.getChildren; var ...
/**************************************************************************** Copyright (c) 2010-2012 cocos2d-x.org Copyright (c) 2008-2010 Ricardo Quesada Copyright (c) 2011 Zynga Inc. http://www.cocos2d-x.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software an...
'use strict'; /** * @file Configure the application. */ var restify = require('restify'); var fs = require("fs"); var config = require('./config'); var logError = require('./config/services.js').logError; var cleaner = require('./scripts/cleaner'); var lib = require('./lib/'); var handlers = lib.handlers; var mid...
/* Highcharts JS v9.3.0 (2021-10-21) Old IE (v6, v7, v8) array polyfills for Highcharts v7+. (c) 2010-2021 Highsoft AS Author: Torstein Honsi License: www.highcharts.com/license */ 'use strict';(function(e){"object"===typeof module&&module.exports?(e["default"]=e,module.exports=e):"function"===typeof define&&de...
/*! mailgun.js v1.1.0 */ (function webpackUniversalModuleDefinition(root, factory) { if(typeof exports === 'object' && typeof module === 'object') module.exports = factory(); else if(typeof define === 'function' && define.amd) define([], factory); else if(typeof exports === 'object') exports["mailgun"] = facto...