text
stringlengths
2
1.05M
(window.webpackJsonp_N_E=window.webpackJsonp_N_E||[]).push([[1],{"+wdc":function(e,t,n){"use strict";var r,l,a,o;if("object"===typeof performance&&"function"===typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var u=Date,s=u.now();t.unstable_now=function(){return u.now()-s}}if("un...
const fs = require('fs'); const config = require('./config'); const date = config.date; const folder = `../2_result/${date}_after/`; const outerFolder = `../dm_location`; const locationName = config.location const minLatitude = config.minLatitude; const maxLatitude = config.maxLatitude; const minLongitude = config.minL...
/* eslint-disable react/prop-types */ import React from 'react'; import {StyleSheet, Text, TouchableOpacity, View} from 'react-native'; import {withTheme} from 'react-native-paper'; import {useTranslation} from 'react-i18next'; import {useDispatch, useSelector} from 'react-redux'; import {GoogleSignin, statusCodes} fr...
var weixin = require('../weixin.js'); function AuthorizeManager() { this.pageUrl = '/pages/_authorize/_authorize'; }; AuthorizeManager.scopes = { userInfo: 'scope.userInfo' }; AuthorizeManager.prototype = { authorize: function (scope, callback) { var me = this; me._isAuthorized(scope, function (authorized) ...
import { createTeam } from '../data.js'; export default async function(){ this.partials = { header: await this.load('./templates/common/header.hbs'), footer: await this.load('./templates/common/footer.hbs'), createForm: await this.load('./templates/create/createForm.hbs'), ...
import { gql } from "@apollo/client"; export const GET_ALL_PROVIDERS = gql` query GetAllProviders { allProviders { _id providerName address location { latitude longitude } slug updatedAt } } `;
import { combineReducers } from 'redux'; import { createResponsiveStateReducer } from 'redux-responsive'; import { routerReducer } from 'react-router-redux'; import counter from './counter'; export default combineReducers({ router: routerReducer, browser: createResponsiveStateReducer(null, { infinity: 'veryBig...
var Events = require('./events.js'); var Logger = require('./logger.js'); var Config = require('./config.js'); var DeployManager = require('../contracts/deploy_manager.js'); var ABIGenerator = require('../contracts/abi.js'); var Dashboard = require('../dashboard/dashboard.js'); var ServicesMonitor = require('./service...
(function () { 'use strict'; angular .module('app') .controller('TriviaController', TriviaController); TriviaController.$inject = ['TriviaService', '$location', 'FlashService']; function TriviaController(TriviaService, $location, FlashService) { var vm = this; vm.allTr...
var path = require('path'); var webpack = require('webpack'); module.exports = { devtool: 'eval', context: path.resolve('./frontend'), entry: { javascriptt: [ 'webpack-dev-server/client?http://localhost:3000', 'webpack/hot/only-dev-server', 'react-hot-loader/patch', 'whatwg-fetch', ...
/*! * Bootstrap v3.3.4 (http://getbootstrap.com) * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript requires jQuery') } +function ($) { 'use strict'; var version = $...
const axios = require('axios'); const enabledBots = []; enabledBots.push({ name: 'SimpleBot', urlBase: undefined, authorizationKey: undefined, }); if (process.env.BOT_DEEPROLE_API_KEY) { enabledBots.push({ name: 'DeepRole', urlBase: 'https://deeprole-proavalon.herokuapp.com/deeprole', ...
'use strict'; const nacos = require('./lib/nacos'); module.exports = app => { if (app.config.nacos.app) { nacos(app); } };
// @flow strict strict export { default } from './Tags';
(function(){function FastClick(layer,options){var oldOnClick;options=options||{};this.trackingClick=false;this.trackingClickStart=0;this.targetElement=null;this.touchStartX=0;this.touchStartY=0;this.lastTouchIdentifier=0;this.touchBoundary=options.touchBoundary||10;this.layer=layer;this.tapDelay=options.tapDelay||200;...
// flow-typed signature: 22f41e7777ffa0fed6ae5e6f72cf0586 // flow-typed version: <<STUB>>/postcss-import_v^12.0.0/flow_v0.81.0 /** * This is an autogenerated libdef stub for: * * 'postcss-import' * * Fill this stub out by replacing all the `any` types. * * Once filled out, we encourage you to share your work ...
// 相似歌曲 module.exports = (query, request) => { const data = { songid: query.id, limit: query.limit || 50, offset: query.offset || 0 } return request( 'POST', `https://music.163.com/weapi/v1/discovery/simiSong`, data, {crypto: 'weapi', cookie: query.cookie, proxy: query.proxy} ) }
/** * This class facilitates the tracking of user input, such as mouse clicks * and button presses. * @author alvin.lin.dev@gmail.com (Alvin Lin) */ /** * Empty constructor for the Input object. */ function Input() { throw new Error('Input should not be instantiated!'); } /** @type {boolean} */ Input.LEFT_CLI...
import Web3 from "web3"; import fetch from "node-fetch" import states from "../libes/states"; export function parseFeed(msg) { const data = msg.Body const text = data.toString().trim(); let json_parsed = false try { json_parsed = JSON.parse(text) } catch (e) { console.log("login fee...
"use strict"; var date = 12; var money = 100; var ob = { 3: 0.12/12, 6: 0.16/12, 12: 0.18/12 }; function calDep(datePar, moneyPar, obPar) { for (var i in ob) { if (i == datePar) { var sum = moneyPar; for (var j = 1; j <= datePar; j++) { sum += sum * obPar[i]; console.log('month...
"use strict"; /* Sample without replacement from an array */ function getRandomSubarray(arr, size) { var shuffled = arr.slice(0), i = arr.length, temp, index; while (i--) { index = Math.floor((i + 1) * Math.random()); temp = shuffled[index]; shuffled[index] = shuffled[i]; shuffl...
/* eslint-disable */ // rename this file from _test_[name] to test_[name] to activate // and remove above this line QUnit.test("test: FPO Gram Panchayat", function (assert) { let done = assert.async(); // number of asserts assert.expect(1); frappe.run_serially([ // insert a new FPO Gram Panchayat () => frapp...
const path = require('path'); const { FREE_PLAN_ID } = require('../constants'); /** * Required Unique Service Name */ exports.name = 'ms-payments'; /** * Set to true if you want debug options * @type {boolean} */ exports.debug = process.env.NODE_ENV !== 'production'; /** * Logger plugin configuration. * @type...
'use strict'; // Adapted from https://gist.github.com/paulirish/1579671 which derived from // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating // requestAnimationFrame polyfill by Erik Möller. // Fixes fro...
webpanda.language ({ // compiler 'compiler-0001' : '错误命令', 'compiler-0002' : '模板内容', 'compiler-0003' : '警告命令', 'compiler-0004' : '模板内容', 'compiler-0005' : '调试标记', // parse 'parse-0001' : '“${1}” 命令不能在同一个标签中同时存在或存在多个!', 'parse-0002' : '“${1}” 命令不能在同一个标签中存在多个!', 'parse-0003' : '“...
/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ export default [ [ ['mn', 'o', 'm', 'a', 'n'], ['middernag', 'die oggend', 'die middag', 'die aan...
var migrations = require('sise-cweb-data') var api = require('../src/index.js') var test = require('sise-cweb-restful-api-tests').base test(migrations, api)
/** * 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 strict-local * @format */ 'use strict'; import type {LayoutEvent, PressEvent, TextLayoutEvent} from 'CoreEventTypes'; i...
const express = require('express'); const bodyParser = require('body-parser'); const api = require('./notifications.js'); function debug (...args) { if (process.env.DEBUG) { console.debug(...args); } } const router = express.Router(); router.get('/', (req, res, next) => { const msg = api.next(); if (!msg...
import { assertionsEnabled, isBlank } from 'angular2/src/facade/lang'; import { BaseException } from 'angular2/src/facade/exceptions'; import { ListWrapper } from 'angular2/src/facade/collection'; import { AbstractChangeDetector } from './abstract_change_detector'; import { ChangeDetectionUtil } from './change_dete...
angular.module("ui.bootstrap", ["ui.bootstrap.tpls", "ui.bootstrap.alert"]); angular.module("ui.bootstrap.tpls", ["template/alert/alert.html"]); angular.module("ui.bootstrap.alert", []).directive('alert', function () { return { restrict:'EA', templateUrl:'template/alert/alert.html', transclude:true, r...
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var React = _interopRequireWildcard(r...
export const initialSystemControls = { "ioopt": 3, "maxit": 100, "weapon": 1, "nmerit": 1, "fix_wt": 1.5, "con_wt": 1.0, "zero_wt": 10.0, "viol_wt": 1.0, "mfn_wt": 0.01, "objmin": 0.00005, "del": 1.0, "delmin": 0.0001, ...
/** * @param {number} N */ var ExamRoom = function(N) { this.n = N this.hasSeated = 0 this.seats = {} // 优化点1 -> map代替数组 }; /** * @return {number} */ ExamRoom.prototype.seat = function() { // 无座 if (this.hasSeated === this.n) { return null } // 第一个座 if (this.hasSeated === 0...
/* eslint-env mocha */ const CountSort = require('../../../src').algorithms.sort.CountSort; const assert = require('assert'); describe('Count Sort', () => { it('should have no data when empty initialization', () => { const inst = new CountSort(); assert.equal(inst.size, 0); assert.deepEqual(inst.unsorted...
define("ace/snippets/batchfile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="batchfile"}); (function() { window.require(["ace/snippets/batchfile"], function(m) { if (typeof module == "object" && typeof exports == ...
"use strict" //Codigo del Cuadrado const perimetroCuadrado = (lado) => lado * 4; const areaCuadrado = (lado) => lado * lado; //Código del Triángulo const perimetroTriangulo = (lado1,lado2,base)=> lado1 + lado2 + base; const areaTriangulo = (base,altura)=> (base + altura) / 2; //Código del Circulo //Diametro cons...
class Boat { constructor(x, y, width, height, boatPos) { this.body = Bodies.rectangle(x, y, width, height); this.width = width; this.height = height; this.image = loadImage("./assets/boat.png"); this.boatPosition = boatPos; World.add(world, this.body); } remove(index){ setTimeout(...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var IsolateModule = (function () { function IsolateModule() { this.elementsByFullScope = new Map(); this.delegatorsByFullScope = new Map(); this.fullScopesBeingUpdated = []; this.vnodesBeingRemoved = []; ...
function parse (str) { return str .replace(/&lt;/g, '<') .replace(/&gt;/g, '>'); }
module.exports = (req, res) => { res.end('hello'); };
describe("less.js javascript disabled error tests", function() { testLessErrorsInDocument(); });
/*! showdown 25-11-2016 */ (function(){function a(a){"use strict";var b={omitExtraWLInCodeBlocks:{defaultValue:!1,describe:"Omit the default extra whiteline added to code blocks",type:"boolean"},noHeaderId:{defaultValue:!1,describe:"Turn on/off generated header id",type:"boolean"},prefixHeaderId:{defaultValue:!1,descr...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _child_process = require("child_process"); var _fsExtra = _interopRequireDefault(require("fs-extra")); var _path = _interopRequireDefault(require("path")); var _split = _interopRequireDefault(require("split...
/** * Copyright 2017 The AMP HTML Authors. All Rights Reserved. * * 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 require...
// This file is the factory for the GUI part..bundleRenderer.renderToStream // The imporant thing here is the createElement async method // This file must be an es module in order to be loaded with the SDK (with dynamic imports) import QuadrafuzzHTMLElement from './Gui.js'; export { QuadrafuzzHTMLElement }; /** * A ...
const fs = require('fs'); const path = require('path'); const {setupBuildTest, readFiles} = require('../../test-utils'); const cwd = path.join(__dirname, 'build'); let files = {}; describe('config: buildOptions.metaUrlPath', () => { beforeAll(() => { setupBuildTest(__dirname); files = readFiles(cwd); });...
'use strict'; // Media controller angular.module('media').controller('MediaController', ['$scope', '$stateParams', '$location', 'Authentication', 'Media', function ($scope, $stateParams, $location, Authentication, Media) { $scope.authentication = Authentication; var isAdmin = $scope.authentication.user.role...
const isTesting = process.env.TESTING === 'true'; module.exports = { presets: [ [ '@babel/preset-env', { debug: !isTesting, // Don't debug per file (jest) :') }, ], '@babel/preset-typescript', ], plugins: [ '@babel/plugin-syntax-dynamic-import', 'babel-plugin-transform-inline-environment-vari...
export const source = 'Vehicle Complaints'; export const queryConfig = { tz: 'UTC', time:{ timeField: 'failtimestamp_real', from: '+1995-01-01 08:00:00.000', to: '+2014-07-10 07:00:00.000' }, filters: [], groups: [ { name: 'year_string', limit:...
'use strict'; module.exports = [ { regexp: /^(TINYINT|BOOLEAN|BOOL|SMALLINT|MEDIUMINT|INTEGER|INT|BIGINT)[0-9()\s]*(SIGNED|UNSIGNED|ZEROFILL)?$/i, f: result => { let [, type, attr = ''] = result; type = type.toUpperCase(); attr = attr.toUpperCase(); ...
/* global window:true, document:true */ import React from 'react'; import {mergeRight, once} from 'ramda'; import PropTypes from 'prop-types'; import * as styles from './styles/styles.js'; import * as constants from './constants/constants.js'; /* eslint-disable-next-line no-console */ const logWarningOnce = once(conso...
import React, { Component } from 'react'; import { connect } from 'react-redux'; import { Link } from 'react-router-dom'; import * as actions from '../../actions'; import InfoBox from '../infoBox'; import SupportRequestContent from './supportRequest_content'; import addHeaderNav from '../HOC/addHeaderNav'; class ...
/* Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ CKEDITOR.plugins.setLang( 'bidi', 'ms', { ltr: 'Text direction from left to right', // MISSING rtl: 'Text direction from right to left' // MISSING } );
import styled from "styled-components" import Image from "gatsby-image" //Assets import variables from "../../assets/styles/variables" import { breakpoints } from "../../assets/styles/breakpoints" // spring: import { animated as a } from "react-spring" const Container = styled.section` background: white...
chrome.browserAction.onClicked.addListener(function(tab) { chrome.tabs.create({ url: "https://blockmodo.com/home/ZRX" }, function(tab) { }); });
'use strict'; var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck'); var _classCallCheck3 = _interopRequireDefault(_classCallCheck2); var _createClass2 = require('babel-runtime/helpers/createClass'); var _createClass3 = _interopRequireDefault(_createClass2); function _interopRequireDefault(obj) { ...
import React, { Component } from 'react'; import {Link,Route,Switch} from 'react-router-dom'; import Home from './Home'; import About from './About'; import Category from './category/Index'; import Error404 from './Error404'; class Header extends Component { render() { return ( <...
mergeInto(LibraryManager.library, { $foreignCounter: 0, foreignFunctionThatTakesThreeParameters__deps: ['$foreignCounter'], foreignFunctionThatTakesThreeParameters: function(a, b, c) { foreignCounter += a + b + c; return foreignCounter; } });
import Container from 'nyc/Container' import ReplaceTokens from 'nyc/ReplaceTokens' import Share from 'nyc/Share' const manifest = '{"name": "App Name", "description": "App Description"}' let target beforeEach(() => { $.resetMocks() fetch.resetMocks() fetch.mockResponseOnce(manifest) target = $('<div></div>')...
$(document).ready(function(){ $('.grid-container .select-pagina').change(function(){ window.location.href = $(this).attr('data-url')+'&pagina='+$(this).val(); }); $('.grid-container .bt-limpar-pesquisa').click(function(){ var $form = $(this).closest('form'); $form.find('[name=pe...
(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('yup')) : typeof define === 'function' && define.amd ? define(['yup'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.yup)); }(this, (function (Yup) { 'us...
module.exports = { "cart_index_1": "商品信息", "cart_index_2": "单价", "cart_index_3": "数量", "cart_index_4": "库存不足", "cart_index_5": "最少起订量为{0}", "cart_index_6": "小计", "cart_index_7": "操作", "cart_index_8": "删除", "cart_index_9": "失效商品", "cart_index_10": "失效", "cart_index_11": "全选", "cart_index_12": "批量删除", "cart_...
// image minification const imagemin = require('imagemin'), plugins = [ require('imagemin-mozjpeg')(), require('imagemin-pngquant')({ strip: true }), require('imagemin-svgo')() ]; module.exports = class { data() { return { permalink: false, eleventyExcludeFromCollections: true ...
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] =...
import React, { useState, useEffect } from 'react'; import { useGlobalFilter, useSortBy, useTable, usePagination, useBlockLayout, useResizeColumns, useFlexLayout, } from 'react-table'; import Table from 'react-bootstrap/Table'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { f...
'use strict'; var _24 = { elem: 'svg', attrs: { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 32 32', width: 24, height: 24, }, content: [ { elem: 'path', attrs: { d: 'M16 28a11 11 0 1 1 11-11 11 11 0 0 1-11 11zm0-20a9 9 0 1 0 9 9 9 9 0 0 0-9-9zM4 7.592l3....
const date = require(`./Time`); const cron = require("node-cron"); const chalk = require("chalk"); const fs = require('fs'); async function dtfd(client) { cron.schedule("30 06 * * *", () => { console.log( chalk.green( `--------------------------------------------------------------------------------...
const { expect } = require('chai'); const { startApiBuilder, stopApiBuilder, requestAsync } = require('./_base'); describe('Endpoints', function () { this.timeout(30000); let server; /** * Start API Builder. */ before(() => { server = startApiBuilder(); return server.started; }); /** * Stop API Build...
/* Template Name: Vallume Author: <a href="https://www.os-templates.com/">OS Templates</a> Author URI: https://www.os-templates.com/ Licence: Free to use under our free template licence terms Licence URI: https://www.os-templates.com/template-terms File: Mobile Menu JS Thanks to: "Convert a Menu to a Dropdown for Smal...
import World from '@world/World'; import Reviver from '@libs/Reviver'; const reviver = new Reviver(); reviver.register(World); export default reviver;
/* * ! ${copyright} */ sap.ui.define([ "sap/ui/fl/apply/_internal/flexState/UI2Personalization/UI2PersonalizationState", "sap/ui/fl/apply/_internal/flexState/FlexState", "sap/ui/fl/apply/_internal/ChangesController" ], function( UI2PersonalizationState, FlexState, ChangesController ) { "use strict"; /** *...
var Plotly = require('plotly.js'); var gd = require('h')('div'); document.body.appendChild(gd); var data = {"data": [{"xaxis": "x1", "yaxis": "y1", "type": "surface", "x": [[2, 2.15459736599116, 2.30270690576858, 2.44448899256451, 2.58010399961122, 2.70971230014093, 2.83347426738592, 2.95155027457841, 3.0...
import { FETCH_FAV } from "../constants/actions"; export default (wishList = [], action) => { switch (action.type) { case FETCH_FAV: return action.payload; default: return wishList; } };
'use strict'; var istanbul = require('browserify-istanbul'); module.exports = function(config) { config.set({ basePath: '../', frameworks: ['jasmine', 'browserify'], preprocessors: { 'app/js/**/*.js': ['browserify', 'coverage'] }, browsers: ['Chrome'], reporters: ['progress', 'covera...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // 0, 2, 10, 30 second delays before reconnect attempts. const DEFAULT_RETRY_DELAYS_IN_MILLISECONDS = [0, 2000, 10000, 30000, null]; /** @private */ export class DefaultReconnectPolic...
module.exports = { configureWebpack: { resolve: { alias: { 'assets': '@/assets', 'common': '@/common', 'components': '@/components', 'network': '@/network', 'views': '@/views', } } } }
"use strict"; 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.hasOwnPrope...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PromotionShippingAction = exports.PromotionOrderAction = exports.PromotionItemAction = exports.PromotionAction = void 0; const pick_1 = require("@vendure/common/lib/pick"); const configurable_operation_1 = require("../../common/configu...
import { createSlice } from "@reduxjs/toolkit" const uiTypes = {login: 'login', registration: 'registration', loggedin: 'loggedin'}; const loginSlice = createSlice({ name: "login", initialState: { cachedUser: { username: "", password: "", email: "", }, uiType: uiTypes.login }, re...
/* * * akshay sharma * fxn769@gmail.com * 5/7/2020 * */ var socialtags = [{ img: "img/github.svg", link: "https://github.com/akshay2211" }, { img: "img/linkedin.svg", link: "https://www.linkedin.com/in/akshay-sharma-80478448/" }, { img: "img/gitlab.svg", link: "https://gitlab.com/akshay...
import React from "react"; import { Get } from "ajwah-store"; import { useStream } from "./hooks"; import { CounterState } from "../states/counterState"; export const Counter = () => { const csCtrl = Get(CounterState); const data = useStream(csCtrl.count$, ""); return ( <p> <button className="btn" on...
var events = require('events'); var os = require('os'); var util = require('util'); var debug = require('debug')('yosemite-bindings'); var XpcConnection = require('xpc-connection'); var localAddress = require('./local-address'); var uuidToAddress = require('./uuid-to-address'); /...
import requestAnimationFrame from 'raf' class DefaultProgram { constructor(wgli, props) { this.wgli = wgli; this.props = props; this._update = this._update.bind(this); } // Entry point for the program run() { // Begin main update loop requestAnimationFrame(this._update); } // Update p...
deepmacDetailCallback("001f28000000/24",[{"d":"2007-12-31","t":"add","a":"8000 Foothills Blvd\nRoseville CA 95747\n\n","c":"UNITED STATES","o":"ProCurve Networking by HP"},{"d":"2013-03-27","t":"change","a":"8000 Foothills Blvd\nRoseville CA 95747\n\n","c":"UNITED STATES","o":"HPN Supply Chain"},{"d":"2015-08-27","t":"...
import React, { PureComponent as Component } from 'react'; import { connect } from 'react-redux'; import PropTypes from 'prop-types'; import { fetchInterfaceListMenu, fetchInterfaceList, fetchInterfaceCatList, fetchInterfaceData, deleteInterfaceData, deleteInterfaceCatData, initInterface } from '../../../...
/** * @module jsdoc/tutorial */ const markdown = require('parsers/markdown'); const hasOwnProp = Object.prototype.hasOwnProperty; /** * Removes child tutorial from the parent. Does *not* unset child.parent though. * * @param {Tutorial} parent - parent tutorial. * @param {Tutorial} child - Old child. * @private...
var toastTrigger = document.getElementById('liveToastBtn') var toastLiveExample = document.getElementById('liveToast') if (toastTrigger) { toastTrigger.addEventListener('click', function () { var toast = new bootstrap.Toast(toastLiveExample) toast.show() }) }
// Global Namespace var AZ = {}; AZ.Ajax = (function () { "use strict"; $(document).ready(function () { // Add please wait to body and attach to ajax function var loadingDiv = "<div id='ajax_loader' style='width: 100%;height: 100%;top: 0;left: 0;position: fixed;opacity: 0.7;background-color: ...
const useIsConnected = web3Modal => !!web3Modal && !!web3Modal.cachedProvider; export default useIsConnected;
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); //# sourceMappingURL=blockchainStatus.js.map
var searchData= [ ['ianimationhelper',['IAnimationHelper',['../group___animation.html#classpdg_1_1_i_animation_helper',1,'pdg']]], ['idle',['idle',['../namespacepdg.html#a4607662e1a6ff2db1ecff1b8eea07296',1,'pdg']]], ['ieventhandler',['IEventHandler',['../group___events.html#classpdg_1_1_i_event_handler',1,'pdg']...
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty")); var _react = _interopRequire...
import { FileText, BookOpen } from 'react-feather' import { snakeCase } from 'lodash' import PropTypes from 'prop-types' import React from 'react' import ReactTooltip from 'react-tooltip' const MenuButtons = ({ id, theme, title, selectSolution, renderModal }) => ( <div className="sidebar--menu--detail--button--conta...
#!/usr/bin/env node var net = require('net') , repl = require('repl') , assert = require('assert') , wd = require('./main') ; var startRepl = function() { var r = repl.start('(wd): '); r.context.assert = assert; r.context.wd = wd; r.context.help = function() { console.log("WD - Shell."); conso...
/** * Jamming technique. Section 6.2.49 * * Copyright (c) 2008-2015, MOVES Institute, Naval Postgraduate School. All rights reserved. * This work is licensed under the BSD open source license, available at https://www.movesinstitute.org/licenses/bsd.html * * @author DMcG */ // On the client side, support for a ...
/* ***** BEGIN LICENSE BLOCK ***** * Distributed under the BSD license: * * Copyright (c) 2010, Ajax.org B.V. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributio...
/* Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ CKEDITOR.plugins.setLang( 'elementspath', 'pt', { eleLabel: 'Caminho dos elementos', eleTitle: 'Elemento %1' } );
import { ServiceProvider } from '@makerdao/services-core'; import AccountsService from '../eth/AccountsService'; import AllowanceService from '../eth/AllowanceService'; import CacheService from '../utils/CacheService'; import ConsoleLogger from '../utils/loggers/ConsoleLogger'; import DSProxyService from '../eth/DSProx...
module.exports = { root: true, env: { node: true, es6: true }, parserOptions: { ecmaVersion: 8 }, extends: ['eslint:recommended'], overrides: [ { files: ['src/**/*.ts', 'src/**/*.tsx'], parser: '@typescript-eslint/parser', settings: { react: { version: '...