text stringlengths 2 1.04M |
|---|
import {src, dest, series} from 'gulp';
function copyAssets() {
return src('server/**/*.{tpl,json}').pipe(dest('dist'));
}
export default series(copyAssets); |
export { Html } from './Html.js';
export { Loader } from './Loader.js';
export { Billboard } from '../core/Billboard.js';
export { Cloud } from '../core/Cloud.js';
export { QuadraticBezierLine } from '../core/QuadraticBezierLine.js';
export { CubicBezierLine } from '../core/CubicBezierLine.js';
export { Line } from '..... |
import {expect} from 'chai'
import {integration} from 'ember-test-utils/test-support/setup-component-test'
import hbs from 'htmlbars-inline-precompile'
import {describe, it} from 'mocha'
const test = integration('frost-select-outlet')
describe(test.label, function () {
test.setup()
it('renders', function () {
... |
import React from 'react';
import { mount } from 'enzyme';
import { MoreOutlined } from '@gio-design/icons';
import TreeSelect from '../index';
import focusTest from '../../../tests/focusTest';
const treeData = [
{
title: 'parent 1',
key: '0-1',
value: '0-1',
children: [
{
title: 'paren... |
JSONEditor.defaults.editors.signature = JSONEditor.defaults.editors.string.extend({
// This editor is using the signature pad editor from https://github.com/szimek/signature_pad
// Credits for the pad itself go to https://github.com/szimek
build: function() {
var self = this, i;
if(!this.options.compac... |
/*!
* tui-image-editor.min.js
* @version 3.9.0
* @author NHN FE Development Lab <dl_javascript@nhn.com>
* @license MIT
*/
/*!
* @copyright Copyright (c) 2017 IcoMoon.io
* @license Licensed under MIT license
* See https://github.com/Keyamoon/svgxuse
* @version 1.2.6
*/ |
const got = require('got');
module.exports = async helper => {
const { TQ_GITHUB_USERNAME } = helper.env;
try {
const response = await got(
`https://api.github.com/repos/${TQ_GITHUB_USERNAME}/open-pixel-art`,
{
throwHttpErrors: false,
}
);
if (response.statusCode === 200) {
... |
'use strict';
var assert = require('assert');
var errors = require('common-errors');
var merge = require('merge');
var winston = require('winston');
var upperCaseFirst = require('upper-case-first');
var camelCase = require('camel-case');
module.exports = function setup(options, imports, register) {
var loggerTrans... |
const { get, set } = require("lodash");
module.exports = (element, files) => {
[setBackground, setImage, setCustomVideo, setCarouselImages].forEach(fn => fn(element, files));
};
function setBackground(element, files) {
const src = get(element, "data.settings.background.image.src");
if (src && src.startsW... |
var Bleno = require('@abandonware/bleno');
var DEBUG = false;
const FLAG_HASCRANKDATA = (1<<1);
class CscMeasurementCharacteristic extends Bleno.Characteristic {
constructor() {
super({
uuid: '2A5B',
value: null,
properties: ['notify'],
descriptors: [
new Bleno.Descriptor({
u... |
export { default } from './VisibleGroupsTable'; |
import React from 'react'
import {
CBadge,
CHeaderNav,
CHeaderNavItem,
CHeaderNavLink,
CCard,
CCardBody,
CCardHeader,
CCol,
CDataTable,
CSwitch,
CRow
} from '@coreui/react'
import { DocsLink } from 'src/reusable'
const CreditNote = () => {
return (
<>
<CRow>
... |
import { createStore, combineReducers } from 'redux';
import mapReducer from './mapReducer';
import characterReducer from './characterReducer';
import oldOnesReducer from './oldOnesReducer';
import mythosReducer from './mythosReducer';
const combinedReducer = combineReducers({
mapReducer,
characterReducer,
oldOn... |
export const extractNamesInfo = (imgwithExt) => {
const img = imgwithExt.substr(0, imgwithExt.lastIndexOf('.'));
const parts = img.split(',');
const leftParts = parts[0].split(' ');
const rightParts = parts[1].trim().split(' ');
const year = leftParts[0].trim().toUpperCase();
cons... |
/**
* Modal creates popup which on mobile layout fills the entire visible page.
*
* Example:
* <Parent>
* <Modal id="UniqueIdForThisModal" isOpen={this.state.modalIsOpen} onClose={handleClose}>
* <FormX />
* </Modal>
* </Parent>
*/
import React, { Component } from 'react';
import ReactDOM from 'react-d... |
/*!
Scroller 1.4.4
©2011-2018 SpryMedia Ltd - datatables.net/license
*/
(function(e){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(g){return e(g,window,document)}):"object"===typeof exports?module.exports=function(g,j){g||(g=window);if(!j||!j.fn.dataTable)j=require("datatables.net... |
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const todoListSchema = new Schema({
text: String,
completed: {type: Boolean, default: false},
});
module.exports = mongoose.model('todolist', todoListSchema); |
var express = require('express');
var bodyParser = require('body-parser');
var app = express();
var application_root = __dirname;
//Note that in version 4 of express, express.bodyParser() was
//deprecated in favor of a separate 'body-parser' module.
app.use(bodyParser.urlencoded({ extended: true }));
//app.use(... |
const Reflux = require('reflux');
const StateMixin = require('reflux-state-mixin');
/**
* The default description.
*/
const DEFAULT_DESCRIPTION = 'Topology type not yet discovered.';
/**
* Deployment State store.
*/
const DeploymentStateStore = Reflux.createStore({
/**
* adds a state to the store, similar to... |
// @tensorflow/tfjs-converter Copyright 2018 Google
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tensorflow/tfjs-core')) :
typeof define === 'function' && define.amd ? define(['exports', '@tensorflow/tfjs-core'], factory) :
(factory(... |
var module = angular.mock.module
, inject = angular.mock.inject;
MockFirebase.DEFAULT_DATA = {
};
MockFirebaseSimpleLogin.DEFAULT_FAIL_WHEN = function(provider, options, user) {
var code, message;
if( ['password', 'persona', 'anonymous', 'twitter', 'facebook', 'google', 'github'].indexOf(provider) === -1 ) {
... |
import { StyleSheet } from "react-native";
const styles = StyleSheet.create({
containerStyle: {
flex: 1,
flexDirection: 'column',
backgroundColor: '#fff',
justifyContent: 'flex-start'
}
});
export default styles;
//# sourceMappingURL=styles.js.map |
// organization-unit-test.js
//
// Test the organization module
//
// Copyright 2012, E14N https://e14n.com/
//
// 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.or... |
$(function(){
'use strict'
// This template is mobile first so active menu in navbar
// has submenu displayed by default but not in desktop
// so the code below will hide the active menu if it's in desktop
if(window.matchMedia('(min-width: 992px)').matches) {
$('.az-navbar .active').removeC... |
import "antd/es/row/style";
import _Row from "antd/es/row";
import "antd/es/col/style";
import _Col from "antd/es/col";
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { r... |
import { targetMap } from './reactive';
import { EMPTY_OBJ, extend } from '@vue/shared';
export const effectStack = [];
export const ITERATE_KEY = Symbol('iterate');
export function isEffect(fn) {
return fn != null && fn._isEffect === true;
}
export function effect(fn, options = EMPTY_OBJ) {
if (isEffect(fn)) {... |
const Base = require('./Base');
class Service extends Base {
constructor(address, replyAddress, accessToken, body) {
super('send');
this.address = address;
this.replyAddress = replyAddress;
this.body = {
accessToken,
...body
};
}
}
module.exports = Service; |
import { shallowMount } from '@vue/test-utils';
import 'src/module/sw-sales-channel/component/sw-sales-channel-google-introduction';
import 'src/app/component/base/sw-container';
describe('module/sw-sales-channel/component/sw-sales-channel-google-introduction', () => {
const CreateSalesChannelGoogleIntroductionVie... |
import * as React from 'react';
import createSvgIcon from './utils/createSvgIcon';
import { jsx as _jsx } from "react/jsx-runtime";
export default createSvgIcon( /*#__PURE__*/_jsx("path", {
d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-... |
import React from 'react';
import createSvgIcon from './utils/createSvgIcon';
export default createSvgIcon(
<React.Fragment><path d="M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-4.2-5.78v1.75l3.2-2.99L12.8 9v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5... |
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
*/
'... |
const {User} = require('../dbConfig'); |
integration.meta = {
'sectionID' : '129001',
'siteName' : 'Melbourne United - Tablet - ( AU )',
'platform' : 'tablet'
};
integration.testParams = {
};
integration.flaggedTests = [];
integration.params = {
'mf_siteId' : '1045576',
'plr_PageAlignment' : 'center',
'plr_ContentW': 1180,
'plr_... |
module.exports = {
apps: [{
name: 'fv-core',
script: './fv-core/Server.js',
env: {
"NODE_ENV": "local"
},
env_dev: {
"NODE_ENV": "dev"
},
env_production: {
"NODE_ENV": "prod"
}
}]
}; |
// 根据选项动态显示内容的示例代码
$(document).ready(function () {
on_project_status();
});
function on_project_status() {
var close_on = $('#id_project_status').val()
if (close_on !== '已结项') {
$('.field-close_memo').hide();
}
$("#id_project_status").change(function (e) {
var selected = e.target... |
'use strict';
const HTTP_REQUEST_STATE_DONE = 4;
const HTTP_STATUS_OK = 200;
var noteTitle = document.querySelector('#noteTitle');
var noteText = document.querySelector('#noteText');
function postNote() {
if (noteTitle.value.length > 256) {
window.alert("Title too long.");
return;
}
if (noteTitle.valu... |
import { connect } from 'react-redux';
import { reduxForm } from 'redux-form';
import EotcBuySell from './EotcBuySellComponent';
import {
buyValue,
orderTypes
} from '../../../../constants/sendOrder/orderEntryFormConstants';
import { MODAL_TYPES, openModal } from '../../../../redux/actions/modalActions';
import { B... |
var gulp = require('gulp');
var postcss = require('gulp-postcss');
var lazysprite = require('./index.js');
var mocha = require('gulp-mocha');
var sourcemaps = require('gulp-sourcemaps');
var files = ['index.js'];
var watchFiles = ['index.js', 'gulpfile.js', 'examples/src/**/**', 'test/src/**/**'];
gulp.task('lint', f... |
export default {
data() {
return {
testData: ''
}
},
mounted() {
document.querySelector('.button').addEventListener('mousemove', function (e) {
const x = e.pageX - this.offsetLeft
const y = e.pageY - this.offsetTop
this.style.setProperty('--x', `${ x }px`)
this.style.se... |
"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Refl... |
/*! 1.17.1 | © Algolia | github.com/algolia/places */
(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'... |
const controls = Array.prototype.reduce.call(
document.querySelectorAll("[id]"),
(ctrls, elem) => {
ctrls[elem.id] = elem;
return ctrls;
},
{}
);
export const JITSI_HOST = "beta.meet.jit.si";
export const JVB_HOST = JITSI_HOST;
export const JVB_MUC = "conference." + JITSI_HOST;
class User {
construc... |
module.exports={A:{A:{"2":"mB","4":"A B","8":"O F H E"},B:{"1":"J K L KB P M R S T U ZB","4":"C N D I"},C:{"4":"0 1 2 3 4 5 6 7 8 9 G Z O F H E A B C N D I J K L a b c d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB QB HB IB JB Y LB MB NB OB GB X W WB RB SB TB UB VB KB P M PB R S T","8":"fB cB lB tB"},D... |
// Functions to save and load the map
"use strict";
function quickLoad() {
ldb.get("lastMap", blob => {
if (blob) {
loadMapPrompt(blob);
} else {
tip("No map stored. Save map to storage first", true, "error", 2000);
ERROR && console.error("No map stored");
}
});
}
function loadMapPro... |
var fs = require('fs');
var path = require('path');
var parseDatabaseUrl = require('parse-database-url');
var dbmUtil = require('./util');
var setCurrent = exports.setCurrent = function (env) {
env = dbmUtil.isArray(env) ? env : [env];
env.forEach(function (current) {
if (dbmUtil.isString(current) && this[curr... |
import { message } from "antd";
import moment from "moment";
import "moment/locale/zh-cn";
import $i18n from "utils/$i18n";
import zh from "locales/zh";
moment.locale("zh-cn");
message.config({
duration: 2,
maxCount: 1
});
$i18n.registerLanguagePack("zh", zh);
$i18n.setLocale("zh"); |
const id = document.querySelector('#id').value;
const editForm = async function(event) {
event.preventDefault();
const name = document.querySelector('#name').value;
const category = document.querySelector('#category').value;
const description = document.querySelector('#description').value;
const event_date = d... |
import selectedKegReducer from '../../reducers/selected-keg-reducer';
import * as a from './../../actions';
describe("selectedKegReducer", () => {
const testKeg = {
name: 'Barleybrew Scalder',
brand: 'Barleybrew Brewery',
price: 10,
alcohol: 30,
pints: 124,
id: 1,
}
test('Should return de... |
export var problematic = {
abalone: 4,
abare: 3,
abbruzzese: 4,
abed: 2,
aborigine: 5,
abruzzese: 4,
acreage: 3,
adame: 3,
adieu: 2,
adobe: 3,
anemone: 4,
anyone: 3,
apache: 3,
aphrodite: 4,
apostrophe: 4,
ariadne: 4,
cafe: 2,
calliope: 4,
catastrophe: 4,
chile: 2,
chloe: 2,
... |
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
mode: 'development',
resolve: {
extensions: ['.js', '.jsx']
},
module: {
rules: [
{
test: /\.jsx?$/,
loader: 'babel-loader'
}
]
},
plugins: ... |
"use strict";
{
C3.Behaviors.MyCompany_MyBehavior.Cnds =
{
IsMoving()
{
return false; // placeholder
}
};
} |
/*
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
//>>built
define("dojo/selector/_loader",["../has","require"],function(_1,_2){
"use strict";
var _3=document.createElement("... |
const path = require(`path`);
const { createFilePath } = require(`gatsby-source-filesystem`);
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions;
const blogPost = path.resolve(`./src/templates/blog-post.js`);
const result = await graphql(
`
{
allMarkdownRemark(
... |
const Material = require('@/material/material');
const material = new Material({ type: 'image', src: 'path', ss: '10', to: '20' });
describe('material/material', () => {
test('type and path ', () => {
expect(material.path).toEqual('path');
expect(material.type).toEqual('image');
});
test('getSourceRect: ... |
'use strict'
const isNode = require('detect-node')
const Multipart = require('multipart-stream')
const flatmap = require('flatmap')
function headers (file) {
const name = file.path || ''
const header = {
'Content-Disposition': `file; filename="${name}"`
}
if (file.dir || !file.content) {
header['Cont... |
// Generate README.md file based on JSON data
const fs = require('fs');
const questions = require('./questions.json');
function sortQuestions (a, b) {
// case insensitive sort
const qA = a.question.toUpperCase();
const qB = b.question.toUpperCase();
if (qA < qB) {
return -1;
}
if (qA > qB) {
retur... |
var plugins = [{
plugin: require('/Users/lev/dev/gatsbypractice-lut-contentful/gatsby-browser.js'),
options: {"plugins":[]},
}]
// During bootstrap, we write requires at top of this file which looks
// basically like:
// var plugins = [
// require('/path/to/plugin1/gatsby-browser.js'),
// require('/... |
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = createStyles;
var _styles = require("@material-ui/styles");
// import warning from 'warning';
// let warnOnce = false;
// To remove in v5
function createStyles(styles) {
// warning(
// warnOnce,
// [
// '... |
/* @flow */
import {join} from 'path';
import {format} from 'util';
import * as blessed from 'blessed'
import {readFile, writeFile} from '../utils/async';
import {
mainLocOfError,
prettyPrintError,
mergedMessagesOfError,
prettyPrintMessageOfError,
} from '../flowResult';
import getPathToLoc from './getPathTo... |
var myCalendar = new Calendar({
id: 'calendar',
nowDate: new Date(),
calendarEvents: new ArrayEx([
{ "description": "Event 1", "startDateTime": "2021-03-19 01:00", "endDateTime": "2021-03-19 01:20" },
{ "description": "Event 2", "startDateTime": "2021-03-19 01:00", "endDateTime": "2021-03-19... |
function ArduinoFirmwareViewModel() {
var self = this;
var numberOfSteps = 6;
self.stepsDone = ko.observable(0);
self.selectedFile = ko.observable();
self.uploadPercentage = ko.observable(0);
self.uploaded = ko.observable(false);
self.unpacking = ko.observable(false);
self.unpacked = ko.observable(false... |
import { CSSTransition as ReactCSSTransition } from 'react-transition-group'
import { useRef, useEffect, useContext } from 'react'
const TransitionContext = React.createContext({
parent: {},
})
function useIsInitialRender() {
const isInitialRender = useRef(true)
useEffect(() => {
isInitialRender.current = f... |
import React, { useEffect, useRef } from 'react';
import { Link as RouterLink, useLocation } from 'react-router-dom';
// material-ui
import { useTheme } from '@material-ui/core/styles';
import { Card, Button, Box, Divider, Grid, Stack, Typography, useMediaQuery, CardMedia } from '@material-ui/core';
// project import... |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LocationsForMove = void 0;
var tslib_1 = require("tslib");
var base_rest_resource_1 = tslib_1.__importDefault(require("../../base-rest-resource"));
var base_types_1 = require("../../base-types");
var LocationsForMove = /** @class */ (f... |
'use strict';
module.exports = {
'extends': 'octane'
}; |
function matchOne(x, y, z) {
// N 数字OK; POS 位置OK; NP: 都OK
const ruleList = [
{ v: 682, N: 1, NP: 1, POS: 1 },
{ v: 614, N: 1, NP: 0, POS: 0 },
{ v: 206, N: 2, NP: 0, POS: 0 },
{ v: 738, N: 0, NP: 0, POS: 0 },
{ v: 870, N: 1, NP: 0, POS: 0 },
];
const res = { passCnt: 0 };
const testNumList... |
const Engine = Matter.Engine;
const World = Matter.World;
const Bodies = Matter.Bodies;
const Constraint = Matter.Constraint;
var engine, world;
var canvas;
var palyer, playerBase, playerArcher;
var baseimage;
function preload() {
backgroundImg = loadImage("./assets/background.png");
baseimage = loadImage("./asse... |
const { Model, DataTypes } = require('sequelize');
const sequelize = require('../config/connection');
class MealDiet extends Model {}
MealDiet.init(
// TABLE COLUMN DEFINITIONS
{
id: {
type: DataTypes.INTEGER,
allowNull: false,
primaryKey: true,
autoIncrement: true
},
meal_id: ... |
const { resolve } = require('path')
const { config, environment, Environment } = require('@rails/webpacker')
const WebpackerPwa = require('webpacker-pwa')
new WebpackerPwa(config, environment)
module.exports = environment |
/*!
* Bootstrap v4.3.1 (https://themesberg.com/)
* Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'u... |
//Datatables server side
$(document).ready( function () {
var url = '/feedback/subscribercontroller/ajax_list';
var table = $('#datatable-feedbacksubscribe').DataTable({
"processing": true,
"serverSide": true,
"order": [],
"ajax": {
"url": BASE_URL + url,
"type": "PO... |
(this.webpackJsonp=this.webpackJsonp||[]).push([[118],{936:function(t,n,e){"use strict";e.r(n);var s=e(352);document.addEventListener("DOMContentLoaded",s.a)},937:function(t,n,e){e(31),e(57),t.exports=e(936)}},[[937,0,1,2,9]]]);
//# sourceMappingURL=pages.projects.pipeline_schedules.new.e3594557.chunk.js.map |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
/*
Setup: Enter your storage account name and shared key in main()
*/
const { BlobServiceClient, StorageSharedKeyCredential } = require("@azure/storage-blob");
// Load the .env file if it exists
require("dotenv").config();
async function ma... |
import { StyleSheet } from 'react-native'
import colors from '../colors.style'
export default StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#f5f8fa'
},
text: {
justifyContent: 'flex-start',
color: ... |
/**
* Unit tests for userSearch.js
*/
/*global QUnit */
/*global $ */
/*global sinon */
/*global jQuery */
/*global userSearch */
/*global setTimeout */
var $fixture;
QUnit.module('UserSearch tests', {
beforeEach: function () {
'use strict';
$fixture = $('#qunit-fixture');
$fixture.appen... |
// Copyright 2009 the Sputnik authors. All rights reserved.
/**
* If y is -Infinity and x !== y, return false
*
* @path ch11/11.8/11.8.3/S11.8.3_A4.8.js
* @description x is number primitive
*/
//CHECK#1
if ((0 <= Number.NEGATIVE_INFINITY) !== false) {
$ERROR('#1: (0 <= -Infinity) === false');
}
//CHECK#2
if (... |
$(function() {
'use strict';
$('.product-details .nav-tabs .nav-link').click(function() {
$(this).addClass('selected').siblings().removeClass('selected');
$('.tab-details').hide();
$('.' + $(this).data('class')).fadeIn(100);
});
$('.go-to-description').click(function() {
... |
(function(){
'use strict';
function changeLang(){
var lang = this.value;
var canonical = this.dataset.canonical;
if (lang === 'zh-cn') lang = '';
if (lang) lang += '/';
location.href = '/' + lang + canonical;
}
document.getElementById('lang-select').addEventListener('change', changeLang);... |
import { mapStateToProps } from './index';
import { EXPORT_VARBOOK } from 'js/actions/constants';
describe('mapStateToProps', () => {
it('should return right props', () => {
const input = {
app: {
secondLang: 'en',
lg1: 'fr',
lg2: 'en',
},
operationsOperationsCurrent: {
id: '1',
},
re... |
import React, {Component} from "react";
export default class ListItem extends Component {
liKeyEnter = (event) => {
var code = event.keyCode || event.which;
if(code === 13) {
this.props.listItemClick(this.props.venue);
}
}
render() {
return (
... |
import AdminCell from 'src/components/Admin/AdminCell'
const AdminPage = ({ id }) => {
return <AdminCell id={id} />
}
export default AdminPage |
/**
* Created by stevenwestermire on 8/6/17.
*/
import {GAME_WINDOW_VIEW} from '../actions/game_window_action';
import {VIEW_STORE} from '../DATA_CONSTANTS';
// TODO: Think about creating a separate file for this?.... OR maybe as views are created, store constants
// in those view files? But i think the flow might b... |
var classgts_1_1internal_1_1_ticket_queue_m_p_m_c =
[
[ "allocator_type", "classgts_1_1internal_1_1_ticket_queue_m_p_m_c.html#a7638018968fc17add0f77f9089b8b883", null ],
[ "mutex_type", "classgts_1_1internal_1_1_ticket_queue_m_p_m_c.html#ac8c13bcc414725392f1849776ed25bde", null ],
[ "size_type", "classgts_1... |
import './print.styl' |
import AddCard from './AddCard';
import Cards from './Cards';
import Config from './Config';
import Home from './Home';
import Login from './Login';
import Main from './Main';
import Register from './Register';
export { AddCard, Cards, Config, Home, Login, Main, Register }; |
/**
* MailDev - send.js -- send a few emails for testing
*
* Run this to send emails to port 1025 for testing MailDev during development
* node test/send.js
*/
var nodemailer = require('nodemailer')
// Create a transport with MailDev's default receiving port
var transporter = nodemailer.createTransport({
por... |
/**
* Copyright (c) 2015-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @emails onca... |
/* jshint node: true */
'use strict';
module.exports = {
name: 'ember-salesforce-adapter'
}; |
define(function(require, exports, moudles) {
var $ = require('jquery');
var template = require('arttemplate');
var dialog = require('artDialog');
var laypage = require('laypage');
window.dialog = dialog;
var httpUtil = require('js/common/httpUtil.js');
var $baseRoot = $('#baseRoot');
var baseRoot = $baseRoot.at... |
var class_qwt_abstract_slider =
[
[ "QwtAbstractSlider", "class_qwt_abstract_slider.html#af539373e763744c295f90b919fc37870", null ],
[ "~QwtAbstractSlider", "class_qwt_abstract_slider.html#a31b9e0314988b7d547c9ded625014bbb", null ],
[ "incrementedValue", "class_qwt_abstract_slider.html#a71cca2aac9933090020c... |
import handleClickEvent from './handleClickEvent';
const setup = async () => {
try {
window.addEventListener('click', event => handleClickEvent(event));
} catch (e) {
// Unfortunately, we can't do anything here
}
};
setup(); |
/*! jQuery UI - v1.10.4 - 2014-04-20
* http://jqueryui.com
* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
jQuery(function(t){t.datepicker.regional.ja={closeText:"閉じる",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月",... |
/**
* @fileoverview added by tsickle
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
import * as tslib_1 from "tslib";
import { Directive, ElementRef, Input, Optional, Renderer2 } from '@angular/core';
import { merge, EMPTY, Subject } from 'rxjs'... |
/**
* This file is only for configure the IDE PHPStorm
*/
System.config({
// Resolve webpack alias
'paths': {
'@app/*': './app/Resources/assets/*',
'@bonus/*': './src/BonusBundle/Resources/assets/*',
'@chat/*': './src/ChatBundle/Resources/assets/*',
'@match/*': './src/MatchBund... |
var class_microsoft_1_1_mixed_reality_1_1_toolkit_1_1_input_1_1_base_focus_handler =
[
[ "OnBeforeFocusChange", "class_microsoft_1_1_mixed_reality_1_1_toolkit_1_1_input_1_1_base_focus_handler.html#aaf8b7efa4cda0f8e39226079aef2f884", null ],
[ "OnFocusChanged", "class_microsoft_1_1_mixed_reality_1_1_toolkit_1_1_... |
import React from 'react';
export default function Layout({ children }) {
return (
<div className="main">
{children}
</div>
);
} |
//# sourceMappingURL=xspreadsheet.js.map |
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.flvjs = f()}})... |
/*
* Document : tablesDatatables.js
* Author : pixelcave
* Description: Custom javascript code used in Tables Datatables page
*/
var TablesDatatables = function() {
return {
init: function() {
/* Initialize Bootstrap Datatables Integration */
App.datatables();
... |
import Vue from 'vue'
import axios from 'axios'
import config from '../config'
Vue.use(axios)
export default {
name: 'postService',
getPosts () {
let url = config.POSTS_URL
return axios.get(url)
.then((response) => Promise.resolve(response.data))
.catch((error) => Promise.reject(error))
},
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.