text stringlengths 2 1.04M |
|---|
module.exports = require('./lib/FluentLogger'); |
//= require ./jasmine.js
//= require ./jasmine-html.js |
export let endpoints;
if (
window.location.hostname === "edeskio.com" ||
window.location.hostname === "www.edeskio.com"
) {
endpoints = {
registerUserNewOrganization:
"https://edeskio.com:8443/api/edeskio/post_tblUsers_tblOrganization_Register_NewOrganization",
registerUserExistingOrganization:
... |
import React, { useState, useEffect, lazy } from "react";
import { TheContent, AdminSidebar, TheFooter, TheHeader } from "../../index";
import clientService from "../../../services/clientService";
import Moment from "react-moment";
import { imageStyles, tinyApiKey } from "../../../utility/constants";
import { asyncLoca... |
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 220) {
$(".avatar").addClass("avatar-shrink")
$(".header").addClass("header-shrink")
$(".site-title").addClass("site-title-shrink")
$(".navbar-default").addClass("navbar-shrink");
} else {
... |
import React, { Component, Fragment } from "react";
import { Helmet } from "@treats/helmet";
import { Route, Switch, withRouter } from "react-router-dom";
import { hot } from "react-hot-loader";
import routes from "@treats/route";
import { findActiveRoute, getURLfromLocation } from "@treats/util/location";
import "@@BU... |
//# sourceMappingURL=chunk-2d0c04c4.ed4bb27f.js.map |
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
ecmaVersion: 2018,
sourceType: 'module'
},
env: {
browser: true,
mocha: true
},
// required to lint *.vue files
plugins: ['vue'],
// https://github.com/vuejs/esl... |
module.exports = {
purge: [
'./app/**/*.*',
],
theme: {
extend: {
colors: {
'primary-100': '#86C2F1',
'primary-200': '#7EBBEE',
'primary-300': '#59ACF0',
'primary-400': '#3da2f5',
'primary-500': '#2196f3',
'primary-600': '#1D83D5',
'primary-700... |
//# sourceMappingURL=main.432582b7.chunk.js.map |
/**
* @overview datejs
* @version 1.0.0-rc3
* @author Gregory Wild-Smith <gregory@wild-smith.com>
* @copyright 2015 Gregory Wild-Smith
* @license MIT
* @homepage https://github.com/abritinthebay/datejs
*/
/*
2015 Gregory Wild-Smith
@license MIT
@homepage https://github.com/abritinthebay/datejs
2015 Gregory ... |
import React from 'react';
import PropTypes from 'prop-types';
import Button from '@material-ui/core/Button';
import { withStyles } from '@material-ui/core/styles';
const styles = theme => ({
button: {
borderRadius: `0 0 ${theme.shape.borderRadius}px ${
theme.shape.borderRadius
}px`,
padding: theme... |
var v0 = (function (v1){
'use strict';
(v1.Node) = (function (v2, v3){
(this.key) = v2;
(this.data) = v3;
(this.next) = undefined;
(this.prev) = undefined;
});
(v1.Hashtable) = (function (){
(this.buckets) = [];
(this.maxBucketCount) = 100;
});
(v1.Hashtable.prototype.hashCode) = (function (v5){
var v6;
var v7 = 0;
var... |
//# sourceMappingURL=main.dd0296e3.chunk.js.map |
// stacked_area.js
function createAreaChart(vegtype, chartDivID) {
$(function () {
$('#' + chartDivID).highcharts({
chart: {
type: 'areaspline',
width: 308,
height: 230,
marginBottom: 50,
marginLeft: 58,
... |
import { Loading, Empty, Failure, Success } from './BlogCommentsCell'
import { standard } from './BlogCommentsCell.mock'
export const loading = () => {
return Loading ? <Loading /> : null
}
export const empty = () => {
return Empty ? <Empty /> : null
}
export const failure = () => {
return Failure ? <Failure e... |
window.addEventListener('load', function() {
const anchorElems = document.querySelectorAll('.smooth-scroll');
anchorElems.forEach(function (elem) {
elem.addEventListener('click', function (event) {
event.preventDefault();
event.stopPropagation();
const href = elem.getAttribute('href');
... |
import React, { useContext } from 'react';
import Auth from './components/Auth';
import Ingredients from './components/Ingredients/Ingredients';
import { AuthContext } from './context/auth-context';
const App = props => {
const authContext = useContext(AuthContext);
let content = <Auth />;
if (authContext.isAut... |
import React from 'react';
import styles from '../styles/Home.module.css';
import Layout from '../components/Layout';
import HeadSeo from '../components/HeadSeo';
import TaskForm from '../components/task/TaskForm';
import TaskList from '../components/task/TaskList';
export default function Home() {
return (
<>
... |
/// <reference types="cypress"/>
/// <reference types="../../../support"/>
import faker from "faker";
import { productDetailsUrl } from "../../../fixtures/urlList";
import { ONE_PERMISSION_USERS } from "../../../fixtures/users";
import { getProductDetails } from "../../../support/api/requests/storeFront/ProductDetail... |
import React, { PureComponent } from 'react';
import { connect } from 'react-redux';
import {
RecommendWrapper,
RecommendItem
} from '../style';
class Recommend extends PureComponent {
render () {
const { list } = this.props;
return (
<RecommendWrapper>
{
list.map((item) => {
... |
function solution(){
class Post{
constructor(title, content){
this.title = title;
this.content = content;
}
toString(){
return `Post: ${this.title}\nContent: ${this.content}`
}
}
class SocialMediaPost extends Post{
constructor(tit... |
var data=[['20101101',3.67],
['20101102',3.64],
['20101103',3.6],
['20101104',3.61],
['20101105',3.67],
['20101108',3.61],
['20101109',3.57],
['20101110',3.54],
['20101111',3.58],
['20101112',3.43],
['20101115',3.33],
['20101116',3.25],
['20101117',3.23],
['20101118',3.3],
['20101119',3.33],
['20101122',3.37],
['201011... |
var App = Em.Application.create({
LOG_TRANSITIONS: true
});
//routers
App.Router.map(function(){ //map URLs to controllers/templates
this.resource('contacts',{path: '/'}, function(){
this.resource('contact', {path: 'contact/:contact_id'});
this.route('edit', {path: 'contact/:contact_id/edit'});
... |
const Base = require('./base.js');
module.exports = class extends Base {
async indexAction() {
const page = this.post('page') || 1;
const size = this.post('size') || 100;
const no = this.post('no') || '';
const name = this.post('name') || '';
const dictname = this.post('dictname') || '';
if (... |
function addWidgetsfrmAniSwitchLeft() {
frmAniSwitchLeft.add();
};
function frmAniSwitchLeftGlobals() {
frmAniSwitchLeft = new kony.ui.Form2({
"addWidgets": addWidgetsfrmAniSwitchLeft,
"bounces": true,
"enabledForIdleTimeout": false,
"id": "frmAniSwitchLeft",
"needAppMen... |
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _createIcon = require('./util/createIcon');
var _createIcon2 = _interopRequireDefault(_createIcon);
function _interopRequireDefault(obj) { return obj && o... |
/**
* 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.
*
*/
'use strict'
const AssetPaths = require('./AssetPaths')
const crypto = require('crypto')
//const denodeify = require('denodei... |
var viewconnections_8php =
[
[ "viewconnections_content", "viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776", null ],
[ "viewconnections_init", "viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330", null ]
]; |
$ ember g serializer application
// app/models/product.js
...
export default Imageable.extend({
...
image: DS.belongsTo()
});
// mirage/serializers/application.js
import { JSONAPISerializer } from 'ember-cli-mirage';
export default JSONAPISerializer.extend({
alwaysIncludeLinkageData: true
}); |
'use strict';
const Lambda = require('../../Lambda');
const path = require('path');
class LambdaNodeSNS extends Lambda {
constructor() {
super();
}
commands() {
return [];
}
hooks() {
return null;
}
template() {
return {
name: 'lambda-node-sns... |
import React, { Component } from "react";
import { Link } from "react-router-dom";
import PropTypes from "prop-types";
import { connect } from "react-redux";
class Landing extends Component {
componentDidMount() {
if (this.props.auth.isAuthenticated) {
this.props.history.push("/dashboard");
}
}
ren... |
// test index construction
import assert from 'assert'
import math from '../../../../../src/bundleAny'
const Range = math.Range
const ImmutableDenseMatrix = math.ImmutableDenseMatrix
describe('index', function () {
it('should create an index', function () {
const index = math.index(new Range(2, 6))
assert.o... |
const config = {
input: 'src/index.js',
output: {
format: 'cjs',
file: 'lib/index.js',
},
};
export default config; |
import styled, { keyframes } from 'styled-components';
import theme from '../Theme/theme';
const ldsHeart = keyframes`
0% {
transform: scale(0.95);
}
5% {
transform: scale(1.1);
}
39% {
transform: scale(0.85);
}
45% {
transform: scale(1);
}
60% {
transform: scale(0.95);
}
100%... |
angular.module('trackit.tasks.service', [
'ui.router'
])
.service('tasksService', [
'$q',
'Restangular',
function (
$q,
Restangular
) {
var getAll = function(categoryId) {
return Restangular.all('tasks').getList({categoryId: categoryId});
};
var getOne = function (id) {
retur... |
"use strict";
exports.__esModule = true;
function parseArgsStringToArgv(value, env, file) {
// ([^\s'"]([^\s'"]*(['"])([^\3]*?)\3)+[^\s'"]*) Matches nested quotes until the first space outside of quotes
// [^\s'"]+ or Match if not a space ' or "
// (['"])([^\5]*?)\5 or Match "quoted text" without quotes
... |
/*
* jQuery Easing v1.3 - https://gsgd.co.uk/sandbox/jquery/easing/
*
* Uses the built in easing capabilities added In jQuery 1.1
* to offer multiple easing options
*
* TERMS OF USE - jQuery Easing
*
* Open source under the BSD License.
*
* Copyright © 2008 George McGinley Smith
* All rights reserved.
... |
const ulDOM = document.querySelector("#list");
const inputDOM = document.querySelector("#task");
const inputAddDOM = document.querySelector("#liveToastBtn");
inputAddDOM.addEventListener("click", function () {
if (inputDOM.value.trim()) {
ulDOM.innerHTML += `<li class="d-flex justify-content-between align-items-... |
/*
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 2.8.2r1
*/
/**
* Augments the Element Utility with a <code>delegate</code> method that
* facilitates easy creation of delegated event listeners. (Note: Using CSS
* sele... |
var Step = require('step');
/**
* Example of a simple document save with safe set to false
*
* @_class collection
* @_function save
* @ignore
*/
exports.shouldCorrectlySaveASimpleDocument = function(configuration, test) {
var db = configuration.newDbInstance({w:0}, {poolSize:1});
// DOC_LINE var db = new Db... |
var NodeGeocoder = require('node-geocoder');
var cred = require('./credentials.js');
var options = {
provider: 'google',
httpAdapter: 'https',
apiKey: cred.google_map_api,
formatter: null
};
var geocoder = NodeGeocoder(options);
function get_maps_info(_country,_city, _street, _number){
console.log(_countr... |
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this f... |
// Time to practice removing items from an array. The spread operator can be used here as well. Other useful JavaScript methods include slice() and concat().
// The reducer and action creator were modified to remove an item from an array based on the index of the item. Finish writing the reducer so a new state array i... |
import React from 'react';
import TalkBilling from 'components/TalkBilling';
import TalkBody from 'components/TalkBody';
export default function TalkPageBilling() {
return (
<div>
<TalkBilling />
<TalkBody />
</div>
);
} |
export default class RulesModel {
_chapter = null;
constructor(data) {
this._chapter = data;
}
get chapter() {
return this._chapter;
}
} |
// Map from tab ID to URL object. The URL isn't necessarily the tab's current
// top-level URL (e.g. for framed Code Search pages, the URL will be the inner
// frame's). Populated by the background page when the tab URL changes, and read
// by the popup when it's being displayed for that tab, so that it doesn't have
//... |
define([
'./Cartesian3',
'./Check',
'./defaultValue',
'./defined',
'./freezeObject',
'./Math',
'./scaleToGeodeticSurface'
], function(
Cartesian3,
Check,
defaultValue,
defined,
freezeObject,
CesiumMath,
s... |
(function($) {
var cultures = $.cultures,
en = cultures.en,
standard = en.calendars.standard,
culture = cultures["hi"] = $.extend(true, {}, en, {
name: "hi",
englishName: "Hindi",
nativeName: "हिंदी",
language: "hi",
numberFormat: {
groupSi... |
/**
* @class Ext.fx.target.CompositeElementCSS
*
* This class represents a animation target for a {@link Ext.CompositeElement}, where the
* constituent elements support CSS based animation. It allows each {@link Ext.Element} in
* the group to be animated as a whole. In general this class will not be created dire... |
/*global module: true, angular:true, $:true, linkurl:true, require:true, console:true, __dirname:true */
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-pars... |
import React from 'react';
import { connect } from 'react-redux';
import './content.css';
import CategoriesList from '../categories-list/categories-list.js';
import ItemsList from '../items-list/items-list.js';
import Product from '../product/product.js';
const Content = ({ view }) => {
const content = () => {
... |
window.__NUXT__=(function(a,b,c,d){return {staticAssetsBase:"\u002Fstatic\u002F1597376630",layout:"default",error:b,state:{notification:{show:a,title:c,message:c},isShowSidebar:a,isSupportWebShare:a,headerTitle:"e-AlQur'an",page:"home",lastReadVerse:b,settingActiveTheme:{name:"dark",bgColor:"#071e3d",fgColor:"#fff"},se... |
(function(){
/**
* The Sea.js plugin for loading text resources such as template, json etc
*/
var global = window
var plugins = {}
var uriCache = {}
function register(o) {
plugins[o.name] = o
}
// normal text
register({
name: "text",
ext: [".tpl", ".html... |
import React, { useState, useMemo } from 'react'
import { createEditor } from 'slate'
import { Slate, Editable, withReact } from 'slate-react'
import { withHistory } from 'slate-history'
const PlainTextExample = () => {
const [value, setValue] = useState(initialValue)
const [selection, setSelection] = useState(nul... |
Type.registerNamespace("Strings");
Strings.OfficeOM = function()
{
};
Strings.OfficeOM.registerClass("Strings.OfficeOM");
Strings.OfficeOM.L_APICallFailed = "Poziv API-ju nije uspio";
Strings.OfficeOM.L_APINotSupported = "API nije podržan";
Strings.OfficeOM.L_ActivityLimitReached = "Dostignuto je ograničenje aktivnosti... |
/**
* @author a.demeshko
* created on 28.12.2015
*/
(function () {
'use strict';
angular.module('BlurAdmin.pages.torrents')
.filter('statusText', function (){ return statusText; });
function statusText(code) {
switch (code) {
case 0:
return "stopped";
case 1:
... |
// See https://github.com/vuejs/vue/blob/be9ac624c81bb698ed75628fe0cbeaba4a2fc991/src/core/observer/dep.js
// for full implementation
export default class Dep {
static target;
constructor() {
this.subs = new Set();
}
addSub(sub) {
this.subs.add(sub);
}
depend() {
if (Dep.target) {
Dep.... |
// RettieveTween.js
// Version: 1.0.0
// Event: Lens Initialized
// Description: Easing function
//
// @input string key
// @output tweenObj tween
var key = "_tweenObj_"+script.key;
script.tween = script.api[key]; |
/* (C) Copyright 2018 Robert Grimm */
import { isNonStringIterable, toIteratorFactory } from './iterations.js';
// A private sentinel indicating a definitely undefined accumulator.
const UNDEFINED = Symbol('undefined');
const { iterator } = Symbol;
const { keys: keysOf } = Object;
export default class Sq {
/* pri... |
var searchData=
[
['glfw_5finclude_5fnone',['GLFW_INCLUDE_NONE',['../opengl_8h.html#a088324ad8995e3eb76024e3e79083d48',1,'opengl.h']]]
]; |
/**
* Hydrogen Atom API
* The Hydrogen Atom API
*
* OpenAPI spec version: 1.7.0
* Contact: info@hydrogenplatform.com
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
*
* Swagger Codegen version: 2.2.3
*
* Do not edit the class... |
// A simple redux store/actions/reducer implementation.
// A true app would be more complex and separated into different files.
import { createStore } from 'redux';
// The actions are the "names" of the changes that can happen to the store
export const actions = {
ARCHIVE_TASK: 'ARCHIVE_TASK',
PIN_TASK: 'PIN_TASK'... |
function breakingRecords(scores) {
let [maxScore, minScore] = [scores[0], scores[0]]
let score = { best: 0, worst: 0 }
for (let i = 1; i < scores.length; i++) {
if (scores[i] > maxScore) {
maxScore = scores[i]
score.best++
} else if (scores[i] < minScore) {
... |
;(function (decoraki) { // jshint ignore:line
'use strict';
var OrbitControl = decoraki.helpers.OrbitControl;
var control = decoraki.control;
//-
//- Private
//-
var _sceneData = {};
var _colliders = {};
var _createCameraController = function () {
_sceneData.cameraControl... |
AFRAME.registerComponent('random-color', {
init: function() {
var randomHue = Math.floor(Math.random() * 360);
this.el.setAttribute('color', "hsl(" + randomHue + ",100%,50%)");
}
});
AFRAME.registerComponent('random-position', {
schema: {
min: {
default: {
x: -10,
y: 1,
... |
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 = Reflect.decorate(d... |
class Donation {
constructor(dateReceived, amount, notes) { }
}
//# sourceMappingURL=Donation.js.map |
import React, { useState, useEffect } from "react";
import PropTypes from "prop-types";
import { useSelector } from "react-redux";
import "./savedFiltersListItem.scss";
import SavedFilterItem from "../../atoms/savedFilterItem/SavedFilterItem";
import { IconZoneG, IconAreaG, IconPriceG, IconPriceMg, IconLandvalG, IconF... |
( function() {
var youtube = document.querySelectorAll( ".youtube" );
for (var i = 0; i < youtube.length; i++) {
var source = "https://img.youtube.com/vi/"+ youtube[i].dataset.embed +"/sddefault.jpg";
var image = new Image();
image.src = source;
image.addEventListener( "load", function() {
youtub... |
import React from 'react';
const PageThree = () => <h2>Page Three</h2>
export default PageThree; |
// @flow strict-local
import type {
Blob,
FilePath,
BundleResult,
Bundle as BundleType,
BundleGraph as BundleGraphType,
NamedBundle as NamedBundleType,
Async,
} from '@parcel/types';
import type SourceMap from '@parcel/source-map';
import type WorkerFarm from '@parcel/workers';
import type {Bundle as Int... |
import $ from 'jquery';
$(document).ready(function() {
let url;
let supprime = $("#delete");
let idchambre = $("#idchambre");
supprime.each(function() {
var identifiant = $(this).find(idchambre).html();
$(this).click(function() {
})
alert(identifiant);
});
// $(... |
// Copyright (c) 2015 - 2017 Uber Technologies, Inc.
//
// 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 rights
// to use, copy, modify... |
'use strict'
require('dotenv').config()
const Storage = require('@google-cloud/storage')
const CLOUD_BUCKET = process.env.CLOUD_BUCKET
const storage = Storage({
projectId: process.env.GCLOUD_PROJECT,
keyFilename: process.env.KEYFILE_PATH
})
const bucket = storage.bucket(CLOUD_BUCKET)
const getPublicUrl = (filen... |
// inspired by http://jamesknelson.com/learn-raw-react-ridiculously-simple-forms/
var cities = [
'Warsaw',
'Washington',
'Piaseczno',
'Chicago'
];
['div', 'ul', 'li', 'input', 'form'].map(function(elem) { this[elem] = React.DOM[elem]; });
/*
* Components
*/
function CitiesForm (props) {
return (
di... |
import { ATTR_KEY } from '../constants';
import { isSameNodeType, isNamedNode } from './index';
import { buildComponentFromVNode } from './component';
import { createNode, setAccessor } from '../dom/index';
import { unmountComponent } from './component';
import options from '../options';
import { removeNode } from '../... |
// 云函数入口文件
const cloud = require('wx-server-sdk')
const axios = require('axios')
cloud.init({
"env":"cloud1-5gkoxa0pe1011c03"
})
const db = cloud.database()
legal_sites={
's.weibo.com':true,
'zhihu.com':true
}
// 云函数入口函数
exports.main = async (event, context) => {
let url = 'https://open.tophub.today/hot'
... |
const chai = require('chai')
chai.should() |
/* eslint unicorn/filename-case: "off", func-names: "off", camelcase: "off", no-unused-vars: "off" */
module.exports = function (obj, iface) {
const {acc, settings, subtype} = obj;
const {mqttStatus, mqttPub, mqttSub, Characteristic, log} = iface;
/* istanbul ignore else */
if (settings.topic.statusCa... |
const SPEED_DIVISOR = 800
class RadialNonoverlapForce {
constructor(params) {
/**
* node positions
* @type {array}
*/
this.positions = params.positions
/**
* adjacency matrix
* @type {array}
*/
this.adjMatrix = params.adjMatrix
/**
* focus node
* @type {... |
/* eslint-disable no-unused-vars */
// node fetch import
const fetch = require('node-fetch');
// node redis import
const redis = require('redis');
// client creation from redis
const client = redis.createClient();
// Utility for Promises working with redis
const { promisify } = require('util');
// const getAsync = pr... |
import React from 'react'
//import style from 'src/styles/plugin-sidebar.module.scss'
import { StaticQuery, graphql } from 'gatsby'
import Tags from 'src/components/plugins/sidebar-software'
import Headroom from 'react-headroom';
import Card from 'src/components/plugins/sidebar-card'
import * as variable from 'src/styl... |
(function() {
var SearchViewModel, VimCommandModeInputView, _,
__bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
_ = require('underscore-plus');
VimCommandModeInputView = require('./vim-command-mode-input-view');
module.exports = SearchViewModel = (function() {
funct... |
/*eslint-disable*/
import React from "react";
import DeleteIcon from "@material-ui/icons/Delete";
import IconButton from "@material-ui/core/IconButton";
// react components for routing our app without refresh
import { Link } from "react-router-dom";
// @material-ui/core components
import { makeStyles } from "@material... |
const request = require('request')
const cheerio = require('cheerio')
// URL on StackOverflow with isEven answers
const stackoverflow = 'https://stackoverflow.com/questions/6211613/testing-whether-a-value-is-odd-or-even'
/**
* Refers to StackOverflow for whether a Number is even
* @param {Function} n) Number to de... |
const { bookingService } = require("../services");
const { createResponse } = require("../utils/common");
const { Booking } = require("../models")
//create new booking
const create = async (req, res, next) => {
try {
const {
checkinDate, checkinTime, checkoutDate, checkoutTime, idTravelAgency, idEmployee, ... |
export default {
elem: 'svg',
attrs: {
xmlns: 'http://www.w3.org/2000/svg',
viewBox: '0 0 32 32',
width: 20,
height: 20,
},
content: [
{
elem: 'path',
attrs: {
d:
'M18 13V4h-2v2h-3v2h3v5h-3v2h8v-2h-3zm-1.5 7a3.5 3.5 0 1 1-3.5 3.5 3.5 3.5 0 0 1 3.5-3.5m0-2a5.5 5.... |
/* eslint-disable react/jsx-no-target-blank */
import React from "react";
import styles from "./Footer.scss";
import classNames from "classnames/bind";
import Github from "../../../image/ic-github.png";
import License from "../../../image/ic-mit.png";
const cx = classNames.bind(styles);
const Footer = () => (
<foot... |
/**
* French translation for bootstrap-datetimepicker
* Nico Mollet <nico.mollet@gmail.com>
*/
;(function($){
$.fn.datetimepicker.dates['fr'] = {
days: ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi", "Dimanche"],
daysShort: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam", "Dim"],
da... |
import React from "react";
import Aux from "./hoc/Aux_";
import { Link } from "react-router-dom";
import Switcher from "./components/Switcher";
class PasswordForget extends React.Component {
render() {
return (
<Aux>
<div className="account-home-btn d-none d-sm-block">
<Link to="Home" cla... |
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("a11yhelp","no",{title:"Instruksjoner for tilgjengelighet",contents:"Innhold for hjelp. Trykk ESC for å lukke denne dialogen.",legend:[{name:"Generel... |
define({
"timeout": "انتهاء",
"highlightLocation": "تمييز الموقع",
"useTracking": "لاحظ تغييرات المواقع",
"warning": "مدخلات غير صحيحة",
"zoomScale": "تدرج التكبير/التصغير",
"useCompass": "إظهار توجيه البوصلة",
"useAccCircle": "إظهار دقة الموقع"
}); |
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
// You can delete this file if you're not using it
const path = require("path")
exports.createPages = async ({ graphql, actions, reporter }) => {
/*
Implement page creation here
*/
} |
/*
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
*/
if(!dojo._hasResource["dijit.form.RangeBoundTextBox"]){
dojo._hasResource["dijit.form.RangeBoundTextBox"]=true;
dojo.provid... |
app.config(function($stateProvider, $urlRouterProvider) {
$urlRouterProvider.otherwise("/tab");
$stateProvider
.state('tab', {
url: '/tab',
templateUrl: "templates/tabs.html",
controller: "tabCtrl"
})
.state('tab.facts', {
url: '/facts',
views: {
'tab-facts': {
templateUrl:... |
import { defineMessages } from 'react-intl';
export default (configContext) => {
const {
AutocompleteInput,
CompoundInput,
DateInput,
HierarchyInput,
IDGeneratorInput,
OptionPickerInput,
StructuredDateInput,
TextInput,
TermPickerInput,
} = configContext.inputComponents;
const... |
const defaultNetwork = 'btc';
const regtestNetwork = 'btcregtest';
const regtestNetworkType = '02';
const testnetNetwork = 'btctestnet';
const testnetNetworkType = '01';
/** Derive a network record name from a network name
{
network: <Network Name String>
}
@returns
{
[value]: <Network Record Value H... |
// Redux
import { createStore } from 'redux';
import allReducers from './../Reducers/index';
const store = createStore(
allReducers,
window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
);
export default store; |
(function() {
var COUNT_FRAMERATE, COUNT_MS_PER_FRAME, DIGIT_FORMAT, DIGIT_HTML, DIGIT_SPEEDBOOST, DURATION, FORMAT_MARK_HTML, FORMAT_PARSER, FRAMERATE, FRAMES_PER_VALUE, MIN_INTEGER_LEN, MS_PER_FRAME, MutationObserver, Odometer, RIBBON_HTML, TRANSITION_END_EVENTS, TRANSITION_SUPPORT, VALUE_HTML, addClass, createFr... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.