code stringlengths 2 1.05M |
|---|
/**
* A wrapper around a native element inside of a View.
*
* An `ElementRef` is backed by a render-specific element. In the browser, this is usually a DOM
* element.
*/
// Note: We don't expose things like `Injector`, `ViewContainer`, ... here,
// i.e. users have to ask for what they need. With that, we can build... |
var MarchingOrder = (() => {
'use strict';
const MENU_CMD = '!showMarchingOrderMenu';
const FOLLOW_CMD = '!marchingOrderFollow';
const STOP_ALL_CMD = '!marchingOrderStopAll';
const DEFAULT_USE_CMD = '!marchingOrderUseDefault';
const DEFAULT_SET_CMD = '!marchingOrderSetDefault';
/**
* Makes tokens fol... |
var common = require("./common")
, odbc = require("../")
, assert = require("assert")
, openCallback = 0
, closeCallback = 0
, openCount = 10
, connections = []
;
for (var x = 0; x < openCount; x++ ) {
(function () {
var db = new odbc.Database();
connections.push(db);
db.open(common.connectionString,... |
export default require('@trails/generator-util').service
|
/* Copyright (c) 2006-2011 by OpenLayers Contributors (see authors.txt for
* full list of contributors). Published under the Clear BSD license.
* See http://svn.openlayers.org/trunk/openlayers/license.txt for the
* full text of the license. */
/**
* Namespace: OpenLayers.Date
* Contains implementations of Date.pa... |
"use strict";
var config = require("./../config");
var utils = require("./../utils");
var logger = require("./../logger").logger;
var fs = require("fs");
var _ = require("lodash");
var path = require("path");
var info = {
/**
* Version info
* @param... |
/**
* @fileoverview Tests for no-fixed rule
* @author Beau Gunderson <beau@beaugunderson.com>
*/
"use strict";
let Solium = require("solium");
let wrappers = require("./utils/wrappers");
let toContract = wrappers.toContract;
let userConfig = {
rules: {
"security/no-fixed": "error"
}
};
// Genera... |
// Copyright 2013 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of ... |
/**
* @fileoverview Firebase client Auth API.
* Version: 3.6.10
*
* Copyright 2017 Google Inc. 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://ww... |
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//------------------------------------------------------... |
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//------------------------------------------------------... |
/* *
* (c) 2010-2019 Torstein Honsi
*
* License: www.highcharts.com/license
*/
/**
* Normalized interval.
*
* @interface Highcharts.NormalizedIntervalObject
*//**
* The interval in axis values (ms).
*
* @name Highcharts.NormalizedIntervalObject#unitRange
* @type {number}
*//**
* The count.
*
* @name Hi... |
/*jshint node:true */
/*global describe:false, it:false */
"use strict";
var Orchestrator = require('../');
var should = require('should');
require('mocha');
describe('orchestrator', function() {
describe('_resetSpecificTasks()', function() {
it('should set done = false on specified done tasks', function(done) {
... |
"use strict";
require("requirish")._(module);
var factories = require("lib/misc/factories");
// OPC Unified Architecture, Part 4 page 106
var ApplicationInstanceCertificate_Schema = {
// ApplicationInstanceCertificate with signature created by a Certificate Authority
name: "ApplicationInstanceCertificate",
... |
'use strict';
export default {
browserPort: 3000,
UIPort: 3001,
testPort: 3002,
sourceDir: './app/',
buildDir: './build/',
styles: {
src: 'app/styles/**/*.scss',
dest: 'build/css',
prodSourcemap: false,
sassIncludePaths: []
},
scripts: {
src: 'app/js/**/*.js',
dest: 'build/j... |
import ejs from 'ejs'
import fs from 'fs'
import mkdirp from 'mkdirp'
/**
* @class
*/
export default class BaseCommand {
/**
* @param {String} source
* @param {String} destination
*/
copyFile(source, destination) {
fs.createReadStream(source).pipe(fs.createWriteStream(destination));
this.logEntr... |
'use strict';
var fs = require('fs');
var visitors = require('react-tools/vendor/fbtransform/visitors');
var jstransform = require('jstransform');
var visitorList = visitors.getAllVisitors();
var getJsName = function(filename) {
var dot = filename.lastIndexOf(".");
var baseName = filename.substring(0, dot);
... |
DataExplorer.TableHelpers = (function () {
var tables,
infoTemplate = document.create('i', {
className: 'icon-info button table-data',
title: 'show the contents of this table'
}),
closeTemplate = document.create('i', {
className: 'icon-remove butto... |
import Ember from 'ember';
const {
Route
} = Ember;
export default Route.extend({
breadCrumb: {
title: 'I am Bar Index'
}
});
|
version https://git-lfs.github.com/spec/v1
oid sha256:38067ac6e74cbe55f1203dde50a9f85f7f90b6bfe09e94ea11ccf8a3d31fe6a2
size 713
|
/**
* The Studio: Artist of the Day plugin
* This is a daily activity where users nominate the featured artist for the day, which is selected randomly once voting has ended.
* Only works in a room with the id 'thestudio'
*/
'use strict';
function toArrayOfArrays(map) {
let ret = [];
map.forEach(function (value,... |
version https://git-lfs.github.com/spec/v1
oid sha256:63544f1ce0b192b27c8946c878c716ba60158e9fb1adf9375a57279a2fc15a1a
size 2271
|
import Raphael from 'raphael/raphael';
Raphael.prototype.commitTooltip = function commitTooltip(x, y, commit) {
const boxWidth = 300;
const icon = this.image(gon.relative_url_root + commit.author.icon, x, y, 20, 20);
const nameText = this.text(x + 25, y + 10, commit.author.name);
const idText = this.text(x, y ... |
'use strict';
exports.__esModule = true;
exports.default = function (hexColor, lightness) {
var hex = String(hexColor).replace(/[^0-9a-f]/gi, '');
if (hex.length < 6) {
hex = hex.replace(/(.)/g, '$1$1');
}
var lum = lightness || 0;
var rgb = '#';
var c = undefined;
for (var i = 0; i < 3; ++i) {
... |
module.exports={title:"RubyGems",slug:"rubygems",get svg(){return'<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>RubyGems</title><path d="'+this.path+'"/></svg>'},path:"M7.81 7.9l-2.97 2.95 7.19 7.18 2.96-2.95 4.22-4.23-2.96-2.96v-.01H7.8zM12 0L1.53 6v12L12 24l10.47-6V6L12 0zm8.47 16.85L1... |
function accepts(language) {
return require('../')({
headers: {
'accept-language': language || ''
}
})
}
describe('accepts.languages()', function(){
describe('with no arguments', function(){
describe('when Accept-Language is populated', function(){
it('should return accepted types', func... |
/*
mustache.js — Logic-less templates in JavaScript
See http://mustache.github.com/ for more info.
*/
var Mustache = function() {
var Renderer = function() {};
Renderer.prototype = {
otag: "{{",
ctag: "}}",
pragmas: {},
buffer: [],
pragmas_implemented: {
"IMPLICIT-ITERATOR": true
... |
import {localeModule, test} from '../qunit';
import moment from '../../moment';
localeModule('de');
test('parse', function (assert) {
var tests = 'Januar Jan._Februar Feb._März März_April Apr._Mai Mai_Juni Juni_Juli Juli_August Aug._September Sep._Oktober Okt._November Nov._Dezember Dez.'.split('_'), i;
functi... |
/**
* @param {string} value
* @returns {RegExp}
* */
/**
* @param {RegExp | string } re
* @returns {string}
*/
function source(re) {
if (!re) return null;
if (typeof re === "string") return re;
return re.source;
}
/**
* @param {...(RegExp | string) } args
* @returns {string}
*/
function concat(...args... |
/* Inspire Tree
* @version 6.0.0-alpha.1
* https://github.com/helion3/inspire-tree
* @copyright Copyright 2015 Helion3, and other contributors
* @license Licensed under MIT
* see https://github.com/helion3/inspire-tree/blob/master/LICENSE
*/
(function (global, factory) {
typeof exports === 'object' && t... |
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S11.8.6_A2.1_T1;
* @section: 11.8.6;
* @assertion: Operator "instanceof" uses GetValue;
* @description: Either Expression is not Reference or GetBase is not null;
*/
//C... |
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: "CharacterEscapeSequnce :: SingleEscapeSequence"
es5id: 7.8.4_A4.1_T2
description: "SingleEscapeSequence :: one of ' \" \\"
---*/
//CHECK#1
if (String.fromCharCode(0x0027) !=... |
version https://git-lfs.github.com/spec/v1
oid sha256:8fb458d5e0e2c5d65e097235388fc06997991621e1d122e250e97b52c03fb41f
size 8274
|
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'colorbutton', 'en-gb', {
auto: 'Automatic',
bgColorTitle: 'Background Colour',
colors: {
'000': 'Black',
'800000': 'Maroon',
'8B... |
context('User Groups', () => {
beforeEach(() => {
cy.umbracoLogin(Cypress.env('username'), Cypress.env('password'));
});
it('Create member group', () => {
const name = "Test Group";
cy.umbracoEnsureMemberGroupNameNotExists(name);
cy.umbracoSection('member');
cy.ge... |
return "'" + this.replace('\\', '\\\\').replace("'", '\\\'') + "'";
// comment
|
'use strict';
const align = {
right: alignRight,
center: alignCenter
};
const top = 0;
const right = 1;
const bottom = 2;
const left = 3;
export class UI {
constructor(opts) {
var _a;
this.width = opts.width;
this.wrap = (_a = opts.wrap) !== null && _a !== void 0 ? _a : true;
... |
/**
* @fileoverview Tests for no-magic-numbers rule.
* @author Vincent Lemeunier
*/
"use strict";
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
const rule = require("../../../lib/rul... |
(function($) {
$.widget('pageflow.hideTextOnSwipe', {
_create: function() {
this.element.swipeGesture({
orientation: 'x'
});
this.element.on('swipegestureleft', function() {
pageflow.hideText.activate();
});
this.element.on('touchstart MSPointerDown pointerdown mous... |
module.exports = function(config) {
return !/^v(4|6)/.test(process.version);
};
|
version https://git-lfs.github.com/spec/v1
oid sha256:056ea780a4642ef75cef42293c9f0a75bf57873516dae527e0b48998868dfd39
size 2091
|
/*globals equal,test*/
Ink.requireModules(['Ink.UI.FormValidator_1', 'Ink.Dom.Element_1', 'Ink.Dom.Selector_1', 'Ink.Util.Array_1', 'Ink.Dom.Event_1'], function (FormValidator, InkElement, Selector, InkArray, InkEvent) {
'use strict';
var body = document.getElementsByTagName('body')[0];
test('required text... |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'basicstyles', 'ar', {
bold: 'غامق',
italic: 'مائل',
strike: 'يتوسطه خط',
subscript: 'منخفض',
superscript: 'مرتفع',
underline: 'تسطي... |
'use strict';
var React = require('react/addons');
var PureRenderMixin = React.addons.PureRenderMixin;
var SvgIcon = require('../../svg-icon');
var AvPlayCircleOutline = React.createClass({
displayName: 'AvPlayCircleOutline',
mixins: [PureRenderMixin],
render: function render() {
return React.createElemen... |
(function (factory) {
if (typeof define === 'function' && define.amd) {
define(['jquery'], factory);
} else if (typeof module === 'object' && typeof module.exports === 'object') {
factory(require('jquery'));
} else {
factory(jQuery);
}
}(function (jQuery) {
// Italian
jQuery.timeago.settings.str... |
/* ***** 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:
* * Redistributions of so... |
/**
* @format
* @flow
*/
// nope
// context -1
// context -2
// context -3
(null: empty); // Error: null ~> empty
// context +1
// context +2
// context +3
// nope
|
version https://git-lfs.github.com/spec/v1
oid sha256:da06c3b3d37f5e97e47feddb285099005ffae0ba73c9ef7aa89f07322e13c54d
size 2459
|
/*
* /MathJax/localization/bcc/MathMenu.js
*
* Copyright (c) 2009-2018 The MathJax Consortium
*
* 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/lice... |
var Lab = require('lab');
var Code = require('code');
var Constants = require('../../../../client/pages/login/Constants');
var lab = exports.lab = Lab.script();
lab.experiment('Login Constants', function () {
lab.test('it loads', function (done) {
Code.expect(Constants).to.exist();
done();
... |
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const makeSerializable = require("../util/makeSerializable");
const ModuleDependency = require("./ModuleDependency");
const ModuleDependencyTemplateAsId = require("./ModuleDependencyTemplateAsId");
class... |
/*!
Copyright (c) 2016 Jed Watson.
Licensed under the MIT License (MIT), see
http://jedwatson.github.io/react-select
*/
'use strict';
Object.defineProperty(exports, '__esModule', {
value: true
});
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arg... |
ace.define("ace/mode/sh_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(acequire, exports, module) {
"use strict";
var oop = acequire("../lib/oop");
var TextHighlightRules = acequire("./text_highlight_rules").TextHighlightRules;
var reservedKeywords = exports.re... |
WYMeditor.STRINGS['pt-br'] = {
Strong: 'Resaltar',
Emphasis: 'Enfatizar',
Superscript: 'Sobre escrito',
Subscript: 'Sub escrito ',
Ordered_List: 'Lista ordenada',
Unordered_List: 'Lista desordenada',
Indent: 'Indentado',
Outdent: 'Desidentar',
Undo: 'Desfazer',
Redo: 'Refazer',
Link: '... |
/*
* grunt-replace
*
* Copyright (c) 2014 outaTiME
* Licensed under the MIT license.
* https://github.com/outaTiME/grunt-replace/blob/master/LICENSE-MIT
*/
'use strict';
// plugin
module.exports = function (grunt) {
var path = require('path');
var fs = require('fs');
var chalk = require('chalk');
var... |
//Author : @arboshiki
/**
* Generates random string of n length.
* String contains only letters and numbers
*
* @param {int} n
* @returns {String}
*/
Math.randomString = function (n) {
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for (var i = 0;... |
/* *
*
* (c) 2010-2019 Torstein Honsi
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
'use strict';
import H from './Globals.js';
/**
* @typedef {"circlepin"|"flag"|"squarepin"} Highcharts.FlagsShapeValue
*/
import U from './Utilit... |
/**
* @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
*/
import { Injectable } from '@angular/core';
import { __platform_browser_private__ } from '@angular/platform-browser';... |
'use strict';
/**
* @name $$cookieWriter
* @requires $document
*
* @description
* This is a private service for writing cookies
*
* @param {string} name Cookie name
* @param {string=} value Cookie value (if undefined, cookie will be deleted)
* @param {Object=} options Object with options that need to be store... |
/// Copyright (c) 2009 Microsoft Corporation
///
/// Redistribution and use in source and binary forms, with or without modification, are permitted provided
/// that the following conditions are met:
/// * Redistributions of source code must retain the above copyright notice, this list of conditions and
/// ... |
//
// converter.js
// Mr-Data-Converter
//
// Created by Shan Carter on 2010-09-01.
//
function DataConverter(nodeId) {
//---------------------------------------
// PUBLIC PROPERTIES
//---------------------------------------
this.nodeId = nodeId;
this.node = $("#"+nod... |
/**
* @license
* Visual Blocks Editor
*
* Copyright 2016 Google Inc.
* https://developers.google.com/blockly/
*
* 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.apach... |
/**
* @license AngularJS v1.3.4
* (c) 2010-2014 Google, Inc. http://angularjs.org
* License: MIT
*/
(function(window, document, undefined) {'use strict';
/**
* @description
*
* This object provides a utility for producing rich Error messages within
* Angular. It can be called as follows:
*
* var exampleMinEr... |
CKEDITOR.plugins.setLang("uicolor","el",{title:"Διεπαφή Επιλογής Χρωμάτων",options:"Color Options",highlight:"Highlight",selected:"Selected Color",predefined:"Προκαθορισμένα σύνολα χρωμάτων",config:"Επικολλήστε αυτό το κείμενο στο αρχείο config.js"}); |
/**
* @module PreloadJS
*/
(function () {
"use strict";
/**
* A PreloadJS plugin provides a way to inject functionality into PreloadJS to load file types that are unsupported,
* or in a way that PreloadJS does not.
*
* <strong>Note that this class is mainly for documentation purposes, and is not a real pl... |
exports.BattleFormatsData = {
purrloin: {
randomBattleMoves: ["foulplay","swagger","substitute","thunderwave"],
tier: "LC"
},
liepard: {
randomBattleMoves: ["foulplay","swagger","substitute","thunderwave"],
tier: "NU"
}
}; |
///*
// * storage-object-test.js: Tests for uploading files to Rackspace Cloudfiles when not authenticated.
// *
// * (C) 2010 Charlie Robbins, Ken Perkins, Ross Kukulinski & the Contributors.
// * MIT LICENSE
// *
// */
//
// TODO Enable all rackspace storage client tests with mocks
//var path = require('path'),
// ... |
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('leaflet'), require('react'), require('react-dom')) :
typeof define === 'function' && define.amd ? define(['exports', 'leaflet', 'react', 'react-dom'], factory) :
(factory((global.ReactLeaflet = {}),... |
var os = require('os')
, fs = require('fs')
, path = require('path')
, spawn = require('child_process').spawn
var mkdirp = require('mkdirp')
var phantomscript = path.join(__dirname, 'phantomscript.js')
module.exports = { process: processMermaid }
function processMermaid(files, _options, _next) {
var options... |
/* jquery.LavaLamp v1.4
http://nixbox.com/projects/jquery-lavalamp/
Copyright (c) 2008-2012 Jolyon Terwilliger - jolyon@nixbox.com
Dual licensed under the MIT and GPL licenses:
http://www.opensource.org/licenses/mit-license.php
http://www.gnu.org/licenses/gpl.html */
(function(c){jQuery.fn.lavaLamp... |
YUI.add('history-hash-ie', function (Y, NAME) {
/**
* Improves IE6/7 support in history-hash by using a hidden iframe to create
* entries in IE's browser history. This module is only needed if IE6/7 support
* is necessary; it's not needed for any other browser.
*
* @module history
* @submodule history-hash-ie
*... |
/* flatpickr v4.0.2, @license MIT */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(factory((global.pt = {})));
}(this, (function (exports) { 'use strict';
var fp = typeof wi... |
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2011 Zynga Inc.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software an... |
var Checker = require('../../../lib/checker');
var expect = require('chai').expect;
describe('rules/validate-comment-position', function() {
var checker;
beforeEach(function() {
checker = new Checker();
checker.registerDefaultRules();
});
it('accepts valid position', function() {
... |
/**
* ag-grid - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
* @version v12.0.2
* @link http://www.ag-grid.com/
* @license MIT
*/
"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c ... |
if (!RedactorPlugins) var RedactorPlugins = {};
RedactorPlugins.filemanager = function()
{
return {
init: function()
{
if (!this.opts.fileManagerJson) return;
this.modal.addCallback('file', this.filemanager.load);
},
load: function()
{
var $modal = this.modal.getModal();
this.modal.createTabbe... |
'use strict';
var numbro = require('../../numbro'),
culture = require('../../languages/th-TH');
numbro.culture(culture.langLocaleCode, culture);
exports['culture:th-TH'] = {
setUp: function (callback) {
numbro.culture('th-TH');
callback();
},
tearDown: function (callback) {
n... |
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
import { formatMuiErrorMessage as _formatMuiErrorMessage } from "@material-ui/utils";
import { deepmerge } from '@material-ui/utils';
import common from '../colors/common... |
/**
* @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
*/
"use strict";
var core_1 = require('@angular/core');
var core_private_1 = require('../core_private');
var browser_1 =... |
/*
Leaflet.markercluster, Provides Beautiful Animated Marker Clustering functionality for Leaflet, a JS library for interactive maps.
https://github.com/Leaflet/Leaflet.markercluster
(c) 2012-2013, Dave Leaver, smartrak
*/
(function (window, document, undefined) {/*
* L.MarkerClusterGroup extends L.FeatureGroup by ... |
/**
* $Id: editor_plugin_src.js 917 2008-09-03 19:08:38Z spocke $
*
* @author Moxiecode
* @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
*/
(function() {
var DOM = tinymce.DOM, Element = tinymce.dom.Element, Event = tinymce.dom.Event, each = tinymce.each, is = tinymce.is;
... |
/*
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'ru', {
options: 'Выбор специального символа',
title: 'Выберите специальный символ',
toolbar: 'Вставить специальный символ'
} );
|
'use strict';
var Utils = require('../../utils');
/**
Returns an object that treats SQLite's inabilities to do certain queries.
@class QueryInterface
@static
*/
var QueryInterface = module.exports = {
/**
A wrapper that fixes SQLite's inability to remove columns from existing tables.
It will create a b... |
//>>built
define("dojox/widget/nls/id/FilePicker",({name:"Nama",path:"Jalur",size:"Ukuran (dalam byte)"}));
|
$(function() {
$("#modal-1").on("change", function() {
if ($(this).is(":checked")) {
$("body").addClass("modal-open");
} else {
$("body").removeClass("modal-open");
}
});
$(".modal-fade-screen, .modal-close").on("click", function() {
$(".modal-state:checked").prop("checked", false).ch... |
/*!
* Vue.js v2.6.11
* (c) 2014-2019 Evan You
* Released under the MIT License.
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, global.Vue = fac... |
/*
* Copyright (c) 2015 - present Adobe Systems Incorporated. All rights reserved.
*
* 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
* ... |
// Paver
// Description: A minimal panorama/image viewer replicating the effect seen in Facebook Pages app
// Version: 1.0.0
// Author: Terry Mun
// Author URI: http://terrymun.com
;(function ( $, window, document, undefined ) {
"use strict";
// Create the defaults once
var $w = $(window),
$d = $(document... |
/*************************************************************
*
* MathJax/jax/output/HTML-CSS/entities/q.js
*
* Copyright (c) 2010-2013 The MathJax Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may ob... |
'use strict';
angular.module('com.module.core')
/**
* @ngdoc function
* @name com.module.core.controller:LayoutCtrl
* @description Layout controller
* @requires $scope
* @requires $rootScope
* @requires CoreService
* @requires gettextCatalog
**/
.controller('LayoutCtrl', function($scope, $ro... |
/*
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'indent', 'lv', {
indent: 'Palielināt atkāpi',
outdent: 'Samazināt atkāpi'
} );
|
!function(e,t){"function"==typeof define&&define.amd?define(["exports"],t):"undefined"!=typeof exports?t(exports):(t(t={}),e.settings=t)}("undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:this,function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t={prefix:... |
/*
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'docprops', 'sr', {
bgColor: 'Боја позадине',
bgFixed: 'Фиксирана позадина',
bgImage: 'УРЛ позадинске слике',
charset: 'Кодирање скупа карактера',... |
'use strict';var mode=typeof window==='undefined'?'server':'browser';var Vault=(function(){var Local,Session,Server;var conf={vaultFile:'/.vault.json',vaultData:'__vaultData'};var parse=function(value){if(value===null||value===undefined||value==='undefined'){return undefined;}
if(value==='null'){return null;}
if(value=... |
/**
* Copyright (c) 2016-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.
*
* @flow
*/... |
tinyMCE.addI18n('pl.searchreplace_dlg',{findwhat:"Znajd\u017a...",replacewith:"Zamie\u0144 na...",direction:"Kierunek",up:"W g\u00f3r\u0119",down:"W d\u00f3\u0142",mcase:"Uwzgl\u0119dniaj wielko\u015b\u0107 liter",findnext:"Znajd\u017a nast\u0119pny",allreplaced:"Wszystkie wyst\u0105pienia szukanego fragmentu zosta\u01... |
/**!
* AngularJS file upload directives and services. Supports: file upload/drop/paste, resume, cancel/abort,
* progress, resize, thumbnail, preview, validation and CORS
* FileAPI Flash shim for old browsers not supporting FormData
* @author Danial <danial.farid@gmail.com>
* @version 12.2.0
*/
(function () {
... |
!function($, wysi) {
"use strict";
var tpl = {
"font-styles": function(locale, options) {
var size = (options && options.size) ? ' btn-'+options.size : '';
return "<li class='dropdown'>" +
"<a class='btn btn-default dropdown-toggle" + size + "' data-toggle='dropdow... |
/*
System bundles
Allows a bundle module to be specified which will be dynamically
loaded before trying to load a given module.
For example:
SystemJS.bundles['mybundle'] = ['jquery', 'bootstrap/js/bootstrap']
Will result in a load to "mybundle" whenever a load to "jquery"
or "bootstrap/js/bootstrap" i... |
/**
* 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.
*
* @provides... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.