code stringlengths 2 1.05M |
|---|
/*
Copyright (c) 2015-present NAVER Corp.
name: @egjs/flicking
license: MIT
author: NAVER Corp.
repository: https://github.com/naver/egjs-flicking
version: 3.4.5
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'functi... |
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
import _extends from "@babel/runtime/helpers/esm/extends";
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { deepmerge, elementAcceptingRef } from '@material-ui/utils'... |
import _extends from "@babel/runtime/helpers/extends";
import _defineProperty from "@babel/runtime/helpers/defineProperty";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["tabIndex", "placeholder", "children", "align", "getRootRef", "multiline", "disabled", "onCl... |
/**
* @license Highstock JS v10.0.0 (2022-03-07)
*
* Indicator series type for Highcharts Stock
*
* (c) 2010-2021 Sebastian Bochan
*
* License: www.highcharts.com/license
*/
(function (factory) {
if (typeof module === 'object' && module.exports) {
factory['default'] = factory;
module.exports... |
/*
* big.js v6.0.1
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
* Copyright (c) 2020 Michael Mclaughlin
* https://github.com/MikeMcl/big.js/LICENCE.md
*/
;(function (GLOBAL) {
'use strict';
var Big,
/************************************** EDITABLE DEFAULTS *... |
/**
* Tom Select v1.7.7
* Licensed under the Apache License, Version 2.0 (the "License");
*/
import TomSelect from '../../tom-select.js';
/**
* Converts a scalar to its best string representation
* for hash keys and HTML attribute values.
*
* Transformations:
* 'str' -> 'str'
* null -> ''
* unde... |
var dbm = require('db-migrate');
var type = dbm.dataType;
exports.up = function(db, callback) {
db.createTable('ripple_addresses', {
id: { type: 'int', primaryKey: true, autoIncrement: true },
managed: { type: 'boolean', default: false, notNull: true},
address: { type: 'string', notNull: true },
t... |
{
"name": "aggregate.js",
"url": "https://github.com/jdarling/aggregate.js.git"
}
|
'use strict';
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 = require('react');
var StylePropabl... |
/* Magic Mirror Test config default calendar with auth by default
*
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
let config = {
timeFormat: 12,
modules: [
{
module: "calendar",
position: "bottom_bar",
config: {
calendars: [
{
maximumNumberOfDays: 10000,
... |
/**
* Module dependencies.
*/
var Package = require('./Package');
var debug = require('debug')('component');
var mkdir = require('mkdirp');
var utils = require('./utils');
var fs = require('fs');
var path = require('path');
var join = path.join;
var resolve = path.resolve;
var exists = fs.existsSync;
var request = r... |
/**
* @ngdoc service
* @name languages
*
* @description Provides access to the list of languages for available translations.
*
* The list of languages is initialized from the session state
* and can then later be updated using the add() method.
*/
'use strict';
var eventsa = requir... |
define(function(require, exports, module) {
window.jQuery = window.$ = jQuery = require('$');
require('bootstrap');
exports.load_script = function(module, options) {
require.async('./controller/' + module, function(module) {
$(document).ready(function() {
... |
'use strict';
var TimeUnit = require('../TimeUnit');
var zurvan = require('../zurvan');
var assert = require('assert');
describe('zurvan', function() {
describe('under special configuration', function() {
it('runs at arbitrary time since process startup', function() {
return zurvan
.interceptTimer... |
angular.module('DemoApp', ['angularTouchWidgets']).
controller('demoController', function($scope) {
$scope.driversList = [
{
Driver: {
givenName: 'Sebastian',
familyName: 'Vettel'
},
points: 322,
... |
define([
'jquery',
'backbone',
'marionette',
'App',
'backbone.caching-fetcher' // should be last item in required list. Plugin doesn't return any object
],function ($, Backbone, Marionette, App) {
'use strict';
var redirectToLoginIfNotAuthorized = function(response) {
console.log(response... |
/**
* Creates map, draws paths, binds events.
* @constructor
* @param {Object} params Parameters to initialize map with.
* @param {String} params.map Name of the map in the format <code>territory_proj_lang</code> where <code>territory</code> is a unique code or name of the territory which the map represents (ISO 31... |
'use strict';
angular.module('cpZenPlatform').service('auth', function($http, $q) {
var loggedin_user = null;
function topfail( data ) {
console.log(data)
}
return {
login: function(creds,win,fail){
$http({method:'POST', url: '/auth/login', data:creds, cache:false}).
success(win).error(... |
// alert('hello');
setTimeout(function() {
$.ajax({
url: '/user.action',
method: 'get',
success: function(data) {
var listStr = data.map(function(ele) {
return '<li>' + ele + '</li>';
}).join('');
$('#root').html(listStr);
},
error: function(error) {
console.log(error);
}
});
$.aja... |
var loopback = require('loopback');
var boot = require('loopback-boot');
var app = module.exports = loopback();
// Bootstrap the application, configure models, datasources and middleware.
// Sub-apps like REST API are mounted via boot scripts.
boot(app, __dirname);
var roles = [
{
name: ... |
/**
* Created by Andrey Gayvoronsky on 13/04/16.
*/
const locale = {
placeholder: 'Выберите время',
};
export default locale;
|
// @flow
let x = { m() {} };
x.m = () => {}; // error: m is read-only
let x2 : {m() : void } = { m() {} };
x2.m = () => {}; // error: m is read-only
let y = {...x};
y.m = () => {}; // error: m is read-only
let z = { m : () => {}, ...x };
z.m = () => {}; // error: m is read-only
let z2 = { ...x, m : () => {}, };
z... |
import * as React from 'react';
import createSvgIcon from './utils/createSvgIcon';
export default createSvgIcon(
<path d="M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z" />
, 'FirstPageOutlined');
|
'use strict';
var frontMatter = require('front-matter');
module.exports = function (arr) {
var len = arr.length;
var res = [];
while (len--) {
res.push(frontMatter(arr[len]));
}
// console.log(res)
return res;
};
|
/*
* Copyright (c) 2012 Adobe Systems Incorporated. All rights reserved.
*
* 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... |
describe("SpyRegistry", function() {
describe("#spyOn", function() {
it("checks for the existence of the object", function() {
var spyRegistry = new jasmineUnderTest.SpyRegistry();
expect(function() {
spyRegistry.spyOn(void 0, 'pants');
}).toThrowError(/could not find an object/);
})... |
var rwhitespace = /(\s|\t|\r\n|\r|\n)/,
rvalueseparator = /\/|,/,
rvalueseek = /"|'|\(/;
function Rule( property, value, position ) {
var self = this;
if ( ! ( self instanceof Rule ) ) {
return new Rule( property, value, position );
}
self.property = ( property || '' ).trim();
self.value = ( value || '' ).... |
'use strict';
// '/app/common/custom/othercustfields.nl?whence=' |
import './styles.css'
import React from 'react'
import {connect} from 'cerebral/react'
import StatePaths from './StatePaths'
import Renders from './Renders'
export default connect({
map: 'debugger.componentsMap.**',
renders: 'debugger.renders.**'
},
function Components (props) {
return (
<div classNam... |
(function() {
'use strict';
angular
.module('app.commands')
.controller('CommandsController', CommandsController);
// 'isLoggedIn' is passed from the config.route.js
CommandsController.$inject = ['$location', '$localStorage', '$timeout', 'isLoggedIn', 'CommandService', 'UserService', '... |
export function rowHasChanged(r1, r2) {
return r1 != r2;
};
export function sectionHeaderHasChanged(s1, s2){
return s1 != s2;
};
export function getSectionData(dataBlob, sectionID) {
return dataBlob[sectionID]
};
export function getRowData(dataBlob, sectionID, rowID){
return dataBlob[`${sectionID}:${rowID}`]... |
// file: bwipp/databartruncatedcomposite.js
//
// This code was automatically generated from:
// Barcode Writer in Pure PostScript - Version 2015-03-24
//
// Copyright (c) 2011-2015 Mark Warren
// Copyright (c) 2004-2014 Terry Burton
//
// See the LICENSE file in the bwip-js root directory
// for the extended copyright... |
( function () {
"use strict";
var cssPrefix, allStyles,
defaultCss, defaultTextCss,
hiddenCss,
textDimensionCalculateNodeCss,
inputType2tag, nonInputType2tag,
textSizeMeasureNode,
imageSizeMeasureNode,
supportedInputTypeS,
audioWidth, audioHeight,
INPUT_FILE_WIDTH = 240;
/... |
(function (app) {
'use strict';
app.registerModule('bills');
}(ApplicationConfiguration));
|
var Query = require("./query")
, Utils = require("../../utils")
module.exports = (function() {
var ConnectorManager = function(sequelize, config) {
this.sequelize = sequelize
this.client = null
this.config = config || {}
this.config.port = this.config.port || 5432
this.pooling ... |
import DS from 'ember-data';
import BackboneElement from 'ember-fhir/models/backbone-element';
const { attr, belongsTo } = DS;
export default BackboneElement.extend({
actionId: attr('string'),
relationship: attr('string'),
offsetDuration: belongsTo('duration', { async: false }),
offsetRange: belongsTo('range'... |
angular.module('seoApp').controller('SearchCtrl', ['$scope', '$routeParams', 'SearchService', function($scope, $routeParams, SearchService) {
$scope.term = '';
$scope.matches = SearchService.getEmptyResult();
// Search order
$scope.predicate = 'matches.length';
$scope.reverse = true;
$scope.$watch('term',... |
/*
* Copyright (c) 2012 Massachusetts Institute of Technology, Adobe Systems
* Incorporated, and other contributors. All rights reserved.
*
* 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 Softwa... |
import {set} from 'cerebral/operators'
import {input, state} from 'cerebral/tags'
import paths from '../paths'
export default function (moduleName) {
const {draftPath, dynamicPaths} = paths(moduleName)
return [
dynamicPaths,
set(state`${draftPath}`, state`${input`itemPath`}`),
// To trigger change on c... |
/*
* Crypto-JS v2.5.3
* http://code.google.com/p/crypto-js/
* (c) 2009-2012 by Jeff Mott. All rights reserved.
* http://code.google.com/p/crypto-js/wiki/License
*/
(function(){
// Shortcuts
var C = Crypto,
util = C.util,
charenc = C.charenc,
UTF8 = charenc.UTF8,
Binary = charenc.Binar... |
module.exports = {
description: 'makes sure reassignments of double declared variables and their initializers are tracked'
};
|
/* generated by Svelte vX.Y.Z */
import {
SvelteComponent,
create_component,
destroy_component,
init,
mount_component,
noop,
not_equal,
transition_in,
transition_out
} from "svelte/internal";
function create_fragment(ctx) {
let nested;
let current;
nested = new /*Nested*/ ctx[0]({ props: { foo: "bar" } });... |
import { test, describe, before, after, beforeEach } from 'ava-spec'
import { koaApp } from '../helpers/app'
import { createUser, getToken, createTagCat, createTag } from '../helpers/auth'
import { UserSchema } from '../../server/model/user.model'
import { LogsSchema } from '../../server/model/logs.model'
import { TagC... |
function Controller() {
var view = new View();
var box = new Box();
var count = 10;
var initialize = function() {
view.clearScreen();
};
var stopIfDone = function(interval) {
if (count > 1500) {
clearInterval(interval);
}
};
this.partyTime = function() {
initialize();
var cycle = setInterval(fu... |
const convertPathsToTree = files => {
const retVal = {};
files.forEach(file => {
const path = file.path || file.webkitRelativePath || file.name;
// remove leading slash if present, then split into path segments and reduce to object
path
.replace(/^\/+/g, '')
.split('/')
.reduce((r, e... |
import * as types from 'constants/ActionTypes';
import api from 'utils/api/attributeSection';
export function handleChanges(data) {
return { type: types.HANDLESEARCHATTRIBUTE, payload: { data } };
}
function _doSearch(data) {
return {
types: [types.HANDLESEARCH, types.HANDLESEARCHSUCCESS, types.HANDLESEARCHF... |
// Generated by CoffeeScript 1.9.0
var Account, async, cozydb;
async = require('async');
Account = require('../models/account');
cozydb = require('cozydb');
module.exports.main = function(req, res, next) {
return async.series([
function(cb) {
return cozydb.api.getCozyLocale(cb);
}, function(cb) {
... |
/* eslint no-console: 0 */
'use strict';
const nodemailer = require('../lib/nodemailer');
// Generate SMTP service account from ethereal.email
nodemailer.createTestAccount((err, account) => {
if (err) {
console.error('Failed to create a testing account');
console.error(err);
return proces... |
// Initialize Firebase
var config = {
apiKey: "AIzaSyA7t-70TsjQO9vvEYC0jrhOtAe8JbgjHmk",
authDomain: "tacl-79682.firebaseapp.com",
databaseURL: "https://tacl-79682.firebaseio.com",
storageBucket: "tacl-79682.appspot.com",
};
firebase.initializeApp(config);
var database = firebase.database();
var data = { seaso... |
var FS = require('fs'),
Path = require('path'),
Model = require('api/model');
exports['test basic'] = function (test, assert) {
var userModel = new Model({
username : String,
password : String
}, {
folder : Path.resolve(__dirname, 'fixtures', 'db'),
filename : 'user... |
/* global define */
define(['jquery'], function ($) {
/**
* @export orocrm/contact/widgets/account-contacts-widget
* @class oro.AccountContactWidgetHandler
*/
return {
/**
* @desc Fire name link click
* @callback
*/
boxClickHandler: function (even) {
... |
angular.module(
"aanimals.module.logdown.service.logdown",
[]
)
.service("Logdown", function() {
var logdown;
if (
typeof module !== "undefined" &&
typeof module.exports !== "undefined" &&
typeof require === "function"
) {
logdown = re... |
/*
* mobile navbar unit tests
*/
(function($){
test( "navbar button gets active button class when clicked", function() {
var link = $("#disabled-btn-click a:not(.ui-disabled)").first();
link.click();
ok( link.hasClass($.mobile.activeBtnClass), "link has active button class" );
});
test( "disabled navbar bu... |
//this controller simply tells the dialogs service to open a mediaPicker window
//with a specified callback, this callback will receive an object with a selection on it
function mediaPickerController($scope, dialogService, entityResource, $log, iconHelper) {
function trim(str, chr) {
var rgxtrim = (!chr) ?... |
sap.ui.define([
"sap/ui/core/mvc/Controller"
], function(Controller) {
"use strict";
return Controller.extend("BikeRentalApp.controller.bikestationslist", {
getDefaultModel: function() {
return this.getView().getModel();
},
/**
* Called when a controller is instantiated and its View controls... |
/* global __utils__ */
casper.test.begin('todomvc', 63, function (test) {
casper
.start('examples/todomvc/index.html')
.then(function () {
this.viewport(1000, 1000) // for appearing destroy buttons by mouse hover
test.assertNotVisible('.main', '.main should be hidden')
test.assertNotVisible('.footer'... |
require('./server/server.js'); |
export default( component , file ) =>
new Promise((resolve , reject) => {
component.setState({ isUploading: true});
component.upload.send(file , (error , url ) => {
if (error){
reject(error);
} else {
resolve(url);
}
});
});
|
"use strict";
var t = exports.t = require('chai').assert;
var extend = require('util')._extend;
var express = require('express');
var sira = require('sira');
exports.setup = function setup(fns) {
return function (done) {
var test = this;
exports.createSapp(fns, function (err, sapp) {
t... |
/*
* Monitor remote server uptime.
*/
var http = require('http');
var url = require('url');
http.createServer(function(req, res) {
var arg = url.parse(req.url).pathname.substr(1);
var chanceToGetOkResponse = parseFloat(arg) / 100;
if (!chanceToGetOkResponse || Math.random() > chanceToGetOkResponse) {
res... |
'use strict'
const WebIdTlsCertificate = require('../models/webid-tls-certificate')
const debug = require('./../debug').accounts
/**
* Represents an 'add new certificate to account' request
* (a POST to `/api/accounts/cert` endpoint).
*
* Note: The account has to exist, and the user must be already logged in,
* ... |
describeIntegration("Cluster Configuration", function() {
var TRANSPORTS = {
"ws": Pusher.WSTransport,
"flash": Pusher.FlashTransport,
"sockjs": Pusher.SockJSTransport,
"xhr_streaming": Pusher.XHRStreamingTransport,
"xhr_polling": Pusher.XHRPollingTransport,
"xdr_streaming": Pusher.XDRStreamin... |
import React from 'react'
import { shallow } from 'enzyme'
import StateControl from './StateControl'
import * as CONTENT from '../../../content/text'
it('renders without crashing', () => {
shallow(<StateControl />)
})
|
module.exports = ContactGroupAssign = require('typedef')
// THIS CODE WAS GENERATED BY AN AUTOMATED TOOL. Editing it is not recommended.
// For more information, see http://github.com/bvalosek/grunt-infusionsoft
// Generated on Wed Jan 08 2014 12:43:55 GMT-0600 (CST)
// This table has one entry for each tag a single ... |
var HelloWorld = cc.Scene.extend({
onEnter:function(){
this._super();
var winSize = cc.visibleRect;
//从flax输出的素材文件中,创建id为anim的动画,对应flash库中链接名为mc.anim的动画
//添加到this中,并设置位置为舞台中心
var anim = flax.assetsManager.createDisplay(res.anim, "helloWorld", {parent: this, x: winSize.width/2... |
//------------------------------------//
// Three Config
//------------------------------------//
define(['jquery', 'three', 'angular'], function($, THREE, angular) {
(function(window, document, undefined) {
var mouseX = 0,
mouseY = 0,
scene = new THREE.Scene(),
renderer = new THREE.We... |
/////////////////////////////////////////////////////////////
// ContextMenu
//
/////////////////////////////////////////////////////////////
import './ContextMenu.scss'
export default class ContextMenu {
constructor (viewer) {
this.viewer = viewer;
this.menus = [];
this.container = null;
this.open... |
/* Date Math
-----------------------------------------------------------------------------*/
var DAY_MS = 86400000,
HOUR_MS = 3600000,
MINUTE_MS = 60000;
function addYears(d, n, keepTime) {
d.setFullYear(d.getFullYear() + n);
if (!keepTime) {
clearTime(d);
}
return d;
}
function addMonths(d, n, keepTime) { ... |
export default function acceptArgumentList(children) {
let args = [];
children.skipNonCode();
children.passToken('Punctuator', '(');
children.skipNonCode();
while (!children.isToken('Punctuator', ')')) {
if (children.isToken('Punctuator', ',')) {
children.moveNext();
... |
module.exports = function(app,extend){
var passport = require('passport');
var PrivateCtrl = require( app.locals.__app + '/controllers/private')(app);
var PageCtrl = require( app.locals.__app + '/controllers/page')(app);
var PostCtrl = require( app.locals.__app + '/controllers/post')(app);
var Comm... |
'use strict';
const path = require('path');
const webpack = require('webpack');
const baseConfig = require('./base');
const defaultSettings = require('./defaults');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const config = Object.assign({}, baseConfig, {
entry: [
'web... |
$(document).ready(function() {
var graph = new joint.dia.Graph;
var paper = new joint.dia.Paper({
el: $('#paper'),
width: 800,
height: 480,
gridSize: 1,
model: graph
});
var erd = joint.shapes.erd;
var element = function(elm, x, y, label) {
var cell = new elm({ positi... |
(function () {
'use strict';
var directiveId = 'remiChart';
angular.module('app').directive(directiveId, [remiChart]);
function remiChart() {
return {
restrict: 'A',
templateUrl: 'app/common/directives/tmpls/remiChart.html',
scope: {
measure... |
/**
* Test ValidateNotEmpty
*/
Tinytest.add('ValidateNotEmpty returns true', function (test) {
var v = new ValidateNotEmpty();
test.equal(true, v.validate('wow'));
});
Tinytest.add('ValidateNotEmpty returns message', function (test) {
var v = new ValidateNotEmpty();
test.equal('Please enter some text', v.... |
// flow-typed signature: d8f46a9244d16065ff75ce08ca6c3726
// flow-typed version: <<STUB>>/react-transition-group_v^2.2.0/flow_v0.52.0
/**
* This is an autogenerated libdef stub for:
*
* 'react-transition-group'
*
* Fill this stub out by replacing all the `any` types.
*
* Once filled out, we encourage you to s... |
const elm = document.createElement('h1');
elm.textContent = 'index.js';
document.body.append(elm);
|
requirejs.config({
baseUrl : "./scripts" //paths/shim use this as starting point
,packages : ["controllers","services","directives","filters"] //folders contain solution's files, entry point is main.js in each folder
,paths : {
app : "app"
//custom modules
,"angular-modules" : "angular-modules"
//lib
,"ang... |
import { connect } from "react-redux"
import { projectsActions, pointsActions } from "../../src/actions"
import * as selectors from "../../src/selectors"
import SidebarPoint from "./SidebarPoint"
const mapStateToProps = (state, props) => ({
gridStep: selectors.gridStepSelector(state, props),
activePoints: selector... |
/*jslint node: true */
'use strict';
var validators = require('../lib/forms').validators;
var async = require('async');
var test = require('tape');
test('matchField', function (t) {
var v = validators.matchField('field1', 'f2 dnm %s'),
data = {
fields: {
field1: {data: 'one'},
... |
if (!Cache.prototype.add) {
Cache.prototype.add = function add(request) {
return this.addAll([request]);
};
}
if (!Cache.prototype.addAll) {
Cache.prototype.addAll = function addAll(requests) {
var cache = this;
// Since DOMExceptions are not constructable:
function Network... |
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* The Tween Repeat Event.
*
* This event is dispatched by a Tween when one of the properties it is tweening repeats.
*
* This event w... |
version https://git-lfs.github.com/spec/v1
oid sha256:2d4c2843085e1add81a58ad81c28255b3dc3887766cfc674413d2ddec9dfe7d1
size 27212
|
/****************************************
* 协同云基础
****************************************/
var CC = CC || {};
(function (u, undefined) {
u.listingThemeObject = {
//// Listing area colors for texts and backgrounds for listing items.
////item_TextColor_Hot: '#000000',//'#ffffff',
//... |
version https://git-lfs.github.com/spec/v1
oid sha256:788e819fbb07f073e1ec84dc8b2a4c938537107f7c7759f6f59e2faa9b1bf386
size 2401
|
function outputa(msg) {
alert(msg);
}
function outputb(isTrue, msg) {
if (isTrue) {
alert(msg);
} else {
alert(10.00 + 20.00 * (300 + 400));
}
}
|
// api/services/protocols/openid.js
var _ = require('lodash');
var _super = require('sails-permissions/api/services/protocols/openid');
function protocols () { }
protocols.prototype = Object.create(_super);
_.extend(protocols.prototype, {
// Extend with custom logic here by adding additional fields and methods,
... |
export * from './get';
export * from './post';
export * from './put';
export * from './delete';
|
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] =... |
var class_drachenhorn_1_1_xml_1_1_objects_1_1_currency_part =
[
[ "Convert", "class_drachenhorn_1_1_xml_1_1_objects_1_1_currency_part.html#ae0572201079dd9e99e2b7fc93c875f76", null ],
[ "Parse", "class_drachenhorn_1_1_xml_1_1_objects_1_1_currency_part.html#adc93a864bd894b06fdcabf1e91121cfb", null ],
[ "ToStr... |
(function () {
"use strict";
angular.module('astInterpreter')
.factory('l9.treeFactory', function(){
function Tree(element) {
this.element = element;
this.subTrees = [];
for(var x = 1; x < arguments.length; x++) {
if (arguments[x] !== null) ... |
// 1. load bars stacked beside eachother.
// 2. only one full-width load bar appears each slide.
// 3. no load bars just dots.
// 4. video background.
// 5. one back ground.
"use strict";
/*
Plugin: jQuery AnimateSlider
Version 1.0.0
Author: John John
*/
(function($) {
$.fn.animateSlider = function(slideDur) ... |
/**
* Namespace of the Thread.js library.
* @namespace thread
*/
// Calls the toString method to determine the
// type of the object.
function typeOf(value) {
return Object.prototype.toString.call(value).slice(8, -1);
}
// Regular expression that matches native Error con... |
'use strict';
var fs = require('fs');
var path = require('path');
/**
* Get a Handlebars template file out of a theme and compile it into
* a template function
*
* @param {Object} Handlebars handlebars instance
* @param {string} themeModule base directory of themey
* @param {string} name template name
* @retur... |
'use strict';
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
// project configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
config: {
sources: 'lib',
tests: 'test'
},
jshint: {
src: [
['<%=config.sources %>']
],
... |
import * as React from 'react';
import createSvgIcon from './utils/createSvgIcon';
export default createSvgIcon(
<path d="M21 6H3v12h18V6zm-2 10H5V8h14v8z" />
, 'Crop169Sharp');
|
{
load: 'Chargement des données ...',
reload: 'Chargement des données ...',
update: 'Mise à jour des données ...',
submit: 'Envoi de données ...',
save: 'Mise à jour des données ...',
destroy: 'Mise à jour des données ...'
} |
var five = require("../lib/johnny-five.js"),
board, button;
board = new five.Board();
board.on("ready", function() {
// Create a new `button` hardware instance.
// This example allows the button module to
// create a completely default instance
button = new five.Button(7);
// Inject the `button` hardw... |
version https://git-lfs.github.com/spec/v1
oid sha256:75878cad45bd534fb1b3387b254481302906d748c656e4356664cf444c127f36
size 2931
|
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
export * from './index.js';
export {
act,
createComponentSelector,
createHasPseudoClassSelector,
createRoleSel... |
/*
* Copyright (c) 2015 by Rafael Angel Aznar Aparici (rafaaznar at gmail dot com)
*
* sisane: The stunning micro-library that helps you to develop easily
* AJAX web applications by using Angular.js 1.x & sisane-server
* sisane is distributed under the MIT License (MIT)
* Sources at https://github.com... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.