code stringlengths 2 1.05M |
|---|
var app = app || {};
$(function() { //when DOM is ready...
if ( app.user_session ) {
console.log( "%csession" , "font-size: 2em; color: rgba(100,100,200,1.0);" );
} else {
console.log( "%cno session" , "font-size: 2em; color: rgba(200,100,100,1.0);" );
}
app.profile_content = new ProfileCollection();
... |
const getExport = require('../services/get-export')
const getSubNav = require('../services/get-sub-nav')
const organisationUnit = require('../constants/organisation-unit')
const authorisation = require('../authorisation')
const workloadTypes = require('../constants/workload-type')
const getLastUpdated = require('../ser... |
/**
* @module components
*
*/
import $ from 'jquery';
import { assert } from '@ember/debug';
import { dasherize } from '@ember/string';
import EmberObject, { get, set } from '@ember/object';
import { isNone, isEmpty } from '@ember/utils';
import Component from '@ember/component';
import { inject as service } from '@... |
import getElement from './-get-element';
import isFormControl from './-is-form-control';
import { __focus__ } from './focus';
import settled from '../settled';
import fireEvent from './fire-event';
import { nextTickPromise } from '../-utils';
/**
Fill the provided text into the `value` property (or set `.innerHTML` ... |
/**
* @module lib/tool/native
*/
import Tool from 'lib/tool/base';
import os from 'os';
/**
* @class
* @extends Tool
*/
class Native extends Tool {
/**
* Creates a native tool
*/
constructor() {
super();
this.command = 'echo';
}
/**
* Generates a native command give... |
var gulp = require('gulp'),
config = require('../config'),
mergeStream = require('merge-stream'),
mainBowerFiles = require('main-bower-files'),
flatten = require('gulp-flatten'),
rename = require("gulp-rename"),
bowerRequireJS = require('bower-requirejs'),
wiredep = require('wiredep').stream;
gulp.task('... |
/*
* Module : FacebookConnect.js
*
* Setups up the basic code to connect to the facebook JS api.
*
* Requires Config:
* - app.config.facebook.appId
*/
(function(app)
{
var module = app.module("facebookConnect", {
requires : [
"jquery-1.9.1.min"
],
init : function()
... |
/**
* @license Highstock JS v9.0.0 (2021-02-02)
* @module highcharts/modules/full-screen
* @requires highcharts
*
* Advanced Highstock tools
*
* (c) 2010-2019 Highsoft AS
* Author: Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/FullScreen.js';
|
// this will only run locally to test the connection to foursquare
import chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
import FoursquareConnection from './connect';
import config from 'config';
import nock from 'nock';
chai.should();
chai.use(chaiAsPromised);
const expect = chai.expect;
describ... |
// @flow
//
// Copyright (c) 2018 DDN. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
import highland from "highland";
import angular from "angular";
import { querySelector } from "./dom-utils.js";
import type { HighlandStreamT } from "hi... |
'use strict';
angular.module('wsapp')
.controller('KnowledgeAddController', function ($scope, knowledgeService, $location, $state) {
$scope.data={};
$scope.program = function(){
alertify.success("Test");
}
$scope.know = function(){
console.log($scop... |
(function () {
angular.module('app').controller('app.views.tenants.index', [
'$scope', '$uibModal', 'abp.services.app.tenant',
function ($scope, $uibModal, tenantService) {
var vm = this;
vm.tenants = [];
function getTenants() {
tenantService.ge... |
import Ember from 'ember';
export default Ember.View.extend({
classNames: 'weather-view dashboard-item'
});
|
// Dependencies
const queryValidation = require('./libs/query-validation.js');
const utils = require('./libs/utilities');
/**
* Create an instance of Behance
* @param {string} token - authentication for Behance API
* @public
*/
const Behance = function behance(token) {
this.clientId = token;
// Throw an error... |
angular.module('mean.system').controller('HeaderController', ['$scope', 'Global', function ($scope, Global) {
$scope.global = Global;
$scope.menu = [
{
"title": "buckets",
"link": "buckets"
},
{
"title": "users",
"link": "musers"
},
{
"title": "logs",
... |
var img = NotReact.createElement( 'img', { src: "foo.gif" });
|
/**
*
* Note Edit View
*
* noteEditView.js
* @author Kerri Shotts
* @version 3.0.0
*
* Copyright (c) 2013 Packt Publishing
* 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 r... |
import { createStore, compose, applyMiddleware } from "redux";
import { routerMiddleware } from "react-router-redux";
import createSagaMiddleware from "redux-saga";
import createLogger from "redux-logger";
import rootReducer from "../reducers";
import rootSaga from "../sagas/";
const configureStore = (history: any) =... |
search_result['4732']=["topic_0000000000000B84_events--.html","ConfigWrapper Events",""]; |
// @flow
import React, { Component } from 'react';
import { Grid, Row, Col, FormGroup, FormControl, HelpBlock, ControlLabel } from 'react-bootstrap';
export default class AdminFamilySearch extends Component {
render() {
return (
<div>
<Grid>
<Row className="show-grid">
<Col x... |
db.products.aggregate([
{
"$group": {
"_id": {
"maker": "$manufacturer"
}, "categories": { '$addToSet' : '$category' }
}
}
])
|
/*
* Name: TUTableImpl.js
* Module:
* Location: Norris/test/unit
* Date: 2015-05-25
* Version: v1.00
*
* History:
*
* ================================================================================
* Version Date Programmer Changes
* =========================================================================... |
'use strict';
var d3;
var datafile = "./data/imf_tot_gov_rev.json";
var country_init = "Guinea";
var citation_text = "International Monetary Fund";
var citation_url = "http://www.imf.org/external/data.htm";
var margin = {top: 20, right: 20, bottom: 30, left: 40},
// width = parseInt(d3.select('#chart').style('wi... |
// passwort-generator.js
// http://passwort-generieren.de
// (c) 2014 Jan Krause
(function() {
"use strict";
var root = this;
var PasswordGenerator = function(options) {
if(!options){
options = {};
options.el = document.body;
}
this.options = this.extend(op... |
////////////////////////////////////////////////
//
// Markdown to HTML converter demo (markdown widget)
//
//
// IoT Manager https://play.google.com/store/apps/details?id=ru.esp8266.iotmanager
//
// version : 1.0
// IoT Manager : 1.5.4 and above
//
////////////////////////////////////////////////
////////////////... |
import"./chunk-1fafdf15.js";import"./helpers.js";import"./chunk-953eb524.js";import{r as registerComponent,u as use}from"./chunk-cca88db8.js";import{T as Tooltip}from"./chunk-f6e15a82.js";export{T as BTooltip}from"./chunk-f6e15a82.js";var Plugin={install:function(o){registerComponent(o,Tooltip)}};use(Plugin);export def... |
// Raymond Ho
// 8/22/15
var bodyParser = require('body-parser'),
express = require('express'),
Datastore = require('nedb');
var db = new Datastore({
filename: __dirname + '/db.json',
autoload: true
});
var app = express();
app.use(bodyParser.urlencoded({
extended: false
}));
// This is to get all tags for ... |
module.exports = {
errorcodes: {
NoError: 0,
GeneralError: 1,
InvalidGame: 2,
Timeout: 3,
InvalidRequest: 4,
DoNotTrack: 5,
GeoIPDisabled: 100,
LeaderboardsDisabled: 200,
InvalidName: 201,
InvalidAuthKey: 202,
No... |
/**
* Charge.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: {
name: {
type: 'string'
},
scope: {
type: 'string'
},
}
};... |
import React from 'react';
import FormGroup from 'react-bootstrap/lib/FormGroup';
import FormControl from 'react-bootstrap/lib/FormControl';
import ControlLabel from 'react-bootstrap/lib/ControlLabel';
import HelpBlock from 'react-bootstrap/lib/HelpBlock';
class ValidatedTextBox extends React.Component {
constructo... |
var breadcrumbs=[['-1',"",""],['2',"SOLUTION-WIDE PROPERTIES Reference","topic_0000000000000C16.html"],['1984',"Tlece.Recruitment.Models.Company Namespace","topic_0000000000000699.html"],['1998',"CompanyDto Class","topic_00000000000006A8.html"],['2000',"Properties","topic_00000000000006A8_props--.html"],['2002',"Access... |
'use strict';
/**
* @ngdoc function
* @name networkAnalyzerApp.controller:ConnectionsCtrl
* @description
* # ConnectionsCtrl
* Controller of the networkAnalyzerApp
*/
angular.module('networkAnalyzerApp')
.controller('ConnectionsCtrl', function ($scope) {
$scope.awesomeThings = [
'HTML5 Boilerplate',
... |
/**
* @license Highcharts JS v9.2.0 (2021-08-18)
* @module highcharts/modules/broken-axis
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import BrokenAxis from '../../Core/Axis/BrokenAxis.js';
var G... |
const url = require('url');
const _ = require('lodash');
const fetch = require('node-fetch');
const PouchDB = require('pouchdb');
const logout = require('../../logout')();
PouchDB.plugin(require('pouchdb-adapter-node-websql'));
PouchDB.plugin(require('pouchdb-find'));
module.exports = {
createPouchDB: _.memoize(crea... |
define(function(require) {
'use strict';
var ColumnManagerView;
var _ = require('underscore');
var BaseView = require('oroui/js/app/views/base/view');
ColumnManagerView = BaseView.extend({
template: require('tpl!orodatagrid/templates/column-manager/column-manager.html'),
autoRender... |
export default () => <h1>Projects</h1>
|
var mongoose = require('mongoose');
var rooms = require('./rooms');
mongoose.connect('mongodb://localhost:27017/rpgd');
var RoomSchema = require('mongoose').model('Room').schema;
var Schema = mongoose.Schema;
var ObjectId = Schema.ObjectId;
// Setup Database scheme
var ProjectSchema = new Schema({
name: S... |
/*!
* DevExtreme (dx.messages.cs.js)
* Version: 20.2.7
* Build date: Thu Apr 22 2021
*
* Copyright (c) 2012 - 2021 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 {
SIGN_IN,
SIGN_IN_SUCCESS,
SIGN_IN_ERROR,
SIGN_OUT,
SIGN_OUT_SUCCESS,
USER_LOGGED,
USER_UNLOGGED
} from '../../constants/action-types';
const INITIAL_STATE = {
isUserSignedIn: false,
isSignOutInProgress: false,
isInProgress: null,
hasError: false,
errorMessage: '',
userIsLogged: null,... |
/* eslint-disable camelcase */
import {Response} from 'ember-cli-mirage';
import {isBlank} from 'ember-utils';
import $ from 'jquery';
export default function mockAuthentication(server) {
server.post('/authentication/token', function ({roles, users}, {requestBody}) {
let params = $.deparam(requestBody);
... |
define(["require", "exports", "./SignalConnection"], function (require, exports, SignalConnection_1) {
"use strict";
var Task = (function () {
function Task(fn) {
this.next = null;
this.fn = fn;
}
return Task;
}());
var SignalAbstract = (function () {
... |
function init(){
listar();
calcular();
}
function calcular(){
var tabla=$('#tbllistado').DataTable({
"paging": false,
"bInfo" : false,
"searching": false,
"bLengthChange": false //used to hide the property
});
/*FUNCION QUE DETECTA EL CLICK Y EL ID DE LA FILA*/
... |
/*!
* DevExtreme (dx.messages.es.js)
* Version: 17.2.17
* Build date: Fri Apr 23 2021
*
* Copyright (c) 2012 - 2021 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 ... |
/*!
* jQuery JavaScript Library v3.2.1
* https://jquery.com/
*
* Includes Sizzle.js
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2017-03-20T18:59Z
*/
( function( global, factory ) {
"use strict";
... |
import { e as error, E as EnhanceCtx, T as TurnOrder, i as info, S as Stage, a as SetActivePlayersEvent, F as FnWrap, b as SetActivePlayers, I as InitTurnOrderState, U as UpdateTurnOrderState, c as UpdateActivePlayersOnceEmpty, g as gameEvent, d as STRIP_TRANSIENTS, G as GAME_EVENT, f as Enhance, M as MAKE_MOVE, h as I... |
"use strict";
var utils = require('./utils.js');
var nChooseK = utils.nChooseK;
var tic = utils.tic;
var toc = utils.toc;
var movesDef = {
"U" : [[0,0,0,0, 0,0,0,0], [1,2,3,0, 4,5,6,7], [0,0,0,0, 0,0,0,0, 0,0,0,0], [1,2,3,0, 4,5,6,7, 8,9,10,11], [0,1,2,3,4,5]],
"U2": [[0,0,0,0, 0,0,0,0], [2,3,0,1, 4,5,6,7]... |
/**
* Module dependencies.
*/
var express = require('express');
var routes = require('./routes');
var user = require('./routes/user');
var http = require('http');
var path = require('path');
var app = express();
// all environments
app.set('port', process.env.PORT || 3000);
app.set('views', path.join(__dirname, 'v... |
import Ember from "ember";
export default Ember.Object.extend({
targetRoute: null,
params: null,
isSingleResource: Ember.computed.match(
'targetRoute',
/(?:^(?!.*s\b))(?:^(?!index)).*$/
),
hasParams: Ember.computed.bool('params')
});
|
/*! UIkit 3.5.15 | https://www.getuikit.com | (c) 2014 - 2020 YOOtheme | MIT License */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) :
typeof define === 'function' && define.amd ? define('uikitcountdown', ['uikit-ut... |
!function(root, factory) {
"object" == typeof exports && "object" == typeof module ? module.exports = factory() : "function" == typeof define && define.amd ? define("postRobot", [], factory) : "object" == typeof exports ? exports.postRobot = factory() : root.postRobot = factory();
}("undefined" != typeof self ? sel... |
(() => {
// 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... |
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) :
typeof define === 'function' && define.amd ? define(['jquery'], factory) :
(global = global || self, factory(global.jQuery));
}(this, (function ($) { 'use strict';
$ = $ && $.hasOwnProperty('de... |
typeof window !== "undefined" &&
(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["Hls"] = f... |
/*!
* DevExtreme (dx.messages.es.js)
* Version: 22.1.0 (build 21357-0315)
* Build date: Thu Dec 23 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
"use strict";
! function(root, factory) {
if ("function" ... |
/**
* @license Highstock JS v8.0.3 (2020-03-06)
*
* Indicator series type for Highstock
*
* (c) 2010-2019 Wojciech Chmiel
*
* License: www.highcharts.com/license
*/
'use strict';
(function (factory) {
if (typeof module === 'object' && module.exports) {
factory['default'] = factory;
module.ex... |
hljs.registerLanguage("handlebars",(()=>{"use strict";function e(...e){
return e.map((e=>{return(n=e)?"string"==typeof n?n:n.source:null;var n
})).join("")}return n=>{const a={
"builtin-name":"action bindattr collection component concat debugger each each-in get hash if in input link-to loc log lookup mut outlet partia... |
/**
* vue-meta v2.2.0
* (c) 2019
* - Declan de Wet
* - Sébastien Chopin (@Atinux)
* - All the amazing contributors
* @license MIT
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(... |
version https://git-lfs.github.com/spec/v1
oid sha256:eb830b3ada371c6f6af6bd512f864699a8123c5922f0376292ece99b8fc9e602
size 105460
|
import _ from 'lodash'
import URLJoin from 'url-join'
import request from 'request'
import bitcore from 'bitcore-lib'
import config from './config'
import logger from './logger'
/**
* @typedef {Object} Insight~UnspentObject
* @property {string} address
* @property {string} txId
* @property {number} outputIndex
*... |
(function(exports) {
"use strict";
exports.dontIgnoreComposerLockFile = function(grunt, init, done) {
grunt.verbose.write("Removing composer.lock from .gitignore.");
var content = grunt.file.read('build/.gitignore').replace(/composer.lock[\r\n]/m, '');
grunt.file.write('build/.gitignore', content);
... |
import core from 'core-js';
import * as LogManager from 'aurelia-logging';
import {Metadata} from 'aurelia-metadata';
var logger = LogManager.getLogger('aurelia');
function loadPlugin(aurelia, loader, info){
logger.debug(`Loading plugin ${info.moduleId}.`);
aurelia.currentPluginId = info.moduleId;
return loade... |
/*
* Copyright (C) 2007 Apple Inc. All rights reserved.
* Copyright (C) 2009 Joseph Pecoraro
*
* 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 copyri... |
var searchData=
[
['uniquecount',['UniqueCount',['../class_standard_trie_1_1cs_1_1_prefix_trie.html#a82986e28b3191486a98cf874a1ae1b06',1,'StandardTrie::cs::PrefixTrie']]]
];
|
/*
* RegExp instance properties.
*
* RegExp instance 'source' property must behave as specified in E5 Section
* 15.10.4.1 paragraphcs 5 and 6. Note: there is no one required form of source.
* Tests are for the source form that we want.
*/
/*
* FIXME: when does '\' in source need to be escaped?
*/
/*
* ... |
version https://git-lfs.github.com/spec/v1
oid sha256:ac9e4d0cf97f46d8fcb1545ff017272b57a2c9a45f74cc1e57792311dd060f6e
size 603
|
import {HttpClientConfiguration} from './http-client-configuration';
import {RequestInit, Interceptor} from './interfaces';
import 'core-js';
/**
* An HTTP client based on the Fetch API.
*
* @constructor
*/
export class HttpClient {
activeRequestCount: number = 0;
isRequesting: boolean = false;
interceptors: I... |
export * from './aurelia-pal-worker'; |
const validate = (value, options) => {
if (Array.isArray(value)) {
return value.every(val => validate(val, options));
}
// eslint-disable-next-line
return ! options.filter(option => option == value).length;
};
export default validate;
|
version https://git-lfs.github.com/spec/v1
oid sha256:8b057c8d60d76759e6a75285bd1fcea8ba4acea65ffe3b8e5ff4a1937cb3dacd
size 2530
|
import createSvgIcon from './utils/createSvgIcon';
import { jsx as _jsx } from "react/jsx-runtime";
export default createSvgIcon([/*#__PURE__*/_jsx("path", {
d: "m8 6.83-4 4V18h3v-3h2v3h3v-7.17l-4-4zM9 13H7v-2h2v2z",
opacity: ".3"
}, "0"), /*#__PURE__*/_jsx("path", {
d: "m8 4-6 6v10h12V10L8 4zm4 14H9v-3H7v3H4v-7.... |
import Binding from 'virtualdom/items/Element/Binding/Binding';
import handleDomEvent from 'virtualdom/items/Element/Binding/shared/handleDomEvent';
var CheckboxBinding = Binding.extend({
name: 'checked',
render: function () {
var node = this.element.node;
node.addEventListener( 'change', handleDomEvent, false... |
var fs = require('fs');
var path = require('path');
var md_parser = require('./md_parser');
var $ = require('./helper');
var rootDir = path.join(__dirname, '../') + path.sep;
var assetsDir = path.join(rootDir, 'assets') + path.sep;
var templateDir = path.join(rootDir, 'template') + path.sep;
//1. 只导出文件nodeppt generat... |
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import { AppRegistry } from 'react-native';
import Navigation from './app/config/entry';
export default class RNJueJin extends Component {
render() {
return (
<Navigation />
... |
'use strict';
module.exports = ({ strapi }) => ({
getWelcomeMessage() {
return 'Welcome to Strapi 🚀';
},
});
|
/* */
(function(Buffer) {
var crypto = require("crypto");
var sign = require("./sign");
var m = new Buffer('AF2BDBE1AA9B6EC1E2ADE1D694F41FC71A831D0268E9891562113D8A62ADD1BF', 'hex');
var xbuf = new Buffer('009A4D6792295A7F730FC3F2B49CBC0F62E862272F', 'hex');
var bn = require("bn.js");
var x = new bn(xbuf);... |
;(function () {
var defaults = {
"wrap": "this",//下拉列表用什么包裹,"this"为按钮自身,主流的插件放在"body"中
"data": null,
"formName": "",
"zIndex": 999
};
function Dropdown(opt) {
var $this = $(this),
id = $this.attr("id"),
height = $this.outerHeight(),
... |
const findIndex = require('lodash/findIndex');
module.exports = (req, res, next) => {
const pageData = req.pageData || {};
const siblings = pageData.meta ? pageData.meta.siblings : [];
const pagination = pageData.pagination || {};
if (pageData && pageData.guide && siblings) {
const currentIndex = findInde... |
var cheerio = require('cheerio')
, request = require('request')
, url = 'http://theroyalamerican.com/schedule/'
, shows = []
, months = ['January',
'February',
'March',
'April',
'May',
'June',
'July',
'Augus... |
<div ng-include="'components/navbar/navbar.html'"></div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Delete A ${model["name"]} :</h1>
</div>
</div>
</div>
|
var vows = require('vows'),
assert = require('assert'),
fs = require('fs'),
jscheckstyle = require('../lib/jscheckstyle');
function given(inputFile, expectedOutput) {
var context = {};
context['(' + inputFile + ') '] = {
topic: function() {
return jscheckstyle.analyse('/pants/fi... |
version https://git-lfs.github.com/spec/v1
oid sha256:5b06c8bb34dea0d08a98bb98d8fc80c43e4c6e36f6051a72b41fd447afd37cfc
size 1253
|
Hilary.scope('node-example').register({
name: 'breweriesController',
dependencies: ['newGidgetModule', 'GidgetRoute', 'viewEngine'],
factory: function (self, GidgetRoute, viewEngine) {
'use strict';
self.get['/breweries/:brewery'] = new GidgetRoute({
routeHandler: function (err,... |
/**
* utils
*
* @namespace mix.util
*
* @author Yang,junlong at 2016-07-28 20:27:54 build.
* @version $Id$
*/
var fs = require('fs');
var url = require('url');
var pth = require('path');
var util = require('util');
//var iconv = require('iconv-lite');
var crypto = require('crypto');
var PLATFORM = process.pl... |
/**
* Created by OTHREE on 7/17/2016.
*/
function my_special_notification_callback(data) {
var badge = document.getElementById('live_notify_badge2');
if (badge) {
badge.innerHTML = data.unread_count;
}
var template = "<li> <a href='/user/dashboard/notifications/' id='{{id}}'> <i clas... |
var crypto = require('crypto')
var multimatch = require('multimatch')
var path = require('path')
var KEY = 'metalsmith'
module.exports = plugin
function plugin(options) {
return function (files, metalsmith, done) {
var metadata = metalsmith.metadata()
metadata.fingerprint = (metadata.fingerprint... |
import {
ActionHandler,
Evented,
FrameworkObject,
deprecateUnderscoreActions
} from 'ember-runtime';
import { initViewElement } from '../system/utils';
import { cloneStates, states } from './states';
/**
`Ember.CoreView` is an abstract class that exists to give view-like behavior
to both Ember's main view ... |
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon"));
var _jsxRuntime = require("react/jsx-runtime")... |
import m from 'mithril';
import _ from 'underscore';
import h from '../h';
const adminItem = {
oninit: function(vnode) {
vnode.state = {
displayDetailBox: h.toggleProp(false, true)
};
},
view: function({state, attrs}) {
const item = attrs.item,
listWrapper = ... |
module.exports={A:{A:{"1":"E B A","2":"K C G WB"},B:{"1":"D u Y I M H"},C:{"1":"0 1 2 3 5 6 7 UB z F J K C G E B A D u Y I M H N O P Q R S T U V W X w Z a b c d e f L h i j k l m n o p q r s t y v g SB RB"},D:{"1":"0 1 2 3 5 6 7 F J K C G E B A D u Y I M H N O P Q R S T U V W X w Z a b c d e f L h i j k l m n o p q r s... |
'use strict';
var React = require('react');
var SvgIcon = require('../../svg-icon');
var NavigationChevronRight = React.createClass({
displayName: 'NavigationChevronRight',
render: function render() {
return React.createElement(
SvgIcon,
this.props,
React.createElement('path', { d: 'M10 6L8... |
version https://git-lfs.github.com/spec/v1
oid sha256:7191d4054034f882d0333e067f484abf20e9d176d5c0297c8824f5e0cafc8e12
size 2389
|
/* Chinese initialisation for the jQuery UI date picker plugin. */
/* Written by Ressol ([email protected]). */
(function (factory) {
// AMD. Register as an anonymous module.
module.exports = factory(require('../datepicker'));;
}(function (datepicker) {
datepicker.regional['zh-TW'] = {
closeTex... |
/**
* Copyright 2015 Telerik AD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... |
/* ===================================================
* bootstrap-transition.js v2.0.1
* http://twitter.github.com/bootstrap/javascript.html#transitions
* ===================================================
* Copyright 2012 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you ... |
'use strict';
exports = module.exports = function(service) {
return {
message: function(user) {
return '<p>' + 'Welcome to ' + service + ' ' + user.fullname + '!' + '</p>' +
'<p>' + 'You have now linked your Google+ account to this service' + '</p>';
},
title: function() {
return 'You linked your Goog... |
/**
* @typedef {object} SalesAPI
* @property {Activities} Activities
**/
function SalesAPI(options) {
const _Activities = require('./Activities');
return {
Activities: new _Activities(options),
};
}
module.exports = SalesAPI;
|
/*
Input Mask plugin extensions
http://github.com/RobinHerbots/jquery.inputmask
Copyright (c) 2010 - 2014 Robin Herbots
Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
Version: 2.5.0
Optional extensions on the jquery.inputmask base
*/
(function ($) {
//number aliases
$.exten... |
(function () {
function RunningInNode () {
return(
(typeof require) == "function"
&&
(typeof exports) == "object"
&&
(typeof module) == "object"
&&
(typeof __filename) == "string"
&&
(typeof __dirname) == "string"
);
}
if (!RunningInNode()) {
if (!this.Tautologistics)
this.Ta... |
import Ember from 'ember';
import DS from 'ember-data';
const secondsInDay = 86400;
const days = [
'monday',
'tuesday',
'wednesday',
'thursday',
'friday',
'saturday',
'sunday',
];
export default DS.Model.extend(Ember.Copyable, {
temp: DS.attr('number', {
defaultValue: 18,
}),
// Seconds since... |
var sheet = cssx();
(function () {
var _1 = {},
_2 = {},
_3 = {};
_2['color'] = '#000';
_3['color'] = '#F00';
_1['body'] = _2;
_1['body.error'] = _3;
return _1;
}.apply(this))
;
sheet.add((function () {
var _5 = {},
_6 = {},
_7 = {};
_6['font-size'] = '10px';
_6['line-height'... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.