commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 3.26k | new_contents stringlengths 1 4.43k | subject stringlengths 15 624 | message stringlengths 15 4.7k | lang stringclasses 3
values | license stringclasses 13
values | repos stringlengths 5 91.5k |
|---|---|---|---|---|---|---|---|---|---|
c21d52d96ec21d9a43da3467ee66364619e1e3f4 | app/containers/FlagView.js | app/containers/FlagView.js | import React from 'react';
import { connect } from 'react-redux';
import admin from '../utils/admin';
import Concept from '../components/Concept';
const FlagView = React.createClass({
componentWillMount() {
this.props.fetchFlags();
},
render() {
const { flags } = this.props;
return (
<div c... | import React from 'react';
import { connect } from 'react-redux';
import admin from '../utils/admin';
import Concept from '../components/Concept';
const FlagView = React.createClass({
componentWillMount() {
this.props.fetchFlags();
},
render() {
const { flags } = this.props;
return (
<div c... | Add missing key to flags view to remove warning | Add missing key to flags view to remove warning
| JavaScript | mit | transparantnederland/relationizer,transparantnederland/relationizer,waagsociety/tnl-relationizer,transparantnederland/browser,transparantnederland/browser,waagsociety/tnl-relationizer |
9730bfb3db49d210d496e2289bf90154ab497612 | scripts/components/Footer.js | scripts/components/Footer.js | import { format } from 'date-fns';
import React from 'react'
import { Navigation } from './blocks/Navigation'
import styles from './Main.css'
const socialLinks = [
{
to: 'https://stackoverflow.com/story/usehotkey',
title: 'StackOverflow'
},
// {
// to: 'https://yadi.sk/d/QzyQ04br3HX... | import { format } from 'date-fns';
import React from 'react'
import { Navigation } from './blocks/Navigation'
import styles from './Main.css'
const socialLinks = [
{
to: 'https://stackoverflow.com/story/usehotkey',
title: 'StackOverflow'
},
// {
// to: 'https://yadi.sk/d/QzyQ04br3HX... | Remove first year from footer | [change] Remove first year from footer
| JavaScript | mit | usehotkey/my-personal-page,usehotkey/my-personal-page,usehotkey/my-personal-page,usehotkey/my-personal-page |
ad207a87639cef156201b8e2a208f38c51e93c50 | src/js/math.js | src/js/math.js | import THREE from 'three';
export function randomPointOnSphere( vector = new THREE.Vector3() ) {
const theta = 2 * Math.PI * Math.random();
const u = 2 * Math.random() - 1;
const v = Math.sqrt( 1 - u * u );
return vector.set(
v * Math.cos( theta ),
v * Math.sin( theta ),
u
);
}
| import THREE from 'three';
export function randomPointOnSphere( vector = new THREE.Vector3() ) {
const theta = 2 * Math.PI * Math.random();
const u = 2 * Math.random() - 1;
const v = Math.sqrt( 1 - u * u );
return vector.set(
v * Math.cos( theta ),
v * Math.sin( theta ),
u
);
}
export function ... | Add 1D lerp(), inverseLerp(), and map(). | Add 1D lerp(), inverseLerp(), and map().
| JavaScript | mit | razh/flying-machines,razh/flying-machines |
20c0f4d04aa9581a717741bb1be7f73167e358b0 | optional.js | optional.js | module.exports = function(module, options){
try{
if(module[0] in {".":1}){
module = process.cwd() + module.substr(1);
}
return require(module);
}catch(e){
if (err.code !== "MODULE_NOT_FOUND" && options && options.rethrow) {
throw err;
}
}
return null;
};
| module.exports = function(module, options){
try{
if(module[0] in {".":1}){
module = process.cwd() + module.substr(1);
}
return require(module);
}catch(err){
if (err.code !== "MODULE_NOT_FOUND" && options && options.rethrow) {
throw err;
}
}
return null;
};
| Fix a typo (`e` -> `err`) | Fix a typo (`e` -> `err`) | JavaScript | mit | tony-o/node-optional,peerbelt/node-optional |
e057cdfb71ccd2f7d70157ccac728736fbcad450 | tests/plugins/front-matter.js | tests/plugins/front-matter.js | import test from 'ava';
import {fromString, fromNull, fromStream} from '../helpers/pipe';
import fm from '../../lib/plugins/front-matter';
test('No Compile - null', t => {
return fromNull(fm)
.then(output => {
t.is(output, '', 'No output');
});
});
test('Error - is stream', t => {
t.throws(fromStrea... | import test from 'ava';
import {fromString} from '../helpers/pipe';
import plugin from '../helpers/plugin';
import fm from '../../lib/plugins/front-matter';
test('Extracts Front Matter', t => {
const input = `---
foo: bar
baz:
- qux
- where
- waldo
more:
good:
stuff:
- lives: here
- and: here... | Add tests for actual FM | :white_check_mark: Add tests for actual FM
| JavaScript | mit | Snugug/gulp-armadillo,kellychurchill/gulp-armadillo |
2aec558cb2518426284b0a6bca79ab87178a5ccb | TrackedViews.js | TrackedViews.js | /**
* @flow
*/
import React, {
Component,
Text,
View,
} from 'react-native';
import {registerView, unregisterView} from './ViewTracker'
/**
* Higher-order component that turns a built-in View component into a component
* that is tracked with the key specified in the viewKey prop. If the viewKey
* pr... | /**
* @flow
*/
import React, {
Component,
Text,
View,
} from 'react-native';
import {registerView, unregisterView} from './ViewTracker'
/**
* Higher-order component that turns a built-in View component into a component
* that is tracked with the key specified in the viewKey prop. If the viewKey
* pr... | Fix crash when dragging definitions | Fix crash when dragging definitions
I was accidentally updating the view key for a view, and the tracked view code
couldn't handle prop changes.
| JavaScript | mit | alangpierce/LambdaCalculusPlayground,alangpierce/LambdaCalculusPlayground,alangpierce/LambdaCalculusPlayground |
11215560382e5c0b4484019dbf8541351337f7fb | src/mixins/size.js | src/mixins/size.js | draft.mixins.size = {
// Get/set the element's width & height
size(width, height) {
return this.prop({
width: draft.types.length(width),
height: draft.types.length(height)
// depth: draft.types.length(depth)
});
}
};
| draft.mixins.size = {
// Get/set the element's width & height
size(width, height) {
return this.prop({
width: draft.types.length(width),
height: draft.types.length(height)
// depth: draft.types.length(depth)
});
},
scale(width, height) {
return this.prop({
width: this.prop('... | Add scale() function for relative sizing | Add scale() function for relative sizing
| JavaScript | mit | D1SC0tech/draft.js,D1SC0tech/draft.js |
b24cd5018185dc2ef35598a7cae863322d89c8c7 | app/scripts/fixBackground.js | app/scripts/fixBackground.js | 'use strict';
var fixBackground = function(){
var backgroundImage = document.getElementById('page-background-img');
if(window.innerHeight >= backgroundImage.height) {
backgroundImage.style.height = '100%';
backgroundImage.style.width = null;
}
if(window.innerWidth >= backgroundImage.wid... | 'use strict';
var fixBackground = function(){
var backgroundImage = document.getElementById('page-background-img');
if(window.innerHeight >= backgroundImage.height) {
backgroundImage.style.height = '100%';
backgroundImage.style.width = null;
}
if(window.innerWidth >= backgroundImage.wid... | Disable image grab event for background | Disable image grab event for background
| JavaScript | mit | Pozo/elvira-redesign |
31fe75787678465efcfd10dafbb9c368f72d9758 | hbs-builder.js | hbs-builder.js | define(["handlebars-compiler"], function (Handlebars) {
var buildMap = {},
templateExtension = ".hbs";
return {
// http://requirejs.org/docs/plugins.html#apiload
load: function (name, parentRequire, onload, config) {
// Get the template extension.
var ext = (config.hbs && config.hbs.tem... | define(["handlebars-compiler"], function (Handlebars) {
var buildMap = {},
templateExtension = ".hbs";
return {
// http://requirejs.org/docs/plugins.html#apiload
load: function (name, parentRequire, onload, config) {
// Get the template extension.
var ext = (config.hbs && config.hbs.tem... | Include handlebars module in build process | Include handlebars module in build process
| JavaScript | mit | designeng/requirejs-hbs,designeng/requirejs-hbs,designeng/requirejs-hbs |
695f3c5607fae90b13fe6c85ffd6412afcaff0bf | packages/react-app-rewired/index.js | packages/react-app-rewired/index.js | const babelLoaderMatcher = function(rule) {
return rule.loader && rule.loader.indexOf("/babel-loader/") != -1;
}
const getLoader = function(rules, matcher) {
var loader;
rules.some(rule => {
return loader = matcher(rule)
? rule
: getLoader(rule.use || rule.oneOf || [], matcher);
});
return ... | const babelLoaderMatcher = function(rule) {
return rule.loader && rule.loader.indexOf("babel-loader/") != -1;
}
const getLoader = function(rules, matcher) {
var loader;
rules.some(rule => {
return loader = matcher(rule)
? rule
: getLoader(rule.use || rule.oneOf || [], matcher);
});
return l... | Fix babelLoaderMatcher for other npm install tool | Fix babelLoaderMatcher for other npm install tool
like https://github.com/cnpm/npminstall
| JavaScript | mit | timarney/react-app-rewired,timarney/react-app-rewired |
38080adc1302b88af2c5d19d70720b53d4f464a7 | jest.config.js | jest.config.js | /* @flow */
module.exports = {
coverageDirectory: 'reports/coverage',
coveragePathIgnorePatterns: [
'/node_modules/',
'/packages/mineral-ui-icons',
'/website/'
],
moduleNameMapper: {
'.*react-docgen-loader.*': '<rootDir>/utils/emptyObject.js',
'.(md|svg)$': '<rootDir>/utils/emptyString.js'
... | /* @flow */
module.exports = {
coverageDirectory: 'reports/coverage',
coveragePathIgnorePatterns: [
'/node_modules/',
'/packages/mineral-ui-icons',
'/website/'
],
moduleNameMapper: {
'.*react-docgen-loader.*': '<rootDir>/utils/emptyObject.js',
'.(md|svg)$': '<rootDir>/utils/emptyString.js'
... | Update testURL to accommodate JSDOM update | chore(jest): Update testURL to accommodate JSDOM update
- See https://github.com/jsdom/jsdom/issues/2304
| JavaScript | apache-2.0 | mineral-ui/mineral-ui,mineral-ui/mineral-ui |
f9b3837c53bb0572c95f2f48b6855250870ea2f1 | js/Landing.js | js/Landing.js | import React from 'react'
const Landing = React.createClass({
render () {
return (
<div className='landing'>
<h1>svideo</h1>
<input type='text' placeholder='Search' />
<a>or Browse All</a>
</div>
)
}
})
export default Landing
| import React from 'react'
import { Link } from 'react-router'
const Landing = React.createClass({
render () {
return (
<div className='landing'>
<h1>svideo</h1>
<input type='text' placeholder='Search' />
<Link to='/search'>or Browse All</Link>
</div>
)
}
})
export defau... | Make the "or Browse All" button a link that takes you to /search route | Make the "or Browse All" button a link that takes you to /search route
| JavaScript | mit | galaxode/ubiquitous-eureka,galaxode/ubiquitous-eureka |
680debc53973355b553155bdfae857907af0a259 | app/assets/javascripts/edsn.js | app/assets/javascripts/edsn.js | var EDSN_THRESHOLD = 30;
var EdsnSwitch = (function(){
var editing;
var validBaseLoads = /^(base_load|base_load_edsn)$/;
EdsnSwitch.prototype = {
enable: function(){
if(editing){
swapEdsnBaseLoadSelectBoxes();
}
},
isEdsn: function(){
return validBaseLoads.test($(this).val... | var EDSN_THRESHOLD = 30;
var EdsnSwitch = (function(){
var editing;
var validBaseLoads = /^(base_load|base_load_edsn)$/;
EdsnSwitch.prototype = {
enable: function(){
if(editing){
swapEdsnBaseLoadSelectBoxes();
}
},
isEdsn: function(){
return validBaseLoads.test($(this).dat... | Use data attribute instead of val() | Use data attribute instead of val()
| JavaScript | mit | quintel/etmoses,quintel/etmoses,quintel/etmoses,quintel/etmoses,quintel/etmoses |
6321dc80f757cb1d83c4c06e277e0efcba5b853a | site/remark.js | site/remark.js | const visit = require('unist-util-visit');
const { kebabCase } = require('lodash');
const IGNORES = [
'https://raw.githubusercontent.com/styleguidist/react-styleguidist/master/templates/DefaultExample.md',
'https://github.com/styleguidist/react-styleguidist/blob/master/.github/Contributing.md',
];
const REPLACEMENTS... | const visit = require('unist-util-visit');
const { kebabCase } = require('lodash');
const IGNORES = [
'https://raw.githubusercontent.com/styleguidist/react-styleguidist/master/templates/DefaultExample.md',
'https://github.com/styleguidist/react-styleguidist/blob/master/.github/Contributing.md',
];
const REPLACEMENTS... | Fix links on the site, again 🦐 | docs: Fix links on the site, again 🦐
Closes #1650
| JavaScript | mit | styleguidist/react-styleguidist,sapegin/react-styleguidist,styleguidist/react-styleguidist,styleguidist/react-styleguidist,sapegin/react-styleguidist |
24d6b502081b81eff9ce1775002015f59ee3ccba | blueprints/component/index.js | blueprints/component/index.js | 'use strict'
module.exports = {
description: "A basic React component",
generateReplacements(args) {
let propTypes = "";
let defaultProps = "";
if(args.length) {
propTypes = "__name__.propTypes = {";
defaultProps = "\n getDefaultProps: function() {";
... | 'use strict'
module.exports = {
description: "A basic React component",
generateReplacements(args) {
let propTypes = "";
let defaultProps = "";
if(args.length) {
propTypes = "__name__.propTypes = {";
defaultProps = "\n getDefaultProps: function() {";
... | Check for badly formatted props | Check for badly formatted props
| JavaScript | mit | reactcli/react-cli,reactcli/react-cli |
3063e971479ca50e3e7d96d89db26688f5f74375 | hobbes/vava.js | hobbes/vava.js | var vavaClass = require('./vava/class');
var vavaMethod = require('./vava/method');
var vavaType = require('./vava/type');
exports.scope = require('./vava/scope');
// TODO automate env assembly
exports.env = {
VavaClass : vavaClass.VavaClass,
VavaMethod : vavaMethod.VavaMethod,
TypedVariable : vavaType.TypedVa... | var utils = (typeof hobbes !== 'undefined' && hobbes.utils) || require('./utils');
var vavaClass = require('./vava/class');
var vavaMethod = require('./vava/method');
var vavaType = require('./vava/type');
exports.scope = require('./vava/scope');
exports.env = utils.merge(
vavaClass,
vavaMethod,
vavaType
);
| Add automatic assembly of env | Add automatic assembly of env
| JavaScript | mit | knuton/hobbes,knuton/hobbes,knuton/hobbes,knuton/hobbes |
b1a4e4275743dd30a19eb7005af386596c752eb9 | src/kb/widget/legacy/helpers.js | src/kb/widget/legacy/helpers.js | /*global define*/
/*jslint browser:true,white:true*/
define([
'jquery',
'kb_common/html'
], function ($, html) {
'use strict';
// jQuery plugins that you can use to add and remove a
// loading giff to a dom element.
$.fn.rmLoading = function () {
$(this).find('.loader').remove();
};... | define([
'jquery',
'kb_common/html'
], function (
$,
html
) {
'use strict';
// jQuery plugins that you can use to add and remove a
// loading giff to a dom element.
$.fn.rmLoading = function () {
$(this).find('.loader').remove();
};
$.fn.loading = function (text, big) {
... | Remove commented out code that was upsetting uglify | Remove commented out code that was upsetting uglify
| JavaScript | mit | eapearson/kbase-ui-widget |
2e99a372b401cdfb8ecaaccffd3f8546c83c7da5 | api/question.js | api/question.js | var bodyParser = require('body-parser');
var express = require('express');
var database = require('../database');
var router = express.Router();
router.get('/', function(req, res) {
database.Question.find({}, function(err, questions) {
if (err) {
res.sendStatus(500);
}
else {
... | var bodyParser = require('body-parser');
var express = require('express');
var database = require('../database');
var router = express.Router();
router.get('/', function(req, res) {
database.Question.find({}, function(err, questions) {
if (err) {
res.status(500);
}
else {
... | Fix error with resending response. | Fix error with resending response.
| JavaScript | apache-2.0 | skalmadka/TierUp,skalmadka/TierUp |
33e775c0e0e025847297c138261689dd5354a7d8 | api/resolver.js | api/resolver.js | var key = require('../utils/key');
var sync = require('synchronize');
var request = require('request');
var _ = require('underscore');
// The API that returns the in-email representation.
module.exports = function(req, res) {
var url = req.query.url.trim();
// Giphy image urls are in the format:
// http://giph... | var key = require('../utils/key');
var sync = require('synchronize');
var request = require('request');
var _ = require('underscore');
// The API that returns the in-email representation.
module.exports = function(req, res) {
var url = req.query.url.trim();
// Giphy image urls are in the format:
// http://giph... | Remove paragraphs since they add unnecessary vertical padding. | Remove paragraphs since they add unnecessary vertical padding. | JavaScript | mit | kigster/wanelo-mixmax-link-resolver,kigster/wanelo-mixmax-link-resolver,mixmaxhq/giphy-example-link-resolver,germy/mixmax-metaweather |
8d27f66f4b4c61ddeb95e5107a616b937eb06dff | app/core/app.js | app/core/app.js | 'use strict';
var bowlingApp = angular.module('bowling', ['ngRoute']);
bowlingApp.config(['$routeProvider',
function($routeProvider) {
$routeProvider.otherwise({
redirectTo: '/main'
});
}]);
bowlingApp.factory("dataProvider", ['$q', function ($q) {
var dataLoaded = false;
... | 'use strict';
var bowlingApp = angular.module('bowling', ['ngRoute']);
bowlingApp.config(['$routeProvider',
function($routeProvider) {
$routeProvider.otherwise({
redirectTo: '/main'
});
}]);
bowlingApp.factory("dataProvider", ['$q', function ($q) {
var dataLoaded = false;
... | Change data directory back to test data. | Change data directory back to test data.
| JavaScript | mit | MeerkatLabs/bowling-visualization |
4f429972826a4a1892969f11bef49f4bae147ac3 | webpack.config.base.js | webpack.config.base.js | 'use strict'
var webpack = require('webpack')
var reactExternal = {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react'
}
module.exports = {
externals: {
'react': reactExternal
},
module: {
loaders: [
{ test: /\.js$/, loaders: ['babel-loader'], exclude: /node_modules/ }
... | 'use strict'
var webpack = require('webpack')
var reactExternal = {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react'
}
var reduxExternal = {
root: 'Redux',
commonjs2: 'redux',
commonjs: 'redux',
amd: 'redux'
}
var reactReduxExternal = {
root: 'ReactRedux',
commonjs2: 'react-redu... | Add Redux and React Redux as external dependencies | Add Redux and React Redux as external dependencies
| JavaScript | mit | erikras/redux-form,erikras/redux-form |
849ae9172c21704c61ae6a84affdef0a309fcb4b | app/controllers/application.js | app/controllers/application.js | import Ember from 'ember';
export default Ember.Controller.extend({
sitemap: {
nodes: [
{
link: 'index',
title: 'Home',
children: null
},
{
link: null,
title: 'Admin panel',
children: [
{
link: 'suggestionTypes',
... | import Ember from "ember";
export default Ember.Controller.extend({
sitemap: {
nodes: [
{ link: "index", title: "Home" },
{
title: "Admin panel",
children: [
{ link: "suggestionTypes", title: "Suggestion Types" },
{ link: "users", title: "Application Users" }
... | Add link to geolocation example into sitemap | Add link to geolocation example into sitemap
| JavaScript | mit | Flexberry/flexberry-ember-demo,Flexberry/flexberry-ember-demo,Flexberry/flexberry-ember-demo |
421aba98815a8f3d99fa78daf1d6ec9315712966 | zombie/proxy/server.js | zombie/proxy/server.js | var net = require('net');
var zombie = require('zombie');
// Defaults
var ping = 'pong'
var browser = null;
var ELEMENTS = [];
//
// Store global client states indexed by ZombieProxyClient (memory address):
//
// {
// 'CLIENTID': [X, Y]
// }
//
// ...where X is some zombie.Browser instance...
//
// ...and Y is a pe... | var net = require('net');
var Browser = require('zombie');
// Defaults
var ping = 'pong'
var browser = null;
var ELEMENTS = [];
//
// Store global client states indexed by ZombieProxyClient (memory address):
//
// {
// 'CLIENTID': [X, Y]
// }
//
// ...where X is some zombie.Browser instance...
//
// ...and Y is a p... | Make the sever.js work with zombie 2 | Make the sever.js work with zombie 2
| JavaScript | mit | ryanpetrello/python-zombie,ryanpetrello/python-zombie |
fe6247d1ade209f1ebb6ba537652569810c4d77a | lib/adapter.js | lib/adapter.js | /**
* Request adapter.
*
* @package cork
* @author Andrew Sliwinski <andrew@diy.org>
*/
/**
* Dependencies
*/
var _ = require('lodash'),
async = require('async'),
request = require('request');
/**
* Executes a task from the adapter queue.
*
* @param {Object} Task
*
* @return {Object}
*/
v... | /**
* Request adapter.
*
* @package cork
* @author Andrew Sliwinski <andrew@diy.org>
*/
/**
* Dependencies
*/
var _ = require('lodash'),
async = require('async'),
request = require('request');
/**
* Executes a task from the adapter queue.
*
* @param {Object} Task
*
* @return {Object}
*/
v... | Remove queue object from the task | Remove queue object from the task | JavaScript | mit | thisandagain/cork |
fcab433c54faeffbc59d0609a6f503e3a3237d6f | lib/bemhint.js | lib/bemhint.js | /**
* The core of BEM hint
* ====================
*/
var vow = require('vow'),
_ = require('lodash'),
scan = require('./walk'),
loadRules = require('./load-rules'),
Configuration = require('./configuration'),
utils = require('./utils');
/**
* Loads the BEM entities and checks them
* @param {Ob... | /**
* The core of BEM hint
* ====================
*/
var vow = require('vow'),
_ = require('lodash'),
scan = require('./walk'),
loadRules = require('./load-rules'),
Configuration = require('./configuration'),
utils = require('./utils');
/**
* Loads the BEM entities and checks them
* @param {Ob... | Add 'config' as argument to rules' constructors | Add 'config' as argument to rules' constructors
| JavaScript | mit | bemhint/bemhint,bemhint/bemhint,bem/bemhint,bem/bemhint |
7b6d8f66fd1c2130d10ba7013136ecc3f25d6c3b | src/main/webapp/scripts/main.js | src/main/webapp/scripts/main.js | $().ready(() => {
loadContentSection().then(() =>{
$("#loader").addClass("hide");
$("#real-body").removeClass("hide");
$("#real-body").addClass("body");
$(".keyword").click(function() {
$(this).addClass("active");
$(".base").hide(200);
$("#real-body").addClass("focus");
});
... | $().ready(() => {
loadContentSection().then(() =>{
$("#loader").addClass("hide");
$("#real-body").removeClass("hide");
$("#real-body").addClass("body");
$(".keyword").click(function() {
$(this).addClass("active");
$(".base").hide(200);
$("#real-body").addClass("focus");
});
... | Add js to perform url replacement | Add js to perform url replacement
| JavaScript | apache-2.0 | googleinterns/step36-2020,googleinterns/step36-2020,googleinterns/step36-2020 |
2de06af9887b6941f73a6610a5485d98cf7f353f | lib/mongoat.js | lib/mongoat.js | 'use strict';
var Mongoat = require('mongodb');
var utilsHelper = require('../helpers/utils-helper');
var connect = Mongoat.MongoClient.connect;
var hooks = {
before: {},
after: {}
};
Mongoat.Collection.prototype.before = function(opName, callback) {
hooks = utilsHelper.beforeAfter('before', opName, hooks, call... | 'use strict';
var Mongoat = require('mongodb');
var utilsHelper = require('../helpers/utils-helper');
var connect = Mongoat.MongoClient.connect;
var hooks = {
before: {},
after: {}
};
(function(){
var opArray = ['insert', 'update', 'remove'];
var colPrototype = Mongoat.Collection.prototype;
for (var i = 0;... | Update save methods strategy - Use anonymous function to save collection methods before overwrite | Update save methods strategy
- Use anonymous function to save collection methods before overwrite
| JavaScript | mit | dial-once/node-mongoat |
7bb5536b35b5f1bb90fde60abeb2f6cd7e410139 | lib/version.js | lib/version.js | var clone = require('clone'),
mongoose = require('mongoose'),
ObjectId = mongoose.Schema.Types.ObjectId;
module.exports = function(schema, options) {
options = options || {};
options.collection = options.collection || 'versions';
var versionedSchema = clone(schema);
// Fix for callQueue argum... | var clone = require('clone'),
mongoose = require('mongoose'),
ObjectId = mongoose.Schema.Types.ObjectId;
module.exports = function(schema, options) {
options = options || {};
options.collection = options.collection || 'versions';
var versionedSchema = clone(schema);
// Fix for callQueue argum... | Fix bug accessing wrong schema instance | Fix bug accessing wrong schema instance
| JavaScript | bsd-2-clause | jeresig/mongoose-version,saintedlama/mongoose-version |
c31d392e1972d6eaca952c21ba9349d30b31b012 | js/defaults.js | js/defaults.js | /* exported defaults */
/* Magic Mirror
* Config Defauls
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
var defaults = {
port: 8080,
language: "en",
timeFormat: 24,
modules: [
{
module: "helloworld",
position: "upper_third",
config: {
text: "Magic Mirror V2",
classes: "la... | /* exported defaults */
/* Magic Mirror
* Config Defauls
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
var defaults = {
port: 8080,
language: "en",
timeFormat: 24,
modules: [
{
module: "helloworld",
position: "upper_third",
config: {
text: "Magic Mirror<sup>2</sup>",
cla... | Change branding on default config. | Change branding on default config.
| JavaScript | mit | kthorri/MagicMirror,enith2478/spegel,aschulz90/MagicMirror,morozgrafix/MagicMirror,morozgrafix/MagicMirror,marcroga/sMirror,aghth/MagicMirror,ShivamShrivastava/Smart-Mirror,ConnorChristie/MagicMirror,berlincount/MagicMirror,wszgxa/magic-mirror,heyheyhexi/MagicMirror,gndimitro/MagicMirror,vyazadji/MagicMirror,ryanlawler... |
fce51a7f4c2991773fff8d8070130a726f73879a | nin/frontend/app/scripts/directives/demo.js | nin/frontend/app/scripts/directives/demo.js | function demo($interval, demo) {
return {
restrict: 'E',
template: '<div class=demo-container></div>',
link: function(scope, element) {
demo.setContainer(element[0].children[0]);
setTimeout(function() {
demo.resize();
});
scope.$watch(() => scope.main.fullscreen, function ... | function demo($interval, demo) {
return {
restrict: 'E',
template: '<div class=demo-container></div>',
link: function(scope, element) {
demo.setContainer(element[0].children[0]);
setTimeout(function() {
demo.resize();
});
scope.$watch(() => scope.main.fullscreen, function ... | Fix mute on initial load | Fix mute on initial load
| JavaScript | apache-2.0 | ninjadev/nin,ninjadev/nin,ninjadev/nin |
85afadbe75bce0fd7069224c8065d99d6a663a2f | src/adapter.js | src/adapter.js | /*
* Copyright 2014 Workiva, LLC
*
* 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 applicable law or agreed to... | /*
* Copyright 2014 Workiva, LLC
*
* 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 applicable law or agreed to... | Add error handler to System.import promises | Add error handler to System.import promises
| JavaScript | apache-2.0 | rich-nguyen/karma-jspm |
4aa3e40ae4a9b998025a010749be69da428cb9bb | src/jupyter_contrib_nbextensions/nbextensions/hide_input_all/main.js | src/jupyter_contrib_nbextensions/nbextensions/hide_input_all/main.js | // toggle display of all code cells' inputs
define([
'jquery',
'base/js/namespace'
], function(
$,
IPython
) {
"use strict";
function set_input_visible(show) {
IPython.notebook.metadata.hide_input = !show;
if (show) $('div.input').show('slow');
else $('div.input').hide... | // toggle display of all code cells' inputs
define([
'jquery',
'base/js/namespace',
'base/js/events'
], function(
$,
Jupyter,
events
) {
"use strict";
function set_input_visible(show) {
Jupyter.notebook.metadata.hide_input = !show;
if (show) $('div.input').show('slow')... | Fix loading for either before or after notebook loads. | [hide_input_all] Fix loading for either before or after notebook loads.
| JavaScript | bsd-3-clause | ipython-contrib/IPython-notebook-extensions,ipython-contrib/IPython-notebook-extensions,jcb91/IPython-notebook-extensions,juhasch/IPython-notebook-extensions,ipython-contrib/IPython-notebook-extensions,juhasch/IPython-notebook-extensions,juhasch/IPython-notebook-extensions,jcb91/IPython-notebook-extensions,jcb91/IPytho... |
0c0878ac06febc05dd34f617c6a874e3a5d2ee49 | lib/node_modules/@stdlib/utils/move-property/lib/index.js | lib/node_modules/@stdlib/utils/move-property/lib/index.js | 'use strict';
/**
* FUNCTION: moveProperty( source, prop, target )
* Moves a property from one object to another object.
*
* @param {Object} source - source object
* @param {String} prop - property to move
* @param {Object} target - target object
* @returns {Boolean} boolean indicating whether operation was successful... | 'use strict';
/**
* FUNCTION: moveProperty( source, prop, target )
* Moves a property from one object to another object.
*
* @param {Object} source - source object
* @param {String} prop - property to move
* @param {Object} target - target object
* @returns {Boolean} boolean indicating whether operation was successful... | Add TODO for handling getOwnPropertyDescriptor support | Add TODO for handling getOwnPropertyDescriptor support
| JavaScript | apache-2.0 | stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib |
65294019c1d29baaa548e483e93c8c55bf4bbabb | static/site.js | static/site.js | jQuery( document ).ready( function( $ ) {
// Your JavaScript goes here
jQuery('#content').fitVids();
}); | jQuery( document ).ready( function( $ ) {
// Your JavaScript goes here
jQuery('#content').fitVids({customSelector: ".fitvids-responsive-iframe"});
}); | Add .fitvids-responsive-iframe class for making iframes responsive | Add .fitvids-responsive-iframe class for making iframes responsive
| JavaScript | mit | CoderDojo/cd-theme,CoderDojo/cd-theme,CoderDojo/cd-theme,CoderDojo/cd-theme |
9af98fed472b4dabeb7c713f44c0b5b80da8fe4a | website/src/app/project/experiments/experiment/experiment.model.js | website/src/app/project/experiments/experiment/experiment.model.js | export class ExperimentStep {
constructor(title, _type) {
this.id = '';
this.title = title;
this._type = _type;
this.steps = [];
this.description = '';
this.flags = {
important: false,
review: false,
error: false,
done: ... | export class ExperimentStep {
constructor(title, _type) {
this.id = '';
this.title = title;
this._type = _type;
this.steps = [];
this.description = '';
this.flags = {
important: false,
review: false,
error: false,
done: ... | Remove hard coded experiment description. Remove done field and add status field since that is what we get from the backend. | Remove hard coded experiment description. Remove done field and add status field since that is what we get from the backend.
| JavaScript | mit | materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org |
c316a0757defcde769be70b5d8af5c51ef0ccb75 | task/import.js | task/import.js | var geonames = require('geonames-stream');
var peliasConfig = require( 'pelias-config' ).generate();
var peliasAdminLookup = require( 'pelias-admin-lookup' );
var dbclient = require('pelias-dbclient');
var model = require( 'pelias-model' );
var resolvers = require('./resolvers');
var adminLookupMetaStream = require('.... | var geonames = require('geonames-stream');
var peliasConfig = require( 'pelias-config' ).generate();
var peliasAdminLookup = require( 'pelias-admin-lookup' );
var dbclient = require('pelias-dbclient');
var model = require( 'pelias-model' );
var resolvers = require('./resolvers');
var adminLookupMetaStream = require('.... | Use new function name for doc generator | Use new function name for doc generator
| JavaScript | mit | pelias/geonames,pelias/geonames |
6bb0842748a92359d383445e1046bb622a6649e4 | tasks/build.js | tasks/build.js | /*
Copyright (c) 2013, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
module.exports = function(grunt) {
// The `artifacts` directory will usually only ever in YUI's CI system.
// If you're in CI, and `build-npm` exists (meaning YUI's already built), ski... | /*
Copyright (c) 2013, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
module.exports = function(grunt) {
// The `artifacts` directory will usually only ever in YUI's CI system.
// If you're in CI, `build-npm` exists, and this task was called in
// re... | Add more specificity to the CI "check." | Add more specificity to the CI "check."
| JavaScript | bsd-3-clause | yui/grunt-yui-contrib |
261149bf0046fda82bb80dbe50fcc2f6233fe779 | modules/core/client/config/core-admin.client.routes.js | modules/core/client/config/core-admin.client.routes.js | 'use strict';
// Setting up route
angular.module('core.admin.routes').config(['$stateProvider',
function ($stateProvider) {
$stateProvider
.state('admin', {
abstract: true,
url: '/admin',
template: '<ui-view/>',
data: {
adminOnly: true
}
})
.sta... | 'use strict';
// Setting up route
angular.module('core.admin.routes').config(['$stateProvider',
function ($stateProvider) {
$stateProvider
.state('admin', {
abstract: true,
url: '/admin',
template: '<ui-view/>',
data: {
adminOnly: true
}
})
.sta... | Add event category descriptions + update style | Add event category descriptions + update style
| JavaScript | mit | CEN3031GroupA/US-Hackathon,CEN3031GroupA/US-Hackathon,CEN3031GroupA/US-Hackathon |
7c3f65c9492218d91d2213e9c5d5ae88d5ae2772 | lib/node_modules/@stdlib/math/base/dist/betaprime/lib/index.js | lib/node_modules/@stdlib/math/base/dist/betaprime/lib/index.js | 'use strict';
/*
* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.
*/
// MODULES //
var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
// MAIN //
/**
* Top-level namespace.
*
* @namespace betaprime
*/
var betaprime = {};
/**
* ... | 'use strict';
/*
* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.
*/
// MODULES //
var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
// MAIN //
/**
* Top-level namespace.
*
* @namespace betaprime
*/
var betaprime = {};
/**
* ... | Add skewness to beta prime namespace | Add skewness to beta prime namespace
| JavaScript | apache-2.0 | stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib |
40a96dbb0681ff912a64f8fdc3f542256dab1fd4 | src/main/js/components/views/builder/SponsorAffinities.js | src/main/js/components/views/builder/SponsorAffinities.js | import React from 'react';
import { List, ListSubHeader, ListCheckbox } from 'react-toolbox/lib/list';
const SponsorAffinities = () => {
return (
<div>
<List selectable ripple>
<ListSubHeader caption='list_a' />
<ListCheckbox
caption='affinity'
ch... | import React from 'react';
import { List, ListSubHeader, ListCheckbox } from 'react-toolbox/lib/list';
const SponsorAffinities = () => {
return (
<div className="horizontal">
<List selectable ripple className="horizontalChild">
<ListSubHeader caption='list_a' />
<ListCheckbox
... | Set classes for showing the lists horizontally | Set classes for showing the lists horizontally | JavaScript | apache-2.0 | Bernardo-MG/dreadball-toolkit-webpage,Bernardo-MG/dreadball-toolkit-webpage,Bernardo-MG/dreadball-toolkit-webpage,Bernardo-MG/dreadball-toolkit-webpage |
873e2e8a92b286e73375a0f3505615d63dde3d9e | server/graphql/queries/entries/multiple.js | server/graphql/queries/entries/multiple.js | const { GraphQLList, GraphQLString } = require('graphql');
const mongoose = require('mongoose');
const { outputType } = require('../../types/Entries');
const getProjection = require('../../get-projection');
const getUserPermissions = require('../../../utils/getUserPermissions');
const Entry = mongoose.model('Entry');
... | const { GraphQLList, GraphQLString } = require('graphql');
const mongoose = require('mongoose');
const { outputType } = require('../../types/Entries');
const getProjection = require('../../get-projection');
const getUserPermissions = require('../../../utils/getUserPermissions');
const Entry = mongoose.model('Entry');
... | Fix permissions check in Entries query | :lock: Fix permissions check in Entries query
| JavaScript | mit | JasonEtco/flintcms,JasonEtco/flintcms |
e67f17f3430c9509f4d1ff07ddefc6baf05780ff | client/actions/profile.js | client/actions/profile.js | import axios from 'axios';
import { FETCHING_PROFILE, PROFILE_SUCCESS, PROFILE_FAILURE } from './types';
import { apiURL } from './userSignUp';
import setHeader from '../helpers/setheader';
const fetchingProfile = () => ({
type: FETCHING_PROFILE,
});
const profileSuccess = profile => ({
type: PROFILE_SUCCESS,
p... | import axios from 'axios';
import {
FETCHING_PROFILE,
PROFILE_SUCCESS,
PROFILE_FAILURE,
RETURN_BOOK_SUCCESS,
RETURN_BOOK_REQUEST,
RETURN_BOOK_FAILURE,
} from './types';
import { apiURL } from './userSignUp';
import setHeader from '../helpers/setheader';
const fetchingProfile = () => ({
type: FETCHING_PRO... | Add actions for returning a book | Add actions for returning a book
| JavaScript | mit | amarachukwu-agbo/hello-books,amarachukwu-agbo/hello-books |
a4e2361908ff921fa0033a4fecbf4abf2d5766da | client/app/docs/module.js | client/app/docs/module.js | /**
* This file is part of Superdesk.
*
* Copyright 2013, 2014 Sourcefabric z.u. and contributors.
*
* For the full copyright and license information, please see the
* AUTHORS and LICENSE files distributed with this source code, or
* at https://www.sourcefabric.org/superdesk/license
*/
(function() {
'use ... | /**
* This file is part of Superdesk.
*
* Copyright 2013, 2014 Sourcefabric z.u. and contributors.
*
* For the full copyright and license information, please see the
* AUTHORS and LICENSE files distributed with this source code, or
* at https://www.sourcefabric.org/superdesk/license
*/
(function() {
'use ... | Fix template url for UI docs | fix(docs): Fix template url for UI docs
| JavaScript | agpl-3.0 | mdhaman/superdesk-aap,sivakuna-aap/superdesk,thnkloud9/superdesk,pavlovicnemanja92/superdesk,ancafarcas/superdesk,hlmnrmr/superdesk,pavlovicnemanja92/superdesk,plamut/superdesk,superdesk/superdesk-ntb,marwoodandrew/superdesk-aap,verifiedpixel/superdesk,fritzSF/superdesk,superdesk/superdesk,verifiedpixel/superdesk,sivak... |
8e8a784f1318f367f2a633395429abff30566c64 | updates/0.1.0-fr-settings.js | updates/0.1.0-fr-settings.js | exports.create = {
Settings: [{
"site": {
"name": "EStore Demo"
},
"payment.cod.active": true
}]
};
| exports.create = {
Settings: [{
"site": {
"name": "EStore Demo"
},
"payments.cod.active": true
}]
};
| Fix no payment set by default error. | Fix no payment set by default error.
| JavaScript | mit | stunjiturner/estorejs,quenktechnologies/estorejs,stunjiturner/estorejs |
52fbbe3c5e4be1ad9be58fe862185a577a0e6c1f | packages/vega-parser/index.js | packages/vega-parser/index.js | // setup transform definition aliases
import {definition} from 'vega-dataflow';
definition('Sort', definition('Collect'));
definition('Formula', definition('Apply'));
export {default as parse} from './src/parse';
export {default as selector} from './src/parsers/event-selector';
export {default as signal} from './src/... | // setup transform definition aliases
import {definition} from 'vega-dataflow';
definition('Formula', definition('Apply'));
export {default as parse} from './src/parse';
export {default as selector} from './src/parsers/event-selector';
export {default as signal} from './src/parsers/signal';
export {default as signalU... | Drop Sort alias for Collect. | Drop Sort alias for Collect.
| JavaScript | bsd-3-clause | lgrammel/vega,vega/vega,vega/vega,vega/vega,vega/vega |
e569c4f2081979947e7b948de870978e9bde719a | app/elements/sidebar.js | app/elements/sidebar.js | import * as React from 'react'
import {State} from 'react-router'
import SearchButton from 'elements/searchButton'
import GraduationStatus from 'elements/graduationStatus'
let Sidebar = React.createClass({
mixins: [State],
render() {
let isSearching = this.getQuery().search
let sidebar = isSearching ?
React.... | import * as React from 'react'
import {State} from 'react-router'
import SearchButton from 'elements/searchButton'
import GraduationStatus from 'elements/graduationStatus'
let Sidebar = React.createClass({
mixins: [State],
render() {
let isSearching = 'search' in this.getQuery()
let sidebar = isSearching ?
R... | Use `in` to detect if the query param has "search" | Use `in` to detect if the query param has "search"
| JavaScript | agpl-3.0 | hawkrives/gobbldygook,hawkrives/gobbldygook,hawkrives/gobbldygook |
1c3042481b75e305e993316256dc19f51fd41cf6 | SPAWithAngularJS/module2/customServices/js/app.shoppingListService.js | SPAWithAngularJS/module2/customServices/js/app.shoppingListService.js | // app.shoppingListService.js
(function() {
"use strict";
angular.module("MyApp")
.service("ShoppingListService", ShoppingListService);
function ShoppingListService() {
let service = this;
// List of Shopping items
let items = [];
service.addItem = addItem;
function addItem(itemName,... | // app.shoppingListService.js
(function() {
"use strict";
angular.module("MyApp")
.service("ShoppingListService", ShoppingListService);
function ShoppingListService() {
let service = this;
// List of Shopping items
let items = [];
service.addItem = addItem;
service.getItems = getItems... | Delete useless code. Added removeItem method | Delete useless code. Added removeItem method
| JavaScript | mit | var-bin/angularjs-training,var-bin/angularjs-training,var-bin/angularjs-training,var-bin/angularjs-training |
47b9aba68050230eeff0754f4076b7596cbe9eb9 | api/throttle.js | api/throttle.js | "use strict"
module.exports = function(callback) {
//60fps translates to 16.6ms, round it down since setTimeout requires int
var time = 16
var last = 0, pending = null
var timeout = typeof requestAnimationFrame === "function" ? requestAnimationFrame : setTimeout
return function(synchronous) {
var now = new Date... | "use strict"
var ts = Date.now || function() {
return new Date().getTime()
}
module.exports = function(callback) {
//60fps translates to 16.6ms, round it down since setTimeout requires int
var time = 16
var last = 0, pending = null
var timeout = typeof requestAnimationFrame === "function" ? requestAnimationFrame... | Use Date.now() if available since it's faster | Use Date.now() if available since it's faster
| JavaScript | mit | pygy/mithril.js,impinball/mithril.js,tivac/mithril.js,MithrilJS/mithril.js,barneycarroll/mithril.js,barneycarroll/mithril.js,tivac/mithril.js,impinball/mithril.js,pygy/mithril.js,lhorie/mithril.js,lhorie/mithril.js,MithrilJS/mithril.js |
a5add8048b2548c5f216d7afd9e0ebcb097f4fcc | lib/dom/accessibility/sections.js | lib/dom/accessibility/sections.js | (function() {
'use strict';
var headings = ['h6', 'h5', 'h4', 'h3', 'h2', 'h1'];
var score = 0;
var message = '';
var sections = Array.prototype.slice.call(window.document.getElementsByTagName('section'));
var totalSections = sections.length;
if (totalSections === 0) {
message = 'The page doesn\'t us... | (function() {
'use strict';
var headings = ['h6', 'h5', 'h4', 'h3', 'h2', 'h1'];
var score = 0;
var message = '';
var sections = Array.prototype.slice.call(window.document.getElementsByTagName('section'));
var totalSections = sections.length;
if (totalSections === 0) {
message = 'The page doesn\'t us... | Remove extra space in message. | Remove extra space in message.
| JavaScript | mit | sitespeedio/coach,sitespeedio/coach |
18ac5c64a7da29e5bf25bc274c61ad6078bace86 | config/environments.config.js | config/environments.config.js | // Here is where you can define configuration overrides based on the execution environment.
// Supply a key to the default export matching the NODE_ENV that you wish to target, and
// the base configuration will apply your overrides before exporting itself.
module.exports = {
// ======================================... | // Here is where you can define configuration overrides based on the execution environment.
// Supply a key to the default export matching the NODE_ENV that you wish to target, and
// the base configuration will apply your overrides before exporting itself.
module.exports = {
// ======================================... | Enable sourcemaps on production builds | Enable sourcemaps on production builds
| JavaScript | mit | matthisk/es6console,matthisk/es6console |
a095b3f6f17687fb769670f236f4224556254edd | js/game.js | js/game.js | // Game
define([
'stage',
'models/ui',
'utility'
], function(Stage, UI, Utility) {
console.log("game.js loaded");
var Game = (function() {
// Game canvas
var stage;
var gameUI;
return {
// Initialize the game
init: function() {
stage = new Stage('game-canvas');
gameUI = new UI(stage);
... | // Game
define([
'stage',
'models/ui',
'utility'
], function(Stage, UI, Utility) {
console.log("game.js loaded");
var Game = (function() {
// Game canvas
var stage;
var gameUI;
return {
// Initialize the game
init: function() {
try {
stage = new Stage('game-canvas');
} catch(e) {
... | Add try-catch block for obtaining canvas context | Add try-catch block for obtaining canvas context
| JavaScript | mit | vicksonzero/TyphoonTycoon,vicksonzero/TyphoonTycoon,ericksli/TyphoonTycoon,jasonycw/TyphoonTycoon,ericksli/TyphoonTycoon,jasonycw/TyphoonTycoon |
1802e997a2d682ec3fc05d292e95fd64f3258b1b | src/components/fields/Text/index.js | src/components/fields/Text/index.js | import React from 'react'
export default class Text extends React.Component {
static propTypes = {
onChange: React.PropTypes.func,
value: React.PropTypes.string,
fieldType: React.PropTypes.string,
passProps: React.PropTypes.object,
placeholder: React.PropTypes.node,
errorMessage: React.PropT... | import React from 'react'
export default class Text extends React.Component {
static propTypes = {
onChange: React.PropTypes.func,
value: React.PropTypes.string,
fieldType: React.PropTypes.string,
passProps: React.PropTypes.object,
placeholder: React.PropTypes.node,
errorMessage: React.PropT... | Add disabled to text input | Add disabled to text input | JavaScript | mit | orionsoft/parts |
82a4e6147a20b6583df43375e70b593a73cf0396 | lib/transport/ssh.spec.js | lib/transport/ssh.spec.js | 'use strict';
const { expect } = require('chai');
const SshTransport = require('./ssh');
describe('SshTransport', () => {
it('should not use a private key if password is specified', () => {
const options = getTransportOptions({ password: 'pass' });
expect(options.usePrivateKey).to.be.false;
expect(opt... | 'use strict';
const { expect } = require('chai');
const SshTransport = require('./ssh');
class NoExceptionSshTransport extends SshTransport {
normalizeOptions() {
try {
super.normalizeOptions();
} catch (e) {
this.error = e;
}
}
}
describe('SshTransport', () => {
it('should not use a p... | Fix a test on travis | Fix a test on travis
| JavaScript | mit | megahertz/electron-simple-publisher |
a08a2e797d2783defdd2551bf2ca203e54a3702b | js/main.js | js/main.js | // Github API call according to their json-p dox
function callGHAPI(url, callback) {
var apiRoot = "https://api.github.com/";
var script = document.createElement("script");
script.src = apiRoot + url + "?callback=" + callback;
document.getElementsByTagName("head")[0].appendChild(script);
}
// validate ... | // Github API call according to their json-p dox
function callGHAPI(url, callback) {
var apiRoot = "https://api.github.com/";
var script = document.createElement("script");
script.src = apiRoot + url + "?callback=" + callback;
document.getElementsByTagName("head")[0].appendChild(script);
}
// validate ... | Update typeahead source when different user entered | Update typeahead source when different user entered
| JavaScript | mit | Somsubhra/github-release-stats,Somsubhra/github-release-stats |
a1b98bb9dad8a3a82fe750dc09d470e14fe233ec | js/main.js | js/main.js | ---
layout: null
---
$(document).ready(function () {
$('a.events-button').click(function (e) {
if ($('.panel-cover').hasClass('panel-cover--collapsed')) return
currentWidth = $('.panel-cover').width()
if (currentWidth < 960) {
$('.panel-cover').addClass('panel-cover--collapsed')
$('.content-wr... | ---
layout: null
---
$(document).ready(function () {
$('a.events-button').click(function (e) {
if ($('.panel-cover').hasClass('panel-cover--collapsed')) return
currentWidth = $('.panel-cover').width()
if (currentWidth < 960) {
$('.panel-cover').addClass('panel-cover--collapsed')
$('.content-wr... | Fix defaulting to events page, maybe.... | Fix defaulting to events page, maybe....
| JavaScript | mit | GRPosh/GRPosh.github.io,GRPosh/GRPosh.github.io,GRPosh/GRPosh.github.io |
86773197f53aeb163de92fbd9f339d53903dd4c3 | lib/viewer/DataSetView.js | lib/viewer/DataSetView.js | import React from 'react';
export default React.createClass({
displayName: 'DataSetViewer',
propTypes: {
base: React.PropTypes.string,
item: React.PropTypes.object,
},
openDataSet() {
ArcticViewer.load('http://' + location.host + this.props.base + this.props.item.path, docume... | import React from 'react';
export default React.createClass({
displayName: 'DataSetViewer',
propTypes: {
base: React.PropTypes.string,
item: React.PropTypes.object,
},
openDataSet() {
ArcticViewer.load('http://' + location.host + this.props.base + this.props.item.path, docume... | Update code formatting to comply with our ESLint specification | style(ESLint): Update code formatting to comply with our ESLint specification
| JavaScript | bsd-3-clause | Kitware/arctic-viewer,Kitware/in-situ-data-viewer,Kitware/in-situ-data-viewer,Kitware/arctic-viewer,Kitware/arctic-viewer |
97889608f3e80095e139d3da69be2b24df6eacd7 | components/guestbookCapture.js | components/guestbookCapture.js | /** @jsxImportSource theme-ui */
import { Box, Button } from 'theme-ui'
import Link from 'next/link'
import Sparkle from './sparkle'
import Spicy from './spicy'
// email
export default function GuestbookCapture({ props }) {
return (
<Box
sx={{
position: 'relative',
p: [3, 3, 4],
bg... | /** @jsxImportSource theme-ui */
import { Box, Button } from 'theme-ui'
import Link from 'next/link'
import Sparkle from './sparkle'
import Spicy from './spicy'
// email
export default function GuestbookCapture({ props }) {
return (
<Box
sx={{
position: 'relative',
p: [3, 3, 4],
bg... | Remove max-width from guestbook capture | Remove max-width from guestbook capture
| JavaScript | mit | iammatthias/.com,iammatthias/.com,iammatthias/.com |
783a18b1ed4e3053861315eccfee5bf55a467c02 | services/frontend/src/components/elements/account/follow.js | services/frontend/src/components/elements/account/follow.js | import React from 'react';
import steem from 'steem'
import { Button } from 'semantic-ui-react'
export default class AccountFollow extends React.Component {
constructor(props) {
super(props)
this.state = {
processing: false,
following: props.account.following || []
}
}
componentWillRecei... | import React from 'react';
import steem from 'steem'
import { Button } from 'semantic-ui-react'
export default class AccountFollow extends React.Component {
constructor(props) {
super(props)
this.state = {
processing: false,
following: props.account.following || []
}
}
componentWillRecei... | Hide for your own account. | Hide for your own account.
| JavaScript | mit | aaroncox/chainbb,aaroncox/chainbb |
6b00187f384c2078cb06c5d8dab4d5ef48ca8953 | src/web_loaders/ember-app-loader/get-module-exports.js | src/web_loaders/ember-app-loader/get-module-exports.js | const HarmonyExportExpressionDependency
= require( "webpack/lib/dependencies/HarmonyExportExpressionDependency" );
const HarmonyExportSpecifierDependency
= require( "webpack/lib/dependencies/HarmonyExportSpecifierDependency" );
const HarmonyExportImportedSpecifierDependency
= require( "webpack/lib/dependencies/Harmo... | const HarmonyExportExpressionDependency
= require( "webpack/lib/dependencies/HarmonyExportExpressionDependency" );
const HarmonyExportSpecifierDependency
= require( "webpack/lib/dependencies/HarmonyExportSpecifierDependency" );
const HarmonyExportImportedSpecifierDependency
= require( "webpack/lib/dependencies/Harmo... | Fix ember-app-loader error on invalid modules | Fix ember-app-loader error on invalid modules
| JavaScript | mit | chhe/livestreamer-twitch-gui,streamlink/streamlink-twitch-gui,bastimeyer/livestreamer-twitch-gui,chhe/livestreamer-twitch-gui,bastimeyer/livestreamer-twitch-gui,streamlink/streamlink-twitch-gui,streamlink/streamlink-twitch-gui,chhe/livestreamer-twitch-gui,bastimeyer/livestreamer-twitch-gui |
cc63c5d48f48294163b1e9d01efa8b8fc00fce06 | client/index.js | client/index.js | import 'babel-polyfill';
require('normalize.css');
require('reveal.js/css/reveal.css');
require('reveal.js/css/theme/black.css');
require('./index.css');
import reveal from 'reveal.js';
import setupMedimapWidgets from './medimap-widget.js';
reveal.initialize({
controls: false,
progress: false,
loop: true,
sh... | import 'babel-polyfill';
require('normalize.css');
require('reveal.js/css/reveal.css');
require('reveal.js/css/theme/black.css');
require('./index.css');
import reveal from 'reveal.js';
import setupMedimapWidgets from './medimap-widget.js';
reveal.initialize({
controls: false,
progress: false,
loop: true,
sh... | Switch to fade transition (performance issues) | Switch to fade transition (performance issues)
| JavaScript | mit | jo12bar/medimap-viewer,jo12bar/medimap-viewer,jo12bar/medimap-viewer,jo12bar/medimap-viewer,jo12bar/medimap-viewer |
908c305b901b73e92cd0e1ef4fd0f76d1aa2ea72 | lib/config.js | lib/config.js | var fs = require('fs');
var mkdirp = require('mkdirp');
var existsSync = fs.existsSync || path.existsSync; // to support older nodes than 0.8
var CONFIG_FILE_NAME = 'config.json';
var Config = function(home) {
this.home = home;
this.load();
};
Config.prototype = {
home: null,
data: {},
configFilePath: funct... | var fs = require('fs');
var mkdirp = require('mkdirp');
var existsSync = fs.existsSync || require('path').existsSync; // to support older nodes than 0.8
var CONFIG_FILE_NAME = 'config.json';
var Config = function(home) {
this.home = home;
this.load();
};
Config.prototype = {
home: null,
data: {},
configFile... | Add the missing require for path module | Add the missing require for path module
| JavaScript | mit | groonga/gcs-console |
8262f90630783eb9329613aaf676b2b43c960dff | lib/CarbonClient.js | lib/CarbonClient.js | var RestClient = require('carbon-client')
var util = require('util')
var fibrous = require('fibrous');
/****************************************************************************************************
* monkey patch the endpoint class to support sync get/post/put/delete/head/patch
*/
var Endpoint = RestClient.s... | var RestClient = require('carbon-client')
var util = require('util')
var fibrous = require('fibrous');
/****************************************************************************************************
* monkey patch the endpoint class to support sync get/post/put/delete/head/patch
*/
var Endpoint = RestClient.... | Move method list to node client | Move method list to node client
| JavaScript | mit | carbon-io/carbon-client-node,carbon-io/carbon-client-node |
4855e94ed7492a333597b4715a9d606cb74ab086 | plugins/services/src/js/pages/task-details/ServiceTaskDetailPage.js | plugins/services/src/js/pages/task-details/ServiceTaskDetailPage.js | import React from 'react';
import TaskDetail from './TaskDetail';
import MesosStateStore from '../../../../../../src/js/stores/MesosStateStore';
import ServiceBreadcrumbs from '../../components/ServiceBreadcrumbs';
import Page from '../../../../../../src/js/components/Page';
class ServiceTaskDetailPage extends React... | import React from 'react';
import TaskDetail from './TaskDetail';
import MesosStateStore from '../../../../../../src/js/stores/MesosStateStore';
import ServiceBreadcrumbs from '../../components/ServiceBreadcrumbs';
import Page from '../../../../../../src/js/components/Page';
class ServiceTaskDetailPage extends React... | Fix up route to logs tab | Fix up route to logs tab
| JavaScript | apache-2.0 | dcos/dcos-ui,dcos/dcos-ui,dcos/dcos-ui,dcos/dcos-ui,dcos/dcos-ui |
0f2fc159b5c0622b20f34d9eed915c7563237a7a | lib/cfn.js | lib/cfn.js | exports.init = function(genericAWSClient) {
// Creates a CloudFormation API client
var createCFNClient = function (accessKeyId, secretAccessKey, options) {
options = options || {};
var client = cfnClient({
host: options.host || "cloudformation.us-east-1.amazonaws.com",
path: options.path || "/"... | exports.init = function(genericAWSClient) {
// Creates a CloudFormation API client
var createCFNClient = function (accessKeyId, secretAccessKey, options) {
options = options || {};
var client = cfnClient({
host: options.host || "cloudformation.us-east-1.amazonaws.com",
path: options.path || "/"... | Use advertised API version for CFN. | Use advertised API version for CFN.
| JavaScript | mit | mirkokiefer/aws-lib,livelycode/aws-lib,pnedunuri/aws-lib |
370857a2c3d321b2fb1e7177de266b8422112425 | app/assets/javascripts/alchemy/alchemy.jquery_loader.js | app/assets/javascripts/alchemy/alchemy.jquery_loader.js | if (typeof(Alchemy) === 'undefined') {
var Alchemy = {};
}
// Load jQuery on demand. Use this if jQuery is not present.
// Found on http://css-tricks.com/snippets/jquery/load-jquery-only-if-not-present/
Alchemy.loadjQuery = function(callback) {
var thisPageUsingOtherJSLibrary = false;
if (typeof($) === 'functi... | if (typeof(Alchemy) === 'undefined') {
var Alchemy = {};
}
// Load jQuery on demand. Use this if jQuery is not present.
// Found on http://css-tricks.com/snippets/jquery/load-jquery-only-if-not-present/
Alchemy.loadjQuery = function(callback) {
var thisPageUsingOtherJSLibrary = false;
if (typeof($) === 'functi... | Load jquery from cdn instead of locally for menubar. | Load jquery from cdn instead of locally for menubar.
| JavaScript | bsd-3-clause | clst/alchemy_cms,mtomov/alchemy_cms,nielspetersen/alchemy_cms,mamhoff/alchemy_cms,thomasjachmann/alchemy_cms,heisam/alchemy_cms,Domenoth/alchemy_cms,kinsomicrote/alchemy_cms,mamhoff/alchemy_cms,thomasjachmann/alchemy_cms,cygnus6/alchemy_cms,IngoAlbers/alchemy_cms,robinboening/alchemy_cms,AlchemyCMS/alchemy_cms,cygnus6/... |
2d1dd9b1bbfd7b07bdcae40613899eab31c75f9a | lib/wee.js | lib/wee.js | #! /usr/bin/env node
/* global require, process */
var program = require('commander'),
fs = require('fs'),
cwd = process.cwd(),
cliPath = cwd + '/node_modules/wee-core/cli.js';
// Register version and init command
program
.version(require('../package').version)
.usage('<command> [options]')
.command('init [nam... | #! /usr/bin/env node
/* global require, process */
var program = require('commander'),
fs = require('fs'),
cwd = process.cwd(),
cliPath = cwd + '/node_modules/wee-core/cli.js';
// Register version and init command
program
.version(require('../package').version)
.usage('<command> [options]')
.command('init [nam... | Print out help menu when incorrect argument is given | Print out help menu when incorrect argument is given
| JavaScript | apache-2.0 | weepower/wee-cli |
63284bdb3177e678208650e0b738dc9876afa643 | app/components/Todo.js | app/components/Todo.js | import React, { PropTypes } from 'react'
import ListItem from 'material-ui/lib/lists/list-item'
import Checkbox from 'material-ui/lib/checkbox'
import ActionDelete from 'material-ui/lib/svg-icons/action/delete'
const Todo = ({ onClick, onDelete, completed, text }) => (
<ListItem
onClick={onClick}
primaryText... | import React, { PropTypes } from 'react'
import ListItem from 'material-ui/lib/lists/list-item'
import Checkbox from 'material-ui/lib/checkbox'
import ActionDelete from 'material-ui/lib/svg-icons/action/delete'
const Todo = ({ onClick, onDelete, completed, text }) => (
<ListItem
onClick={onClick}
primaryText... | Add strike-through for completed tasks | Add strike-through for completed tasks
| JavaScript | mit | rxlabs/tasty-todos,rxlabs/tasty-todos,rxlabs/tasty-todos |
ad03ed2e56b56f22fc0f148dd6e6027eab718591 | specs/server/ServerSpec.js | specs/server/ServerSpec.js | /* global require, describe, it */
'use strict';
var expect = require('chai').expect;
var request = require('request');
var url = function(path) {
return 'http://localhost:8000' + path;
};
describe('GET /', function() {
it('responds', function(done){
request(url('/'), function(error, res) {
expect(res.... | /* global require, describe, it */
'use strict';
var expect = require('chai').expect;
var request = require('request');
var url = function(path) {
return 'http://localhost:8000' + path;
};
describe("MongoDB", function() {
it("is there a server running", function(next) {
var MongoClient = require('mongo... | Add test to ensure mongodb is running. | Add test to ensure mongodb is running.
| JavaScript | mit | JulieMarie/Brainstorm,HRR2-Brainstorm/Brainstorm,JulieMarie/Brainstorm,ekeric13/Brainstorm,EJJ-Brainstorm/Brainstorm,EJJ-Brainstorm/Brainstorm,ekeric13/Brainstorm,plauer/Brainstorm,drabinowitz/Brainstorm |
7f08b0b8950ee9e4123b2d5332f2fcfe8616d771 | lib/daemon-setup.js | lib/daemon-setup.js | (function() {
'use strict';
exports.init = function(params) {
var fs = require('fs');
var path = require('path');
var service = params['service'];
var shell = require('shelljs');
if (!service) {
throw new Error('missing required parameter "service"');
}
createUser();
enableLo... | (function() {
'use strict';
exports.init = function(params) {
var fs = require('fs');
var path = require('path');
var service = params['service'];
var shell = require('shelljs');
if (!service) {
throw new Error('missing required parameter "service"');
}
createUser();
enableLo... | Verify that exception is raised if appropriate. | Verify that exception is raised if appropriate.
| JavaScript | mit | optbot/daemon-setup,optbot/daemon-setup |
788c0adabe8a1501e8032e5b9d90afcc5c4927ab | lib/delve-client.js | lib/delve-client.js | /**
DelveClient
@description creates a singleton Delve client
**/
'use babel';
const DelveClient = require('delvejs');
var delveClient;
const connManager = {
connect: function connect(host, port) {
delveClient = new DelveClient(host, port);
return delveClient.establishSocketConn();
},
endConnectio... | /**
DelveClient
@description creates a singleton Delve client
**/
'use babel';
const DelveClient = require('delvejs');
var delveClient;
const connManager = {
isConnected: false,
connect: function connect(host, port) {
delveClient = new DelveClient(host, port);
return delveClient.establishSocketConn()... | Check for is connected before ending | Check for is connected before ending
| JavaScript | mit | tylerFowler/atom-delve |
31fde45536d569f6629b4896d61b4f6093059f2c | source/@lacqueristas/signals/refreshResources/index.js | source/@lacqueristas/signals/refreshResources/index.js | import {map} from "ramda"
import mergeResource from "../mergeResource"
export default function refreshResources (): Function {
return function thunk (dispatch: ReduxDispatchType, getState: GetStateType, {client}: {client: HSDKClientType}): Promise<SignalType> {
const state = getState()
map((collection: Arr... | import {ok} from "httpstatuses"
import {forEach} from "ramda"
import {omit} from "ramda"
import * as resources from "@lacqueristas/resources"
import mergeResource from "../mergeResource"
const MAPPING = {
accounts: "account",
sessions: "session",
projects: "project",
}
export default function refreshResources ... | Refactor for abstractions and better control flow | Refactor for abstractions and better control flow
| JavaScript | mit | lacqueristas/www,lacqueristas/www |
4893fe0778f0e6a3876d0c634d5437c3f7e6911d | lib/controllers/api/v1/users.js | lib/controllers/api/v1/users.js | 'use strict';
var mongoose = require('mongoose'),
utils = require('../utils'),
User = mongoose.model('User'),
Application = mongoose.model('Application'),
SimpleApiKey = mongoose.model('SimpleApiKey'),
OauthConsumer = mongoose.model('OauthConsumer'),
Event = mongoose.model('Event'),
middleware = require('../../... | 'use strict';
var mongoose = require('mongoose'),
utils = require('../utils'),
User = mongoose.model('User'),
Application = mongoose.model('Application'),
SimpleApiKey = mongoose.model('SimpleApiKey'),
OauthConsumer = mongoose.model('OauthConsumer'),
Event = mongoose.model('Event'),
User = mongoose.model('User'... | Add organizer Endpoint to API | Add organizer Endpoint to API
| JavaScript | apache-2.0 | Splaktar/hub,gdg-x/hub,gdg-x/hub,nassor/hub,fchuks/hub,nassor/hub,fchuks/hub,Splaktar/hub |
a4187de0cd7c54363cc6225f72fe9093b8a8b4c8 | src/javascripts/ng-admin/Main/component/directive/maDashboardPanel.js | src/javascripts/ng-admin/Main/component/directive/maDashboardPanel.js | function maDashboardPanel($state) {
return {
restrict: 'E',
scope: {
collection: '&',
entries: '&'
},
link: function(scope) {
scope.gotoList = function () {
$state.go($state.get('list'), { entity: scope.collection().entity.name() })... | function maDashboardPanel($state) {
return {
restrict: 'E',
scope: {
collection: '&',
entries: '&'
},
link: function(scope) {
scope.gotoList = function () {
$state.go($state.get('list'), { entity: scope.collection().entity.name() })... | Fix dashboard panel title when dashboard is undefined | Fix dashboard panel title when dashboard is undefined
| JavaScript | mit | Benew/ng-admin,LuckeyHomes/ng-admin,ulrobix/ng-admin,maninga/ng-admin,manuelnaranjo/ng-admin,ronal2do/ng-admin,jainpiyush111/ng-admin,baytelman/ng-admin,manekinekko/ng-admin,eBoutik/ng-admin,marmelab/ng-admin,rifer/ng-admin,baytelman/ng-admin,rifer/ng-admin,bericonsulting/ng-admin,SebLours/ng-admin,SebLours/ng-admin,ah... |
d4a57ac1e7516a75a3770e23a06241366a90dbcb | spec/lib/repository-mappers/figshare/parseL1ArticlePresenters-spec.js | spec/lib/repository-mappers/figshare/parseL1ArticlePresenters-spec.js | import parseL1ArticlePresenters from '../../../../lib/repository-mappers/figshare/parseL1ArticlePresenters';
const figshareL1Articles = require('./resources/figshareL1Articles.json');
const convertedArticles = parseL1ArticlePresenters(figshareL1Articles);
it('parses all articles figshare returns', () =>
expect(con... | import parseL1ArticlePresenters from '../../../../lib/repository-mappers/figshare/parseL1ArticlePresenters';
const figshareL1Articles = require('./resources/figshareL1Articles.json');
const convertedArticles = parseL1ArticlePresenters(figshareL1Articles);
it('parses all articles figshare returns', () =>
expect(con... | Add unit test for Figshare ID in L1 presenter | Add unit test for Figshare ID in L1 presenter
| JavaScript | mit | mozillascience/software-discovery-dashboard,mozillascience/software-discovery-dashboard |
5df003b17e805ea3c649330bd72fe3d0d7ad085d | app/src/store/index.js | app/src/store/index.js | import Vue from "vue";
import Vuex, {Store} from "vuex";
import state from "./state";
import * as mutations from "./mutations";
import * as getters from "./getters";
import * as actions from "./actions";
import {persistencePlugin, i18nPlugin} from "./plugins";
Vue.use(Vuex);
export default new Store({
strict: pro... | import Vue from "vue";
import Vuex, {Store} from "vuex";
import state from "./state";
import * as mutations from "./mutations";
import * as getters from "./getters";
import * as actions from "./actions";
import {persistencePlugin, i18nPlugin} from "./plugins";
Vue.use(Vuex);
export default new Store({
strict: pro... | Fix persistence issues not tracking the correct mutations | Fix persistence issues not tracking the correct mutations
| JavaScript | mit | sulcata/sulcalc,sulcata/sulcalc,sulcata/sulcalc |
1d894193ceebc30520ef2d18a6c15452f52a2e30 | tests/dummy/app/controllers/collapsible.js | tests/dummy/app/controllers/collapsible.js | export default Ember.Controller.extend({
actions: {
collapseLeft: function() {
this.get('leftChild').collapse();
},
collapseRight: function() {
this.get('rightChild').collapse();
}
}
});
| import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
collapseLeft: function() {
this.get('leftChild').collapse();
},
collapseRight: function() {
this.get('rightChild').collapse();
}
}
});
| Add missing import ember to dummy app | Add missing import ember to dummy app
| JavaScript | mit | BryanCrotaz/ember-split-view,BryanHunt/ember-split-view,BryanCrotaz/ember-split-view,BryanHunt/ember-split-view |
d0f443c0b9c32a72faa67de95da03a01025c2ad0 | config/nconf.js | config/nconf.js | var nconf = require('nconf');
nconf
.env();
nconf.defaults({
'RIPPLE_REST_API': 'http://localhost:5990',
'DATABASE_URL': 'postgres://postgres:password@localhost:5432/ripple_gateway',
'RIPPLE_DATAMODEL_ADAPTER': 'ripple-gateway-data-sequelize-adapter',
'RIPPLE_EXPRESS_GATEWAY': 'ripple-gateway-express',
'S... | var nconf = require('nconf');
nconf
.file({ file: './config/config.json' })
.env();
nconf.defaults({
'RIPPLE_REST_API': 'http://localhost:5990',
'DATABASE_URL': 'postgres://postgres:password@localhost:5432/ripple_gateway',
'RIPPLE_DATAMODEL_ADAPTER': 'ripple-gateway-data-sequelize-adapter',
'RIPPLE_EXPRES... | Load base config from file. | [FEATURE] Load base config from file.
| JavaScript | isc | zealord/gatewayd,Parkjeahwan/awegeeks,xdv/gatewayd,Parkjeahwan/awegeeks,whotooktwarden/gatewayd,xdv/gatewayd,crazyquark/gatewayd,zealord/gatewayd,whotooktwarden/gatewayd,crazyquark/gatewayd |
e9d0001580fcd7178334071d6ea9040da9df49a9 | jest.setup.js | jest.setup.js | /* eslint-disable import/no-unassigned-import */
import 'raf/polyfill'
import 'mock-local-storage'
import {configure} from 'enzyme'
import Adapter from 'enzyme-adapter-react-16'
configure({adapter: new Adapter()})
| /* eslint-disable import/no-unassigned-import */
import 'raf/polyfill'
import 'mock-local-storage'
import {configure} from 'enzyme'
import Adapter from 'enzyme-adapter-react-16'
import {setConfig} from 'next/config'
configure({adapter: new Adapter()})
// Initialize Next.js configuration with empty values.
setConfig... | Set default configuration for tests | Set default configuration for tests
| JavaScript | mit | sgmap/inspire,sgmap/inspire |
e6bfa9f7036d4ad51af84a9205616b4782a5db91 | geoportal/geoportailv3_geoportal/static-ngeo/js/backgroundselector/BackgroundselectorDirective.js | geoportal/geoportailv3_geoportal/static-ngeo/js/backgroundselector/BackgroundselectorDirective.js | import appModule from '../module.js';
/**
* @param {string} appBackgroundselectorTemplateUrl Url to backgroundselector template.
* @return {angular.IDirective}
* @ngInject
*/
const exports = function(appBackgroundselectorTemplateUrl) {
return {
restrict: 'E',
scope: {
'map': '=appBa... | import appModule from '../module.js';
/**
* @param {string} appBackgroundselectorTemplateUrl Url to backgroundselector template.
* @return {angular.IDirective}
* @ngInject
*/
const exports = function(appBackgroundselectorTemplateUrl) {
return {
restrict: 'E',
scope: {
'map': '=appBa... | Add missing customOnChange directive for the new background selector component | Add missing customOnChange directive for the new background selector component
| JavaScript | mit | Geoportail-Luxembourg/geoportailv3,Geoportail-Luxembourg/geoportailv3,Geoportail-Luxembourg/geoportailv3,Geoportail-Luxembourg/geoportailv3,Geoportail-Luxembourg/geoportailv3 |
067d0b0d647385559f5008aa62c89b18688431c0 | karma.conf.js | karma.conf.js | // Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html
const path = require('path');
process.env.CHROME_BIN = require('puppeteer').executablePath();
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine... | // Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html
const path = require('path');
process.env.CHROME_BIN = require('puppeteer').executablePath();
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine... | Disable unit test console logging | Disable unit test console logging
| JavaScript | mit | kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard |
6cbd9e5ade62b19781fce3263aa8890242aa2804 | contentcuration/contentcuration/frontend/shared/vuex/snackbar/index.js | contentcuration/contentcuration/frontend/shared/vuex/snackbar/index.js | export default {
state: {
isVisible: false,
options: {
text: '',
autoDismiss: true,
},
},
getters: {
snackbarIsVisible(state) {
return state.isVisible;
},
snackbarOptions(state) {
return state.options;
},
},
mutations: {
CORE_CREATE_SNACKBAR(state, snack... | export default {
state: {
isVisible: false,
options: {
text: '',
// duration in ms, 0 indicates it should not automatically dismiss
duration: 6000,
actionText: '',
actionCallback: null,
},
},
getters: {
snackbarIsVisible(state) {
return state.isVisible;
},
... | Remove `autoDismiss` and add actions | Remove `autoDismiss` and add actions
- `autoDismiss: false` can be done by making duration `null`
in this case the snackbar won't dismiss until the button is clicked
on the snackbar item
- Now we can dispatch actions rather than commit mutations directly.
Per Vue 'best practices'
| JavaScript | mit | DXCanas/content-curation,DXCanas/content-curation,DXCanas/content-curation,DXCanas/content-curation |
a003149c2d98a236c320bd84c0e484a6cf62f370 | packages/rekit-studio/src/features/common/monaco/setupLinter.js | packages/rekit-studio/src/features/common/monaco/setupLinter.js | /* eslint no-use-before-define: 0 */
import _ from 'lodash';
import axios from 'axios';
let editor;
let monaco;
// Worker always run and will never terminate
// There is only one global editor instance never disposed in Rekit Studio.
function setupLintWorker(_editor, _monaco) {
editor = _editor;
monaco = _monaco;... | /* eslint no-use-before-define: 0 */
import _ from 'lodash';
import axios from 'axios';
let editor;
let monaco;
// Worker always run and will never terminate
// There is only one global editor instance never disposed in Rekit Studio.
function setupLintWorker(_editor, _monaco) {
editor = _editor;
monaco = _monaco;... | Clear eslint error for non-js files. | Clear eslint error for non-js files.
| JavaScript | mit | supnate/rekit |
5cf5083c97d2189a75c1124581c40c30cf3921dc | lib/global.js | lib/global.js | global.WRTC = require('wrtc')
global.WEBTORRENT_ANNOUNCE = [ 'wss://tracker.webtorrent.io' ]
| global.WRTC = require('wrtc')
global.WEBTORRENT_ANNOUNCE = [ 'wss://tracker.webtorrent.io/' ]
| Fix error "connection error to wss://tracker.webtorrent.io?1fe16837ed" | Fix error "connection error to wss://tracker.webtorrent.io?1fe16837ed"
| JavaScript | mit | feross/webtorrent-hybrid,yciabaud/webtorrent-hybrid,feross/webtorrent-hybrid |
751c2642026e2e6aabd62e1661d7ee01dfb82b4c | app/assets/javascripts/app.js | app/assets/javascripts/app.js | angular
.module('fitnessTracker', ['ui.router', 'templates', 'Devise'])
.config(function($stateProvider, $urlRouterProvider) {
$stateProvider
.state('signup', {
url: '/signup',
templateUrl: 'auth/_signup.html',
controller: 'AuthenticationController as AuthCtrl'
... | angular
.module('fitnessTracker', ['ui.router', 'templates', 'Devise'])
.config(function($stateProvider, $urlRouterProvider) {
$stateProvider
.state('signup', {
url: '/signup',
templateUrl: 'auth/_signup.html',
controller: 'AuthenticationController as AuthCtrl'
... | Change state name from 'profile' to 'user' | Change state name from 'profile' to 'user'
| JavaScript | mit | viparthasarathy/fitness-tracker,viparthasarathy/fitness-tracker,viparthasarathy/fitness-tracker |
06309a28546f22db3ada5c67a363e7062914c701 | lib/loader.js | lib/loader.js | /*jshint node: true */
var Promise = require("bluebird");
var fs = require("fs");
/**
* Maps file paths to their contents. Filled in by readTemplate() if the
* disableCache argument is not set to true.
*/
var cache = {};
/**
* Reads the template file at the given path and returns its contents as a
* Promi... | /*jshint node: true */
var Promise = require("bluebird");
var fs = require("fs");
/**
* Maps file paths to their contents
*/
var cache = {};
/**
* Reads the template file at the given path and returns its contents as a
* Promise. The second parameter is optional; if it is set to true, the string
* that wa... | Fix 'cache' variable doc comment | Fix 'cache' variable doc comment
The comment referenced a non-existing function from during the
development; the affected sentence is removed.
| JavaScript | mit | JangoBrick/teval,JangoBrick/teval |
672d4b454e02fe0cb894fdca00f6a151f7e522e4 | src/data/ui/breakpoints/reducers.js | src/data/ui/breakpoints/reducers.js | //@flow
import { updateObject } from "../../reducers/utils";
export default (
state: { breakpoints: { main: string } },
action: { type: string, newLayout: string, component: string }
) =>
updateObject(state, {
breakpoints: updateObject(state.breakpoints, {
[action.component]: action.newLayout
})
... | //@flow
import { updateObject } from "../../reducers/utils";
export default (
state: { breakpoints: { main: string } },
action: {
type: string,
component: string,
query: { [string]: string }
}
) =>
updateObject(state, {
breakpoints: updateObject(state.breakpoints, {
[action.component]: u... | Update breakpoint reducer to assign deeper queries object | Update breakpoint reducer to assign deeper queries object
| JavaScript | mit | slightly-askew/portfolio-2017,slightly-askew/portfolio-2017 |
b90abb59cc56d6ec0f0adf381e73f4901d5cfbee | lib/assert.js | lib/assert.js | 'use strict';
var Assert = require('test/assert').Assert
, bindMethods = require('es5-ext/lib/Object/bind-methods').call
, merge = require('es5-ext/lib/Object/plain/merge').call
, never, neverBind;
never = function (message) {
this.fail({
message: message,
operator: "never"
});
};
neverBind = function ... | 'use strict';
var Assert = require('test/assert').Assert
, bindMethods = require('es5-ext/lib/Object/plain/bind-methods').call
, merge = require('es5-ext/lib/Object/plain/merge').call
, never, neverBind;
never = function (message) {
this.fail({
message: message,
operator: "never"
});
};
neverBind = fun... | Update up to changes in es5-ext | Update up to changes in es5-ext
| JavaScript | isc | medikoo/tad |
96e722264b46887d4127cf23d3e472783fba777e | js/main.js | js/main.js | var updatePreviewTarget = function(data, status) {
$('.spinner').hide();
$('#preview-target').html(data);
renderLatexExpressions();
}
var renderLatexExpressions = function() {
$('.latex-container').each(
function(index) {
katex.render(
this.innerText,
this,
{ displayMode: $(th... | var updatePreviewTarget = function(data, status) {
$('.spinner').hide();
$('#preview-target').html(data);
renderLatexExpressions();
}
var renderLatexExpressions = function() {
$('.latex-container').each(
function(index) {
katex.render(
this.textContent,
this,
{ displayMode: $(... | Fix katex rendering on firefox | Fix katex rendering on firefox | JavaScript | mit | erettsegik/erettsegik.hu,erettsegik/erettsegik.hu,erettsegik/erettsegik.hu |
f070ba58f9d8fe367284a9c82fd9e8ec75829584 | src/components/Projects.js | src/components/Projects.js | import React from 'react'
import { Project } from './Project'
const Projects = ({ projects = [], feature }) => {
if (!projects.length) return null
const featuredProjects = projects.filter((project) => project.feature)
const nonFeaturedProjects = projects.filter((project) => !project.feature)
return (
<>... | import React from 'react'
import { Project } from './Project'
const Projects = ({ projects = [], feature }) => {
if (!projects.length) return null
const featuredProjects = projects.filter((project) => project.feature)
const nonFeaturedProjects = projects.filter((project) => !project.feature)
return (
<>... | Add shadow to non-feature project container | Add shadow to non-feature project container
| JavaScript | mit | dtjv/dtjv.github.io |
0f874d8c12778c07c93526a84a8e0a43d4d27e3b | js/main.js | js/main.js | $(function() {
yourCollection = new Models.ItemListings();
friendCollection = new Models.ItemListings();
featuredCollection = new Models.ItemListings();
publicCollection = new Models.ItemListings();
yourView = new Views.ListingView({
collection: yourCollection,
el: $('#you-listing')[0]
});
friendView = new... | $(function() {
yourCollection = new Models.ItemListings();
friendCollection = new Models.ItemListings();
featuredCollection = new Models.ItemListings();
publicCollection = new Models.ItemListings();
yourView = new Views.ListingView({
collection: yourCollection,
el: $('#you-listing')[0]
});
friendView = new... | Add missing semicolon, remove trailing whitespace. | Add missing semicolon, remove trailing whitespace.
| JavaScript | mit | burnflare/CrowdBuy,burnflare/CrowdBuy |
db55033e85b3c87ba45b1d5fdb28120cbc526208 | src/manager/components/CommentList/index.js | src/manager/components/CommentList/index.js | import React, { Component } from 'react';
import style from './style';
import CommentItem from '../CommentItem';
export default class CommentList extends Component {
componentDidMount() {
this.wrapper.scrollTop = this.wrapper.scrollHeight;
}
componentDidUpdate(prev) {
if (this.props.comments.length !== ... | import React, { Component } from 'react';
import style from './style';
import CommentItem from '../CommentItem';
export default class CommentList extends Component {
componentDidMount() {
this.wrapper.scrollTop = this.wrapper.scrollHeight;
}
componentDidUpdate(prev) {
if (this.props.comments.length !== ... | Fix boolean logic related to showing delete button | Fix boolean logic related to showing delete button
| JavaScript | mit | kadirahq/react-storybook,nfl/react-storybook,shilman/storybook,storybooks/storybook,storybooks/storybook,storybooks/react-storybook,storybooks/storybook,jribeiro/storybook,enjoylife/storybook,storybooks/storybook,rhalff/storybook,rhalff/storybook,rhalff/storybook,bigassdragon/storybook,jribeiro/storybook,storybooks/sto... |
42af1e835e8ffd80e6772a8dc7694ad81b425dc5 | test/test-api-ping-plugins-route.js | test/test-api-ping-plugins-route.js | var request = require('supertest');
var assert = require('assert');
var storageFactory = require('../lib/storage/storage-factory');
var storage = storageFactory.getStorageInstance('test');
var app = require('../webserver/app')(storage);
describe('ping plugins route', function () {
var server;
var PORT = 3355;
... | var request = require('supertest');
var assert = require('assert');
var storageFactory = require('../lib/storage/storage-factory');
var storage = storageFactory.getStorageInstance('test');
var app = require('../webserver/app')(storage);
describe('ping plugins route', function () {
var server;
var PORT = 3355;
... | Sort to get determinist ordering | Sort to get determinist ordering
| JavaScript | mit | corinis/watchmen,corinis/watchmen,ravi/watchmen,iloire/WatchMen,Cellington1/Status,iloire/WatchMen,Cellington1/Status,iloire/WatchMen,Cellington1/Status,NotyIm/WatchMen,ravi/watchmen,corinis/watchmen,NotyIm/WatchMen,NotyIm/WatchMen,plyo/watchmen,plyo/watchmen,labianchin/WatchMen,labianchin/WatchMen,ravi/watchmen,labian... |
81a144daaf912e9e9692f558b1ce0fb521575db1 | package.js | package.js | Package.describe({
name: "practicalmeteor:loglevel",
summary: "Simple logger with app and per-package log levels and line number preserving output.",
version: "1.2.0_2",
git: "https://github.com/practicalmeteor/meteor-loglevel.git"
});
Package.onUse(function (api) {
api.versionsFrom('0.9.3');
api.use(['m... | Package.describe({
name: "practicalmeteor:loglevel",
summary: "Simple logger with app and per-package log levels and line number preserving output.",
version: "1.2.0_2",
git: "https://github.com/practicalmeteor/meteor-loglevel.git"
});
Package.onUse(function (api) {
api.versionsFrom('0.9.3');
api.use(['m... | Update munit dependency to 2.1.4 | Update munit dependency to 2.1.4
| JavaScript | mit | practicalmeteor/meteor-loglevel,solderzzc/meteor-loglevel |
d0d62e6e7bcf78e7955ac693b36084d3dc94b725 | lib/workers/repository/onboarding/branch/index.js | lib/workers/repository/onboarding/branch/index.js | const { detectPackageFiles } = require('../../../../manager');
const { createOnboardingBranch } = require('./create');
const { rebaseOnboardingBranch } = require('./rebase');
const { isOnboarded, onboardingPrExists } = require('./check');
async function checkOnboardingBranch(config) {
logger.debug('checkOnboarding()... | const { detectPackageFiles } = require('../../../../manager');
const { createOnboardingBranch } = require('./create');
const { rebaseOnboardingBranch } = require('./rebase');
const { isOnboarded, onboardingPrExists } = require('./check');
async function checkOnboardingBranch(config) {
logger.debug('checkOnboarding()... | Allow --renovate-fork Cli flag for onboarding. | Allow --renovate-fork Cli flag for onboarding.
Fixes https://github.com/renovateapp/renovate/issues/1371.
| JavaScript | mit | singapore/renovate,singapore/renovate,singapore/renovate |
e1693cbc3e8f27a15109e128d17b675845f16166 | assets/mathjaxhelper.js | assets/mathjaxhelper.js | MathJax.Hub.Config({
"tex2jax": {
inlineMath: [['$','$'], ['\\(','\\)']],
processEscapes: true
}
});
MathJax.Hub.Config({
config: ["MMLorHTML.js"],
jax: ["input/TeX", "output/HTML-CSS", "output/NativeMML"],
extensions: ["MathMenu.js", "MathZoom.js", "AMSmath.js", "AMSsymbols.js", "autobold.js", "autol... | MathJax.Hub.Config({
"tex2jax": {
inlineMath: [['$','$'], ['\\(','\\)']],
processEscapes: true
}
});
MathJax.Hub.Config({
config: ["MMLorHTML.js"],
jax: [
"input/TeX",
"output/HTML-CSS",
"output/NativeMML"
],
extensions: [
"MathMenu.js",
"MathZoom.js",
"TeX/AMSmath.js",
"... | Fix paths for some mathjax extensions. | Fix paths for some mathjax extensions.
| JavaScript | mit | mortenpi/Documenter.jl,MichaelHatherly/Documenter.jl,MichaelHatherly/Lapidary.jl,JuliaDocs/Documenter.jl |
2aed51e0cddadbf600421ae56587a2b1fceb6198 | config/index.js | config/index.js | import defaults from 'defaults'
const API_GLOBAL = '_IMDIKATOR'
const env = process.env.NODE_ENV || 'development'
const DEFAULTS = {
port: 3000,
reduxDevTools: false
}
const globalConfig = (typeof window !== 'undefined' && window[API_GLOBAL] || {})
export default defaults({
env,
port: process.env.PORT,
/... | import defaults from 'defaults'
const API_GLOBAL = '_IMDIKATOR'
const env = process.env.NODE_ENV || 'development'
const DEFAULTS = {
port: 3000,
reduxDevTools: false
}
const globalConfig = (typeof window !== 'undefined' && window[API_GLOBAL] || {})
export default defaults({
env,
port: process.env.PORT,
/... | FIX - changed node api to https | FIX - changed node api to https
| JavaScript | mit | bengler/imdikator,bengler/imdikator |
fdce895bbaa4c08431d173edd286cb9b6670f2c2 | tools/cli/dev-bundle-bin-helpers.js | tools/cli/dev-bundle-bin-helpers.js | var path = require("path");
var devBundleDir = path.resolve(__dirname, "..", "..", "dev_bundle");
var binDir = path.join(devBundleDir, "bin");
exports.getCommandPath = function (command) {
return path.join(binDir, command);
};
exports.getEnv = function () {
var env = Object.create(process.env);
env.PATH = [
... | var path = require("path");
var devBundleDir = path.resolve(__dirname, "..", "..", "dev_bundle");
var binDir = path.join(devBundleDir, "bin");
exports.getCommandPath = function (command) {
return path.join(binDir, command);
};
exports.getEnv = function () {
var env = Object.create(process.env);
var paths = [
... | Make sure env.Path === env.PATH on Windows. | Make sure env.Path === env.PATH on Windows.
| JavaScript | mit | Hansoft/meteor,Hansoft/meteor,4commerce-technologies-AG/meteor,jdivy/meteor,mjmasn/meteor,Hansoft/meteor,4commerce-technologies-AG/meteor,chasertech/meteor,chasertech/meteor,4commerce-technologies-AG/meteor,chasertech/meteor,chasertech/meteor,4commerce-technologies-AG/meteor,Hansoft/meteor,4commerce-technologies-AG/met... |
7e6697514f6f2596ebcc9227c730effc72783c06 | test/visual/cypress/specs/home-page-spec.js | test/visual/cypress/specs/home-page-spec.js | describe('home page', () => {
before(() => {
cy.visit('/')
})
it('content', () => {
cy.get('.dashboard-section__info-feed-date').hideElement()
cy.get('.grid-row').compareSnapshot('homePageContent')
})
it('header', () => {
cy.get('.datahub-header').compareSnapshot('homePageHeader')
})
it... | describe('home page', () => {
before(() => {
cy.visit('/')
})
it('content', () => {
cy.get('.dashboard-section__info-feed-date').hideElement()
cy.get('[for="company-name"]').should('be.visible')
cy.get('.grid-row').compareSnapshot('homePageContent')
})
it('header', () => {
cy.get('.datah... | Add assertion to test to wait for component to load | Add assertion to test to wait for component to load
| JavaScript | mit | uktrade/data-hub-fe-beta2,uktrade/data-hub-fe-beta2,uktrade/data-hub-frontend,uktrade/data-hub-frontend,uktrade/data-hub-frontend |
2c1660c07e516d96dbdf8000a766fd6b63f3ef73 | packages/ember-data/lib/system/application_ext.js | packages/ember-data/lib/system/application_ext.js | var set = Ember.set;
Ember.onLoad('Ember.Application', function(Application) {
Application.registerInjection({
name: "store",
before: "controllers",
injection: function(app, stateManager, property) {
if (!stateManager) { return; }
if (property === 'Store') {
set(stateManager, 'store'... | var set = Ember.set;
/**
This code registers an injection for Ember.Application.
If an Ember.js developer defines a subclass of DS.Store on their application,
this code will automatically instantiate it and make it available on the
router.
Additionally, after an application's controllers have been injected... | Add inline docs to injection code | Add inline docs to injection code | JavaScript | mit | BookingSync/data,EmberSherpa/data,Eric-Guo/data,funtusov/data,sebastianseilund/data,topaxi/data,courajs/data,tarzan/data,sammcgrail/data,Turbo87/ember-data,kimroen/data,courajs/data,greyhwndz/data,sebastianseilund/data,gniquil/data,hibariya/data,Robdel12/data,fpauser/data,lostinpatterns/data,yaymukund/data,gabriel-leta... |
26d55a74b3f302f3803f8e87d05866bab81cb5ed | src/components/svg-icon/svg-icon.js | src/components/svg-icon/svg-icon.js | // Aurelia
import {
bindable,
bindingMode
} from 'aurelia-framework';
import icons from 'configs/icons';
export class SvgIcon {
@bindable({ defaultBindingMode: bindingMode.oneWay }) iconId;
attached () {
const id = this.iconId.toUpperCase().replace('-', '_');
this.icon = icons[id] ? icons[id] : icons... | // Aurelia
import {
bindable,
bindingMode
} from 'aurelia-framework';
import icons from 'configs/icons';
export class SvgIcon {
@bindable({ defaultBindingMode: bindingMode.oneWay }) iconId;
constructor () {
this.icon = {
viewBox: '0 0 16 16',
svg: ''
};
}
attached () {
const id =... | Set default values to avoid initial binding errors. | Set default values to avoid initial binding errors.
| JavaScript | mit | flekschas/hipiler,flekschas/hipiler,flekschas/hipiler |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.