text stringlengths 2 1.04M |
|---|
var list = [
"hi",
"hello",
"howdy"
];
var htmlstring = "";
$(document).ready(function(){
for (var i = 0; i < list.length; i++) {
htmlstring = htmlstring + '<li class="list-group-item">' + list[i] +'</li>';
}
$('#taskList').html(htmlstring);
$("#enterTask").click(function(){
... |
import React from "react"
import {Link} from "gatsby"
import TeaserHeader from './post/teaser-header'
import TeaserFooter from "./post/teaser-footer";
const PostArchive = ({post}) => (
<article className="post archive__post h-entry">
<TeaserHeader post={post} />
<div className="post__body">
... |
// 加载通用模组
var common = require('./common');
/**
* 获取网络类型。
* @param Function callback 自定义回调函数
* @return String 网络类型 2g/3g/4g/wifi
*/
function getNetworkType (callback) {
wx.getNetworkType({
success: function (result) {
var _resultCode = common.getResultCode(result.errMsg);
if (_resultCode == 'ok' ... |
// @flow strict
import Author from './Author';
import Contacts from './Contacts';
import Copyright from './Copyright';
import Menu from './Menu';
import React from 'react';
import styles from './Sidebar.module.scss';
import { useSiteMetadata } from '../../hooks';
type Props = {
isIndex?: boolean,
};
const Sidebar ... |
import React from "react";
const SearchBox = ({ searchfield, searchChange}) => {
return (
<div className="pa2">
<input
className="pa3 ba b--green bg-lightest-blue"
type="search"
placeholder="search robots"
onChange={searchChange}
/>
</div>
);
};
export default Search... |
/* @generated */
// prettier-ignore
if (Intl.DisplayNames && typeof Intl.DisplayNames.__addLocaleData === 'function') {
} |
/* eslint-disable no-unused-vars */
const Event = require("../structures/Event");
const { oneLine } = require("common-tags");
const { CommandoMessage } = require("discord.js-commando");
module.exports = class extends Event {
constructor(...args) {
super(...args, {
once: false
});
}
/**
* @param... |
// Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
plugins: [
require('karma-jasmine'),
requir... |
const fs = require('graceful-fs');
const _ = require('lodash');
const crawler = require('./crawlers/' + process.argv[2]);
const filename = process.argv[3];
const str = fs.readFileSync(filename);
const $ = require('cheerio').load(str);
console.log(crawler.nextPage($)); |
class Extension {
static InnerString(Data, Start, End) {
var result = Data.substring(0); //Clone
result = result.substr(result.indexOf(Start) + Start.length);
return result.substr(0, result.indexOf(End));
}
static UrlToObject(Url) {
var result = {};
var index = Url.in... |
const set_up_tx_sender = async function() {
//////////////////////////////////////////////////////////////////////////////
// Notification helpers
//////////////////////////////////////////////////////////////////////////////
function successNotif(msg) {
$.bootstrapGrowl(msg, {
delay: 7000,
off... |
/**
* Rows
* @type {Array}
*/
export const RANKS = ['8', '7', '6', '5', '4', '3', '2', '1']
/**
* Columns
* @type {Array}
*/
export const FILES = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']
/**
* Even tile name
* @type {Array}
*/
export const DARK_TILES = ['b', 'd', 'f', 'h']
/**
* Odd tile name
* @type {Arr... |
import moment from 'moment'
let domen = 'https://' + /:\/\/([^\/]+)/.exec(window.location.href)[1];
export const SOCKET = io.connect(domen + ':8303', {secure: true});
export const MYID = +$('[type="hidden"][name="my_id"]').val();
export function validateEmail(email) {
var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\... |
(function() {
'use strict';
angular
.module('debugblogApp')
.controller('HomeCtrl', HomeCtrl);
HomeCtrl.$inject = ['$scope', '$window', 'bugs', 'BugService'];
function HomeCtrl($scope, $window, bugs, BugService) {
var vm = this;
vm.addBug = addBug;
vm.bugs = bugs.data;
vm.newBug = {
... |
import express from 'express';
import log4js from 'log4js';
import dotenv from 'dotenv';
import { initLog, accessLogger, debugLogger } from './util/log';
import StatusRouter from './routes/StatusRouter';
import SupplierRouter from './routes/SupplierRouter';
import TransactionRouter from './routes/TransactionRouter';
i... |
import PropTypes from 'prop-types'
import styled from 'styled-components'
import { NavLink as NavLink_ } from 'components'
import { FaChevronLeft as FaChevronLeft_ } from 'react-icons/fa'
import { media } from 'utils'
export const ButtonBack = ({ children, ...props }) => (
<NavLink {...props}>
<FaChevronLeft />
... |
/* global URL, fetch */
// In production, we register a service worker to serve assets from local cache.
// This lets the app load faster on subsequent visits in production, and gives
// it offline capabilities. However, it also means that developers (and users)
// will only see deployed updates on the "N+1" visit to... |
import jsc from 'jsverify';
beforeEach(function() {
jasmine.addMatchers({
// Expects that property is synchronous
toHold: function () {
return {
compare: function (actual) {
/* global window */
var quiet = window && !(/verbose=true/).test(window.location.search);
... |
import React from 'react';
import { Flex, Box, Text, List, ListItem } from '@chakra-ui/core';
import Link from "./Link"
class ErrorBoundary extends React.Component {
constructor(props) {
super(props);
this.state = { error: null, errorInfo: null };
}
componentDidCatch(error, errorInfo) {
this.setStat... |
console.log('I’m JS'); |
function reajustaValores1(itens, percentual) {
console.log("Valor inicial: " + itens);
console.log("Valor reajustado: " + percentual);
}
reajustaValores1([15, 20, 25], 0.5);
function reajustaValores3(itens, percentual) {
const itensReajustados = itens.push(percentual);
console.log("Valor in... |
import dayjs from 'dayjs'
import uuidstring from 'uuid-by-string'
import truncate from '../services/truncate'
const omit = (obj, props) => {
obj = {
...obj
}
props.forEach(prop => delete obj[prop])
return obj
}
/**
* Parse feed
* @param string feedUrl
* @return array
*/
export async function parseFee... |
// This file is a part of stdlib. License is Apache-2.0: http://www.apache.org/licenses/LICENSE-2.0
import e from"./define-property.js";var r=e;function a(e,a,o){r(e,a,{configurable:!1,enumerable:!0,writable:!1,value:o})}var o=a;export default o;
//# sourceMappingURL=define-read-only-property.js.map |
import EventEmitter from 'event-emitter'
import Errors from '../error'
class MSE {
constructor (codecs = 'video/mp4; codecs="avc1.64001E, mp4a.40.5"', mediaType) {
EventEmitter(this)
this.codecs = codecs
this.mediaSource = new window.MediaSource(mediaType)
this.url = window.URL.createObjectURL(this.m... |
'use strict';
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(gene... |
/**
* Dev Depended Routes
*
* This Script loads ClassJS and IncludeJS and the script that is in tags attribute main
* <script href='include.loader.js' main='script/main.js' />
*/
(function() {
var routes = {
lib: 'file:///c:/Development/libjs/{name}/lib/{name}.js',
framework: 'file:///c... |
/* Webpack command line options
env.useMap - Enable source maps on develop (increases build time)
env.geoLocal - Replaces geoApi from npm node_module with a local geoApi repo folder located by ../geoApi
env.geoLocal="path/to/geoApi" - Same as no argument env.g... |
var testConditions = [{aspect:"places",action:"hasNot",value:"this"},{aspect:"places",action:"hasNot",value:"this"}];
var storyUIapp = angular.module('storyUIapp', []);
storyUIapp.directive('emitLastRepeaterElement', function() {
return function(scope) {
if (scope.$last){
scope.$emit('LastRepeaterElement');
}
... |
'use strict';
document.addEventListener('DOMContentLoaded', () => {
let addIngredient = document.getElementById("addIngd");
let openRecipePage = document.getElementById("createRecipe");
openRecipePage.addEventListener("submit", event => {
event.preventDefault();
window.location = "./newRec... |
/**
* @class Oskari.mapframework.bundle.mapmodule.request.AddMarkerRequest
* @param {Object} data, the object should have atleast x and y keys with coordinates and can have
* color, msg, shape, size and iconUrl.
* @param {String} id optional id for marker to add, one will be generated if no... |
var express = require("express");
var app = express();
require("./routes.js")(app);
var server = app.listen(8181, function() {
var host = server.address().address;
var port = server.address().port;
console.log("Example app listening at http://%s:%s", host, port);
});
module.exports.server = server;
module.export... |
define([
"css!../css/test1.css"
], function () {
// This module loads test1.css.
return null;
}); |
macDetailCallback("4851cf000000/24",[{"d":"2020-12-24","t":"add","s":"ieee-oui.csv","a":"BR 101, km 210, S/N° São José Santa Catarina BR 88104800","c":"BR","o":"Intelbras"}]); |
import { defineComponent } from 'vue';
import BaseComponent from '@/shared/base/BaseComponent';
export default defineComponent({
name: 'BaseComponent',
mixins: [BaseComponent],
data() {
return {
service: {},
data: {},
request: {},
response: {},
... |
module.exports =
{
mysql: {
host: '127.0.0.1',
user: 'root',
password: '123456',
database:'airpollution', // 前面建的user表位于这个数据库中
port: 3306
}
}... |
import React from 'react';
export const ProductCategoryRow = React.createClass({
render() {
return (
<tr>
<th colSpan={2}>{this.props.category}</th>
</tr>
);
},
});
export const ProductRow = React.createClass({
render() {
const product = this... |
import React from 'react';
const DarkSky = () =>
<div>
<a className='small-text' href="https://darksky.net/poweredby/">
Powered by Dark Sky
</a>
</div>;
export default DarkSky; |
import React from 'react'
import { langs } from 'i18n/lang'
import $script from 'scriptjs'
let TextBox = class extends React.Component {
constructor(props) {
super(props)
this.state = { editable: false }
}
componentWillUnmount() {
super.componentWillUnmount && super.componentWillUnmount()
delete t... |
$(function () {
// onload: Trigger ajax loading event
$(document).trigger('wpr:onload');
var ajaxObserver = new MutationObserver(function (mutation) {
var removedNodes = mutation[0].removedNodes;
for (var i = 0; i < removedNodes.length; i++) {
if (removedNodes[i].src) {
... |
var chakram = require("chakram");
var expect = require("chakram").expect;
var jwtDecode = require('jwt-decode');
var webdriver = require("selenium-webdriver"),
By = webdriver.By,
until = webdriver.until;
var url = require("url");
var qs = require("qs");
describe("identity tests", function () {
var baseAuthUrl = ... |
import React from 'react';
import { MdClose } from 'react-icons/md';
import styled from 'styled-components';
import { StyledModal, ModalInner } from './modalStyles';
import { H2 } from '../../styles/typography';
import { WHITE } from '../../styles/variables/colours';
export default function FancyModal(props) {
cons... |
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { t... |
const express = require('express');
const router = express.Router();
// https://expressjs.com/es/guide/routing.html
const controller = require('../controllers/usersController');
// BREAD
// Respond to http://localhost:5000/users
router.get('/', controller.browse);
router.get('/:id/edit', controller.edit);
router.put(... |
const Card = require("../common/Card");
const I18n = require("../common/I18n");
const { getStyles } = require("../getStyles");
const { wakatimeCardLocales } = require("../translations");
const { clampValue, getCardColors, FlexLayout } = require("../common/utils");
const { createProgressNode } = require("../common/creat... |
/**
* Mapea API
* Version 4.3.0
* Date 19-06-2018
*/
(function (M) {
/**
* Pixels width for mobile devices
*
* @private
* @type {Number}
*/
M.config('MOBILE_WIDTH', 768);
/**
* The Mapea URL
* @const
* @type {string}
* @public
* @api stable
*/
M.config('MAPEA... |
/*
* Copyright (c) 2020, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 Inc. licenses this file to you 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/li... |
var searchData=
[
['modifier_2721',['modifier',['../../../geometries/html/group__magnetic.html#ga097616a5ebbfd85265a3759b05e1bf76',1,'dg::geo::modifier()'],['../../../geometries/html/group__magnetic.html#ga097616a5ebbfd85265a3759b05e1bf76',1,'modifier()(Global Namespace)']]],
['multistep_5fidentifier_2722',['multis... |
/**
* @license Angular v10.1.0-next.6+7.sha-aaa1d8e
* (c) 2010-2020 Google LLC. https://angular.io/
* License: MIT
*/
!function(e){"function"==typeof define&&define.amd?define(e):e()}((function(){"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is ... |
module.exports = {
up: async (queryInterface, Sequelize) => {
await queryInterface.createTable("revisions", {
id: {
type: "UUID",
allowNull: false,
primaryKey: true,
},
title: {
type: "CHARACTER VARYING",
allowNull: false,
},
text: {
ty... |
(function(){
var path = document.getElementById('path'),
segment = new Segment(path),
begin = document.getElementById('begin'),
end = document.getElementById('end'),
duration = document.getElementById('duration'),
easing = document.getElementById('easing'),
draw = do... |
/**
* @license Apache-2.0
*
* Copyright (c) 2020 The Stdlib Authors.
*
* 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 a... |
import Vue from 'vue';
import { initVueI18n } from '@dcloudio/uni-i18n';
let realAtob;
const b64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
const b64re = /^(?:[A-Za-z\d+/]{4})*?(?:[A-Za-z\d+/]{2}(?:==)?|[A-Za-z\d+/]{3}=?)?$/;
if (typeof atob !== 'function') {
realAtob = function (str) {... |
$(document).ready(function() {
$(".nav-icon").click(function(){
$("body").toggleClass("sideOpen");
});
});
$(function(){
var obj = document.querySelectorAll('.nav-icon');
for(var i = obj.length -1;i>=0;i--){
var toggle = obj[i];
toggleactive(toggle);
}
function toggleactive(toggle) {
... |
const express = require('express');
const path = require('path');
const db = require('./config/connection');
const routes = require('./routes');
const { typeDefs, resolvers } = require('./schemas');
// imported apollo server and auth middleware
const { ApolloServer } = require('apollo-server-express');
const { authMid... |
/*jshint camelcase:false*/
/*global describe:false, it:false, after:false, before:false*/
'use strict';
var chai = require('chai'),
chaiAsPromised = require('chai-as-promised'),
wd = require('wd'),
request = require('request'),
browser,
FirefoxProfile = require('../../lib/firefox_profile'),
te... |
$(function() {
document.getElementById("header-links").addEventListener("animationend", function(e) {
if (e.target.id == "header-links")
$(e.target).removeClass("animated");
})
$(".hamburger").click(function(e) {
$("#header-links").addClass("animated");
$(e.currentTarget)... |
'use strict';
const { Container } = require('typedi');
const { CustomError } = require('../utils/errorHelpers');
class ShippingModel{
async fetchShippingRegions(){
try {
const sql = Container.get('mysql');
const row = await sql.query('SELECT * from shipping_region');
... |
/**
* Copyright (c) UNA, Inc - https://una.io
* MIT License - https://opensource.org/licenses/MIT
*
* @defgroup Messenger Messenger
* @ingroup UnaModules
* @{
*/
/**
* Quill Editor integration
*/
;window.oMessengerEditor = class {
constructor(oOptions) {
const aEditorFunctions = ['onEnter', 'onCh... |
import config from '../config'
const { origin } = config
let fetchInfo = {
status: 'init',
result: false,
data: null
}
const tryFetch = async () => {
if (fetch) {
try {
const res = await fetch(`${origin}/manifest.json`)
const data = await res.json()
fetchInfo.data = data
fetchInfo.... |
export default {
today: 'امروز',
now: 'اکنون',
backToToday: 'بازگشت به روز',
ok: 'تایید',
clear: 'پاک کردن',
month: 'ماه',
year: 'سال',
timeSelect: 'انتخاب زمان',
dateSelect: 'انتخاب تاریخ',
monthSelect: 'یک ماه را انتخاب کنید',
yearSelect: 'یک سال را انتخاب کنید',
decadeSelect: 'یک دهه را انتخا... |
const torrentFileEditor = require('./torrent-file-editor')
torrentFileEditor('./Origin.torrent', './Convert.torrent') |
let items;
function main() {
// let id = document.cookie.id;
// console.log(id);
// console.log(document.cookie);
// var requestOptions = {
// method: 'GET',
// redirect: 'follow'
// };
// fetch("http://198.58.101.98/account/1", requestOptions)
// .then(response => respo... |
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
import React, {Component} from 'react';
import { Text, View, Image, TouchableOpacity, Modal, Dimensions } from 'react-native';
import { createStore } from 'redux'
import { Provider } from 'react-redux'
import ReduxThun... |
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ re... |
import React from 'react';
import LabelledInput from './';
describe('Labelled component', () => {
it('has a label with the appropriate class name', () => {
expect(mount(<LabelledInput text="A label" type="text" label="a label" />).find('label'))
.to.have.className('ui-component__label');
});
it('has an ... |
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';
ReactDOM.render(<App />, document.getElementById('root'));
// If you want your app to work offline and load faster, you can change
// unregister() to register()... |
try {
throw new Error();
} finally {
console.log('finally');
} |
/**
* Module dependencies.
*/
var debug = require('debug')('axon:sub');
var escape = require('escape-regexp');
var Message = require('amp-message');
var Socket = require('./sock');
/**
* Expose `SubSocket`.
*/
module.exports = SubSocket;
/**
* Initialize a new `SubSocket`.
*
* @api private
*/
function SubS... |
import React, { Component, Fragment } from 'react';
import PropTypes from 'prop-types';
const dots = Array.from({ length: 4 }, (item, i) => (
<div className="loader-el" key={i}></div>
));
class Loader extends Component {
render() {
if (this.props.loading) {
return (
<div className="page-loader">... |
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _helpers = require('../helpers');
function sendPasswordResetEmailFactory(email) {
function sendPasswordResetEmail(_ref) {
var firebase = _ref.firebase,
path = _ref.path,
resolve = _ref.resolve;
return (0, _h... |
/*!
DataTables Bootstrap 4 integration
©2011-2017 SpryMedia Ltd - datatables.net/license
*/
(function(b) {
"function" === typeof define && define.amd ? define(["jquery", "datatables.net"], function(a) {
return b(a, window, document)
}) : "object" === typeof exports ? module.exports = function(a, d) {
... |
/**
* @license
* Copyright 2020 The FOAM Authors. All Rights Reserved.
* http://www.apache.org/licenses/LICENSE-2.0
*/
foam.CLASS({
package: 'foam.u2.crunch.wizardflow',
name: 'FilterWizardletsAgent',
implements: [
'foam.core.ContextAgent'
],
imports: [
'crunchService',
'ctrl',
'wizardl... |
const it = {
message: {
new_connection: 'Nuova Connessione',
refresh_connection: 'Ricaricare',
edit_connection: 'Modificare Connessione',
del_connection: 'Elimina Connessione',
close_connection: 'Chiudere Connessione',
add_new_line: 'Inserisci Nuova Riga',
redis_version: 'Versione del Redi... |
import React, { useEffect, useState } from 'react';
import { useSelector } from 'react-redux';
import CategoryForm from '../components/Basics/CategoryForm';
import CategoryList from '../components/Basics/CategoryList';
import MyButton from '../components/UI/MyButton';
import MoneyTraceApi from '../api/index';
import u... |
/*
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 |
module.exports = { prefix: 'far', iconName: 'arrow-alt-circle-right', icon: [512, 512, [], "f35a", "M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99... |
let path = require('path');
let fs = require('fs');
module.exports = {
'init': function(browser) {
browser
.url('file://' + path.join(__dirname, 'index.html'))
.waitForElementVisible('body', 1000)
.pause(300)
.assert.value('input', '16,32/30,90')
.end();
}
}; |
// hello world
// HELLO WORLD
// HELLO WORLD!
// <p>HELLO WORLD!<p>
const shout = (str) => str.toUpperCase();
const punctuate = (punctuationMark) => (str) => str + punctuationMark;
const toHtml = (tag) => (str) => `<${tag}>${str}</${tag}>`;
const exclamate = punctuate("!");
const toParagraph = toHtml("p");
console.l... |
//-- copyright
// OpenProject is a project management system.
// Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License version 3.
//
// OpenProject is a fork of ChiliProject, which is a ... |
import * as React from "react";
function IconMessagePlus({
size = 24,
color = "currentColor",
stroke = 2,
...props
}) {
return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-message-plus" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill=... |
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import { getNodeIds } from '../get_node_ids';
describe('getNodeIds', () => {... |
const path = require('path');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const TsconfigPathsPlugin = require('tsconfig-paths-... |
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow
*/
'use strict';
import type { Node, Element, ComponentType } from 'react';
import type { SyntheticEvent } from 'C... |
new Vue({
el: "#app",
data: function() {
return {
visible: false,
activeName: "first",
ruleForm: {
name: "",
term: "",
email: "",
program: "",
date1: "",
date2: "",
scholarship: "",
status: ""
},
tableData: [
{... |
$(function(){$("#da-slider").cslider({autoplay:true,interval:9e3})});$(function(){$("ul.hover-block li").hover(function(){$(this).find(".hover-content").animate({top:"-3px"},{queue:false,duration:500})},function(){$(this).find(".hover-content").animate({top:"125px"},{queue:false,duration:500})})});$(".dis-nav a").click... |
/**
* Copyright 2006-2014 GrapeCity inc
* Author: isaac.fang@grapecity.com
*/
define(function () {
'use strict';
return [
'$rootScope',
'$scope',
'$location',
function ($rootScope, $scope, $location) {
if ($rootScope.isLogin) {
}
}];
}); |
* Checks if an event is supported in the current execution environment.
*
* NOTE: This will not work correctly for non-generic events such as `change`,
* `reset`, `load`, `error`, and `select`.
*
* Borrows from Modernizr.
*
* @param {string} eventNameSuffix Event name, e.g. "click".
* @param {?boolean... |
var functions_vars =
[
[ "a", "functions_vars.html", null ],
[ "b", "functions_vars_b.html", null ],
[ "c", "functions_vars_c.html", null ],
[ "d", "functions_vars_d.html", null ],
[ "e", "functions_vars_e.html", null ],
[ "f", "functions_vars_f.html", null ],
[ "g", "functions_vars_g.html",... |
import React, { useContext } from 'react';
import DataContext from '../utils/DataContext';
import '../styles/SearchName.css';
const SearchName = () => {
const context = useContext(DataContext);
return (
<div className='searchbox'>
<div>
<span className='search-label'>Search</span>
<in... |
//// [moduleOuterQualification.ts]
declare module outer {
interface Beta { }
module inner {
// .d.ts emit: should be 'extends outer.Beta'
export interface Beta extends outer.Beta { }
}
}
//// [moduleOuterQualification.js]
////[moduleOuterQualification.d.ts]
declare module outer {
interface Beta {... |
const http = require('http');
const chalk = require('chalk');
const path = require('path');
const conf = require('./config/defaultConfig.js');
const route = require('./helper/route');
const openUrl = require('./helper/openUrl');
class Server{
constructor (config) {
this.conf = Object.assign({}, conf, config);
... |
export { formatGestionnaireId, formatMandataire } from "./MandataireUtils"; |
import React, { useEffect } from 'react';
import { connect } from 'react-redux';
import { GoogleLogout } from 'react-google-login';
import RiffList from './RiffList.js';
import EditRiff from './EditRiff.js';
import RiffButton from './RiffButton.js';
import { setRifferName, googleUserLogout } from '../../actions'; // t... |
module.exports = {
parser: 'babel-eslint',
plugins: ['prettier', 'react'],
env: {
node: true,
es6: true
},
overrides: [
{
files: ['webapp/**/*.js'],
env: {
node: false,
browser: true,
commonjs: true
},
globals: {
NODE_ENV: true
}
},... |
/* jshint indent: 2 */
module.exports = function(sequelize, DataTypes) {
return sequelize.define('ZC_FlowFinancing', {
ID: {
type: DataTypes.INTEGER,
allowNull: false,
primaryKey: true,
autoIncrement: true
},
FinancingName: {
type: DataTypes.STRING,
allowNull: false
... |
module.exports={A:{A:{"2":"hB","8":"K D G","129":"A B","161":"E"},B:{"1":"H I","129":"2 C d J M"},C:{"1":"0 1 3 4 6 7 8 9 M H I O P Q R S T U V W X Y Z a b c e f g h i j k l m n o L q r s t u v w x y z HB GB BB CB FB","2":"eB DB","33":"2 F N K D G E A B C d J YB XB"},D:{"1":"0 1 3 4 7 8 9 f g h i j k l m n o L q r s t ... |
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" ... |
var searchData=
[
['cam_5fdriver_62',['CAM_DRIVER',['../class_dragon_limelight.html#aafb5de7911fc118585b3cb32e0c87f13a12f2fed7bd60b413c0cb428219f74ae7',1,'DragonLimelight']]],
['cam_5fmode_63',['CAM_MODE',['../class_dragon_limelight.html#aafb5de7911fc118585b3cb32e0c87f13',1,'DragonLimelight']]],
['cam_5fvision_64... |
import React, { useState } from 'react';
import { connect } from 'react-redux';
import { addTodoRequest } from './thunks';
import './NewTodoForm.css';
const NewTodoForm = ({ todos, onCreatePressed }) => {
const [inputValue, setInputValue] = useState('');
return (
<div className="new-todo-form">
... |
define(function (require, exports, module) {
// render function
var _module1 = {
exports: {}
};
(function (module, exports) {
module.exports = {
render: function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticCl... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.