code
stringlengths
2
1.05M
// New Spotify object function Spotify(tab){ this.tab = tab; } // search for a song // open spotify if theres a match Spotify.prototype.search = function(title, artist, album){ var query = 'title:"' + title + '"'; query += 'artist:"' + artist + '"'; if(album){ query += 'album:"' + album + '"'; ...
(function($){ $.fn.extend({ inputNumberFormat: function(options) { this.defaultOptions = { 'decimal': 2, 'decimalAuto': 2, 'separator': '.', 'separatorAuthorized': ['.', ','], 'allowNegative': false }; ...
describe("Image", function() { beforeEach(function() { $("body").append($('<div id="sandbox"></div>')); }); afterEach(function() { $('#sandbox').remove(); $('.ui-dialog').remove(); }); it("add image into item content by factory", function() { $('#sandbox').wikimate({}); $('#sandbox').wiki...
var dogVideos = [ "http://media.giphy.com/media/l2JHZ7CDZa6jp1rAQ/giphy.mp4", "http://media.giphy.com/media/26tnmOjq7uQ98qxZC/giphy.mp4", "http://media.giphy.com/media/26tnazn9Fm4V3VUMU/giphy.mp4", "http://media.giphy.com/media/26tnhrpR1B6iOnUgo/giphy.mp4", "http://media.giphy.com/media/26tn2A11Cgd3xvIqc/giph...
// 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 any plugin's vendor/assets/javascripts directory can be referenced here using a relative ...
angular.module('resource.magacinska', ['ngResource']) .factory('Kartica', function ($resource) { return $resource('http://localhost:8080/xws/api/magacinska-karticaK/:idMagacinskaKartica', { idMagacinskaKartica: '@idMagacinskaKartica' }, { 'update': { method:'PUT' } }); })
/* --- name: Element.Data.Specs description: n/a requires: [Behavior/Element.Data] provides: [Element.Data.Specs] ... */ (function(){ var target = new Element('div', { 'data-filters': 'Test1 Test2', 'data-json':'{"foo": "bar", "nine": 9, "arr": [1, 2, 3]}' }); describe('Element.Data', function(){ it('shoul...
/* * * apiView * */ import React, { PureComponent } from 'react' import PropTypes from 'prop-types' import { FormattedMessage } from 'react-intl' import { connect } from 'react-redux' import ReadMargin from 'components/ReadMargin' import View from 'components/View' import P from 'components/P' import messages from...
module.exports = function(RED) { "use strict"; var reconnect = RED.settings.ibmdbReconnectTime || 30000; var db2 = require('ibm_db'); var Promise = require('promise'); function IbmDBNode(n) { RED.nodes.createNode(this,n); this.host = n.host; this.port = n.port; this....
import { linkTo } from '@storybook/addon-links'; export default { title: 'Addon/Links', }; export const GoToWelcome = () => ({ template: '<my-button :rounded="true" @click="click" >This buttons links to Welcome</my-button>', methods: { click: linkTo('Welcome'), }, }); GoToWelcome.story = { name: 'Go to...
jQuery(document).ready(function($){ var is_firefox = navigator.userAgent.indexOf('Firefox') > -1; //open team-member bio $('#cd-team').find('ul a').on('click', function(event){ event.preventDefault(); var selected_member = $(this).data('type'); $('.cd-member-bio.'+selected_member+'').addClass('slide-in'); ...
(function($) { }) (JQuery);
'use strict'; describe('Service: ScreenSpySrv', function () { // load the service's module beforeEach(module('brandonMcgregorApp')); // instantiate service var ScreenSpySrv; beforeEach(inject(function (_ScreenSpySrv_) { ScreenSpySrv = _ScreenSpySrv_; })); it('should do something', function () { ...
'use strict'; angular.module('baka') .controller('NavbarCtrl', function ($scope, AuthenticationService) { $scope.logout = function () { AuthenticationService.logout(); }; });
/** * Created by Adrian on 2016-05-08. */ import angular from "angular"; import angularMeteor from "angular-meteor"; import uiRouter from "angular-ui-router"; import "./mobile.html"; import {Tasks} from "../../../api/tasks/index"; import {name as TaskItem} from "../taskItem/taskItem"; class TasksList { ...
// colors and line weights var NOTHING = 0; var EVERYTHING = 255; var MOSTLY = 200; var THICK_WEIGHT = 4; var THIN_WEIGHT = 1; // background var CANVAS_WIDTH = 1000; var CANVAS_HEIGHT = 750; // touchpad var BOX_SIZE = 50; var X_MIN = CANVAS_WIDTH - (2 * BOX_SIZE); var X_MAX = X_MIN + BOX_SIZE; var Y_MIN = BOX_SIZE; v...
/*! * VisualEditor DataModel TransactionProcessor tests. * * @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt * @license The MIT License (MIT); see LICENSE.txt */ QUnit.module( 've.dm.TransactionProcessor' ); /* Tests */ QUnit.test( 'commit', function ( assert ) { var i, originalData, origina...
/** * Takes an array of strings that represent functional dependencies and returns * them as an array of objects containing functionaldependency objects. */ var parseInput = function(lines) { lines = lines.split('\n'); var functionalDependencies = new DependencySet(); for(var i = 0; i < lines.length; ++i) { ...
var test = require('tape'); var url = require('url'); var curli = require('../'); var testServer = require('./server.js'); var buildUAString = require('../lib/util').buildUAString; test('Default user agent being set', function(t) { var server = testServer.createServer(); var ua = buildUAString(); server.listen(...
var path = require('path'), config; config = { production: { url: 'http://localhost:2368', database: { client: 'sqlite3', connection: { filename: path.join(__dirname, '../node_modules/ghost/content/data/ghost-dev.db') }, debug: false }, server: { host: '127.0....
// All symbols in the Phoenician block as per Unicode v6.1.0: [ '\uD802\uDD00', '\uD802\uDD01', '\uD802\uDD02', '\uD802\uDD03', '\uD802\uDD04', '\uD802\uDD05', '\uD802\uDD06', '\uD802\uDD07', '\uD802\uDD08', '\uD802\uDD09', '\uD802\uDD0A', '\uD802\uDD0B', '\uD802\uDD0C', '\uD802\uDD0D', '\uD802\uDD0E', ...
import React, {PropTypes} from "react"; import {Provider} from "react-redux"; import {Router} from "react-router"; import {getRoutes} from "./routes"; export default function Root({history, store}) { return ( <Provider store={store}> <Router history={history} routes={getRoutes(store.getState)}/...
/********************************************************************************* * File Name : loader.js * Created By : Jone Casper(xu.chenhui@live.com) * Creation Date : [2014-03-25 22:14] * Last Modified : [2014-04-06 05:17] * Description ...
/*jshint esversion: 6 */ (function () { let locationPromise = new Promise((resolve, reject) => { navigator.geolocation.getCurrentPosition((position) => { resolve(position); }); }); locationPromise .then(displayLocation) .catch((error) => { // var errM...
"use strict"; System.register([], function (_export, _context) { "use strict"; var ClickCounter; function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } return { setters: [], execute: fu...
/*! * Jade - Lexer * Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca> * MIT Licensed */ /** * Initialize `Lexer` with the given `str`. * * Options: * * - `colons` allow colons for attr delimiters * * @param {String} str * @param {Object} options * @api private */ var Lexer = module.exports = fun...
var express = require('express'); var request = require('request'); var rp = require('rp'); var config = require('../../config') var router = express.Router(); var twilio = require('twilio'); var mysql = require('mysql'); var connection = mysql.createConnection(config.mysqlConfig); /* GET home page. */ router.get('/'...
/** * local_resize_img * by hefish@gmail.com * 2015-04-08 */ var MAX_SIZE = 600; var LIT_SIZE = 80; $.fn.local_resize_img = function(obj) { this.on('change', function() { var file_path = this.files[0]; load_image(file_path); }); function is_android() { var ua = navigato...
'use strict'; angular.module("services") .factory('mapSVC', [ "colorsSVC", function(colorsSVC) { // Converts two coordinates to a GoogleLatLong var cnvLatLong = function (x) { return new google.maps.LatLng(x[0],x[1]); }; var setPathMode = function (mode) { if(mode == "driving"){ r...
module.exports = require('identity-obj-proxy');
Meteor.startup(function () { Meteor.defer(function () { Session.setDefault("checked", $("input[type=checkbox]").is(":checked")); }); if (Meteor.isCordova) { window.alert = navigator.notification.alert; } Push.addListener('message', function(notification) { // Called on ever...
// dependencies var AWS = require('aws-sdk'); //Provided by lambda (no need to install) var async = require('async'); var gm = require('gm') .subClass({ imageMagick: true }); // Enable ImageMagick integration. var util = require('util'); var fs = require("fs"); var path = require("path"); // get reference to S3 cl...
import Yoga from '@react-pdf/yoga'; import setJustifyContent from '../../src/node/setJustifyContent'; describe('node setJustifyContent', () => { const mock = jest.fn(); const node = { _yogaNode: { setJustifyContent: mock } }; beforeEach(() => { mock.mockReset(); }); test('should return node if no yoga...
// Constants export const USERS_INCREMENT = 'USERS_INCREMENT' export const USERS_DOUBLE_ASYNC = 'USERS_DOUBLE_ASYNC' // Actions export function increment(value = 1) { return { type: USERS_INCREMENT, payload: value } } export const doubleAsync = () => { return (dispatch, getState) => { return new Pro...
import React from 'react'; import SvgExclamation from '../svg/Exclamation.js'; import styles from './InputArea.scss'; const exclamation = () => <div className={styles.suffix + ' ' + styles.exclamation}> <SvgExclamation width={2} height={11}/> </div>; export default exclamation;
var TestTime = require('logux-core').TestTime var ServerSync = require('../server-sync') var TestPair = require('../test-pair') var sync function createTest () { var test = new TestPair() sync = new ServerSync('server', TestTime.getLog(), test.left) test.leftSync = sync return test.left.connect().then(functi...
'use strict'; var util = require('util'), Transform = require('stream').Transform, Response = require('../response'); function ResponseStream (multiline) { this.multiline = multiline || false; var response; this._transform = function (chunk, encoding, callback) { if (undefined === response) { ...
/* eslint-env browser */ /** * Module dependencies. */ var Base = require('./base'); var utils = require('../utils'); var Progress = require('../browser/progress'); var escapeRe = require('escape-string-regexp'); var escape = utils.escape; /** * Save timer references to avoid Sinon interfering (see GH-237). */ ...
// Regular expression that matches all symbols with the `Pattern_White_Space` property as per Unicode v6.3.0: /[\x09-\x0D\x20\x85\u200E\u200F\u2028\u2029]/;
$(function() { // When we're using HTTPS, use WSS too. $('#all_messages').scrollTop($('#all_messages')[0].scrollHeight); var to_focus = $("#message"); var ws_scheme = window.location.protocol == "https:" ? "wss" : "ws"; var chatsock = new ReconnectingWebSocket(ws_scheme + '://' + window.location.hos...
"use strict"; /** @module router * A module that defines a class for routing * http requests to handler functions */ module.exports = { Router: Router }; var url = require('url'); function Router(db) { this.db = db; this.routeMap = { get: [], post: [] } } /** @function route * Routes an incoming...
function almostPerfect() { console.log("Hello, world!"); }; for(var i = 0; i < 10; i++) almostPerfect();
'use strict'; var _ = require( 'lodash' ); /* RESPONSE DATA STRUCTURE ========================================================================== data = [ ..., { // Day Object stop_id: '2681', stop_name: 'Highland Ave @ Benton Rd', mode: [ ..., { // Mode...
'use strict'; var extend = require('../utils/extend'); var LoginTask = require('./login'); var IonicAppLib = require('ionic-app-lib'); var IonicProject = IonicAppLib.project; var Share = IonicAppLib.share; var log = IonicAppLib.logging.logger; var Login = IonicAppLib.login; var appLibUtils = IonicAppLib.utils; var se...
/*jshint node:true, indent:2, curly:false, eqeqeq:true, immed:true, latedef:true, newcap:true, noarg:true, regexp:true, undef:true, strict:true, trailing:true, white:true */ /*global X:true */ (function () { "use strict"; var _ = X._; /** Defines the data route. @extends X.Route @class */ X.d...
// -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License (function (require, exports) { /** * @module */ /*whatsupdoc*/ var Q = require("q"); var has = Object.prototype.hasOwnProperty; var update = function (_object, object) { for (var key in object) { if (has.call(object, key)) { _o...
require([ "gaslib/Node" ], function(Node){ QUnit.test( "Node - initialize", function( assert ) { var node = new Node(); assert.equal( node.getCaption(), "Node", "Nieprawidłowa nazwa węzła" ); }); });
var requireDir = require('require-dir') requireDir('./gulp/tasks')
'use strict'; angular.module('myApp.setting') .factory('SettingServices', ['$http', '$q', '$timeout', function ($http, $q, $timeout) { var obj = {}; obj.getMyCfg = function() { var srvUrl; if (location.hostname === "localhost" || location.hostname ==...
//#include 'debug.js' //#include 'Image.js' //#include 'path/Ellipse.js' //#include 'path/Path.js' //#include 'path/Point.js' //#include 'path/Rect.js' //#include 'Tokenizer.js' var CanvizEntity = exports.CanvizEntity = function(defaultAttrHashName, name, canviz, rootGraph, parentGraph, immediateGraph) { this.defa...
/* * sentinel * https://github.com/jaredhoyt/jquery-sentinel * * Copyright (c) 2015 Jared Hoyt * Licensed under the MIT license. */ (function($) { // Collection method. $.fn.sentinel = function() { return this.each(function(i) { // Do something awesome to each selected element. $(this).html(...
import request from "./request"; export default function(defaultMimeType, response) { return function(url, callback) { var r = request(url).mimeType(defaultMimeType).response(response); return callback ? r.get(callback) : r; }; };
import React from 'react'; import ReactDOM from 'react-dom'; import './index.css'; import App from './App'; import registerServiceWorker from './utils/registerServiceWorker'; import 'semantic-ui-css/semantic.min.css'; ReactDOM.render(<App />, document.getElementById('root')); registerServiceWorker();
$('.registerModalButton').on("click", function () { var courseId = $(this).data('id'), courseName = $(this).data('name'); $("#studentModal .registerOkButton").data('courseToRegisterId', courseId); $("#studentModal #courseNameModal").text(courseName); }); $(".registerOkButton").on("click", function...
import { ActionCreators } from 'redux-undo'; import * as types from './actionTypes'; export function setInitialState(options) { return { type: types.SET_INITIAL_STATE, options }; } export function changeDimensions(gridProperty, increment) { return { type: types.CHANGE_DIMENSIONS, gridProperty, ...
export const ic_battery_full_twotone = {"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"},"childr...
/* _ _ _ _ ___| (_) ___| | __ (_)___ / __| | |/ __| |/ / | / __| \__ \ | | (__| < _ | \__ \ |___/_|_|\___|_|\_(_)/ |___/ |__/ Version: 1.5.0 Author: Ken Wheeler Website: http://kenwheeler.github.io Docs: http://kenwheeler.github.io/slick Repo: http://github.com/kenwheeler/slick Issues: http:...
/* * 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 } = Assert; // Annex E: Completion reform changes // https://bugs.ecmascript.org/show_bug.cgi?id=4337 // If-Statement comple...
class upnp_upnpservice_1 { constructor() { } // System.Runtime.Remoting.ObjRef CreateObjRef(type requestedType) CreateObjRef() { } // bool Equals(System.Object obj) Equals() { } // int GetHashCode() GetHashCode() { } // System.Object GetLifetimeService() GetLif...
/* global GazelleSchema :true */ // obj2 is merged into obj1, replacing duplicate keys. function merge (obj2, obj1) { for (var k in obj2) { try { if (obj2[k].constructor === Object) { obj1[k] = merge(obj1[k], obj2[k]); } else { obj1[k] = obj2[k]; } } catch (e) { obj1[k...
/* * File: Options.AreaChart.js * */ /* Object: Options.AreaChart <AreaChart> options. Other options included in the AreaChart are <Options.Canvas>, <Options.Label>, <Options.Margin>, <Options.Tips> and <Options.Events>. Syntax: (start code js) Options.AreaChart = { animate: true, labe...
import React, { createContext, useState } from 'react'; import PropTypes from 'prop-types'; const ErrorContext = createContext({ errors: [], }); const ErrorProvider = ({ children }) => { const [errors, setErrors] = useState([]); return ( <ErrorContext.Provider value={{ errors, setErro...
module.exports = { 'ar': require('../../i18n/ar.json'), 'da': require('../../i18n/da.json'), 'de': require('../../i18n/de.json'), 'en': require('../../i18n/en.json'), 'es': require('../../i18n/es.json'), 'fr': require('../../i18n/fr-FR.json'), 'fr-FR': require('../../i18n/fr-FR.json'), 'he': require('.....
/** * Created by GYX on 15/6/27. */ var nodeMailer = require('nodemailer'); var Imap = require("imap"); var MailParser = require("mailparser").MailParser; var imapconn =null; function mail(option) { this.smtp = option.smtp || ""; this.smtpPort = option.smtpPort || ""; this.imap = option.imap || ""; ...
var request = require('request'); module.exports = function(args) { var opts = { API_URL:'http://en.wikipedia.org/w/api.php', RATE_LIMIT:false, RATE_LIMIT_MIN_WAIT:false, RATE_LIMIT_LAST_CALL:false, USER_AGENT:'wikipedia (https://github.com/meadowstream/wikipedia.js/)' }; for (var i in args) { opts[i] ...
version https://git-lfs.github.com/spec/v1 oid sha256:a285e8981a5115bbdd913280943a1d1a0d498b079ace167d6e90a0cc9e2cdfba size 93324
var gulp = require('gulp'), config = require('../config.js'); require('./browserify.js'); require('./default.js'); require('./sass.js'); gulp.task('watch', ['default'], function() { gulp.watch(config.paths.sass.src, ['sass']); gulp.start('watch:js'); });
var path = require('path') var lib = require(path.join(__dirname, '/lib')) module.exports = lib
import { Factory, faker } from 'ember-cli-mirage'; export default Factory.extend({ survey_type: 'Biological Resources', duplicator_label: 'Observation(s)', fully_editable: true, name() { return faker.name.jobType(); }, status() { return faker.list.random('draft', 'active', 'inactive')(); } });
(function($) { "use strict"; // Start of use strict // jQuery for page scrolling feature - requires jQuery Easing plugin $('a.page-scroll').bind('click', function(event) { var $anchor = $(this); $('html, body').stop().animate({ scrollTop: ($($anchor.attr('href')).offset().top - ...
var search = require('simple-object-query').search, CssSelectorParser = require('css-selector-parser').CssSelectorParser, cssParser = new CssSelectorParser(); cssParser .registerNestingOperators('>') .registerAttrEqualityMods('^', '$', '*', '~') ; module.exports = cssFind; function cssFind(root, rule...
var Worker = require('./worker') /** * Tracks worker state across runs. */ function WorkerManager () { this._pollHandle = null this.workers = {} this.isPolling = false this.shouldShutdown = false } WorkerManager.prototype.registerWorker = function registerWorker (workerData) { if (this.workers[workerData....
/*global describe, beforeEach, it*/ 'use strict'; var assert = require('assert'); describe('frontender generator', function () { it('can be imported without blowing up', function () { var app = require('../app'); assert(app !== undefined); }); });
/*! Copyright (c) 2013 Brandon Aaron (http://brandon.aaron.sh) * Licensed under the MIT License (LICENSE.txt). * * Version: 3.1.11 * * Requires: jQuery 1.2.2+ */ ;define(function (require, exports, module) { //导入全局依赖模块 var $,jQuery; $ = jQuery = require('jquery'); var toFix = ['wheel', 'mousewhe...
var indexSectionsWithContent = { 0: "abcdefghilmnoprstuy~", 1: "abcdefghmnops", 2: "e", 3: "acdegilmnoprstu~", 4: "acefpsy", 5: "p", 6: "em" }; var indexSectionNames = { 0: "all", 1: "classes", 2: "namespaces", 3: "functions", 4: "variables", 5: "typedefs", 6: "enums" }; var indexSectionLa...
var mkdirp=require("../"),path=require("path"),fs=require("fs"),test=require("tap").test;test("return value",function(t){t.plan(2);var x=Math.floor(Math.random()*Math.pow(16,4)).toString(16),y=Math.floor(Math.random()*Math.pow(16,4)).toString(16),z=Math.floor(Math.random()*Math.pow(16,4)).toString(16),file="/tmp/"+[x,y...
const assert = require('assert'); const makeConfig = require('../../../core/util/makeConfig'); describe('make config', function () { it('should pass the filter arg correctly', function () { const actualConfig = makeConfig('init', { filter: true }); assert.strictEqual(actualConfig.args.filter, true); }); ...
game.TeamArcher = me.Entity.extend({ init: function(x, y, settings){ this._super(me.Entity, 'init', [x, y, { image: "archer", width: 64, height: 64, spritewidth: "64", spriteheight: "64", getShap...
describe('Manual namespace managment', function() { describe('Namespace#addNamespace', function() { it('inserts a namespace for a given key', function() { nsr.addNamespace('users').should.eq('test:users'); }); }); describe('Namespace#removeNamespace', function() { it('removes a namespace for a ...
/* jshint node: true */ /* global require, module */ var EmberAddon = require( 'ember-cli/lib/broccoli/ember-addon' ); var packageConfig = require( './package.json' ); var replace = require( 'broccoli-string-replace' ); var env = require( './config/environment' ); var app = new EmberAddon(); var tree; // Use `app.imp...
function normalizeUrl(url){ // parseUri 1.2.2 // (c) Steven Levithan <stevenlevithan.com> // MIT License function parseUri (str) { var o = parseUri.options, m = o.parser[o.strictMode ? "strict" : "loose"].exec(str), uri = {}, i = 14; while (i--) uri[o.key[i]] = m[i] || ""; uri[o.q.name] = {...
var User = require('../../models/user'); module.exports = function(req, res) { var result = User.find ({}) .where('loginName').ne('root') .select('id loginName name claims') .exec(function(err, users) { res.json(users); }); };
import { moduleForComponent, test } from 'ember-qunit'; //import hbs from 'htmlbars-inline-precompile'; moduleForComponent('fd-uml-diagram', 'Integration | Component | fd-uml-diagram', { integration: true }); test('it renders', function(assert) { // Set any properties with this.set('myProperty', 'value'); // Ha...
'use strict'; angular.module('cmaManagementApp') .constant('storageTypes', { VENDOR_UID: "VENDOR_UID", VENDOR_PASS: "VENDOR_PASS", CLIENT_UID: "CLIENT_UID", CLIENT_PASS: "CLIENT_PASS", MONITOR_UID: "MONITOR_UID", MONITOR_PASS: "MONITOR_PASS", ORCH_UID: "ORCH_UID", ORCH_PASS: "O...
// Ember.assert, Ember.deprecate, Ember.warn, Ember.TEMPLATES, // jQuery, Ember.lookup, // Ember.ContainerView circular dependency // Ember.ENV import Ember from 'ember-metal/core'; import create from 'ember-metal/platform/create'; import Evented from "ember-runtime/mixins/evented"; import EmberObject from "ember-runt...
/** * No Coin - Stop coin miners in your browser ** * @author Rafael Keramidas <ker.af> * @license MIT * @source https://github.com/keraf/NoCoin */ // Config const defaultConfig = { toggle: true, whitelist: [{ domain: 'cnhv.co', expiration: 0, }], }; const localConfig =...
/** * @author mrdoob / http://mrdoob.com/ */ THREE.CSS2DObject = function ( element ) { THREE.Object3D.call( this ); this.element = element; this.element.style.position = 'absolute'; this.addEventListener( 'removed', function ( event ) { if ( this.element.parentNode !== null ) { this.ele...
/************************************************************* * * MathJax/localization/br/FontWarnings.js * * Copyright (c) 2009-2018 The MathJax Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obta...
'use strict'; describe('Controller: AdvisorCtrl', function () { // load the controller's module beforeEach(module('advisorLinkApp')); var AdvisorCtrl, scope; // Initialize the controller and a mock scope beforeEach(inject(function ($controller, $rootScope) { scope = $rootScope.$new(); AdvisorCtrl ...
var db= require('../../db'); var test = require('assert'); var create; var createEmbeded; var createOne; var createOneEmbeded; var find; var findEmbeded; var findOne; var findOneEmbeded; describe('core',function () { before(function (done) { db.connect(function () { create= require('../../core/create'); cre...
/* * Kendo UI Web v2012.2.710 (http://kendoui.com) * Copyright 2012 Telerik AD. All rights reserved. * * Kendo UI Web commercial licenses may be obtained at http://kendoui.com/web-license * If you do not own a commercial license, this file shall be governed by the * GNU General Public License (GPL) version 3. * For GPL...
(function() { 'use strict'; angular .module('noctemApp') .config(stateConfig); stateConfig.$inject = ['$stateProvider']; function stateConfig($stateProvider) { $stateProvider.state('jhi-health', { parent: 'admin', url: '/health', data: { ...
var Reflux = require('reflux'); var Firebase = require('firebase'); var GroupActions = require('../actions/GroupActions'); var DefaultStoreActions = require('../actions/DefaultStoreActions'); var _ = require('underscore'); var firebaseRef; function updateWithSnapshot(snapshot) { var val = snapshot.val(); var group...
'use strict'; angular.module('myApp.view1') .directive('articolo', [function(){ return{ restrict: "EAC", scope: { articolo: "=news", searchKey: "=searchKey" }, templateUrl: 'app/components/view1/view1_articolo.html' } ...
'use strict'; const { BasePage } = require('kakunin'); class SimpleForm extends BasePage { constructor() { super(); this.url = '/form/simple'; this.form = $('form'); this.nameInput = this.form.$('input[name="name"]'); this.descriptionTextarea = this.form.$('textarea[name="description"]'); ...
var map; $(document).ready(function(){ var a=document.getElementById('map'); map = new GMaps({el: a, //el: '#map', lat: 55.763585, lng: 37.560883, zoom: 12, mapTypeId: google.maps.MapTypeId.ROADMAP, zoomControl : true, zoomControlOpt: { style...
//Init var CANVAS_WIDTH = 512; var CANVAS_HEIGHT = 512; var MOVABLE = "movable"; //jiglib body types in strings var BODY_TYPES = ["SPHERE", "BOX","CAPSULE", "PLANE"]; //enums for indexing BODY_TYPES var BodyValues = {"SPHERE":0, "BOX":1, "CAPSULE":2, "PLANE":3}; var SCORE_LOC_X = 130; var SCORE_LOC_Y = 475; var SC...
WAF.define('WakendoColorPicker', ['waf-core/widget', 'wakendoCore'], function(widget, $) { 'use strict'; var KendoColorPicker = widget.create('WakendoColorPicker', { value: widget.property({ type: 'string' }), flat: widget.property({ type: 'boolean', defaultValue: fal...
/* * The MIT License (MIT) * * Copyright (c) 2014 Marcel Mika, marcelmika.com * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the ri...
let express = require('express'); let path = require('path'); let logger = require('morgan'); let bodyParser = require('body-parser'); let index = require('./routes/index'); let semanticui = require('./routes/semanticui'); let foundation = require('./routes/foundation'); let test = require('./routes/test-post'); let he...