commit stringlengths 40 40 | old_file stringlengths 4 236 | new_file stringlengths 4 236 | old_contents stringlengths 1 3.26k | new_contents stringlengths 16 4.43k | subject stringlengths 16 624 | message stringlengths 17 3.29k | lang stringclasses 5
values | license stringclasses 13
values | repos stringlengths 5 91.5k |
|---|---|---|---|---|---|---|---|---|---|
e087fe25c546b1a142727b56da4751f18c46f2cb | katas/libraries/hamjest/assertThat.js | katas/libraries/hamjest/assertThat.js | import { assertThat, equalTo, containsString } from 'hamjest';
describe('The core function, `assertThat()`', () => {
it('is a function', () => {
const typeOfAssertThat = typeof assertThat;
assertThat(typeOfAssertThat, equalTo('function'));
});
describe('requires at least two params', () => {
it('1st:... | import {
assertThat, equalTo,
containsString, throws, returns,
} from 'hamjest';
describe('The core function, `assertThat()`', () => {
it('is a function', () => {
const typeOfAssertThat = typeof assertThat;
assertThat(typeOfAssertThat, equalTo('function'));
});
describe('requires at least two params'... | Add a little under-the-hood tests. | Add a little under-the-hood tests.
| JavaScript | mit | tddbin/katas,tddbin/katas,tddbin/katas |
b7d600cdf1d870e2ffba4fd7c64a94156fadb5b9 | src/delir-core/tests/project/project-spec.js | src/delir-core/tests/project/project-spec.js | import Project from '../../src/project/project'
import Asset from '../../src/project/asset'
import Composition from '../../src/project/composition'
import TimeLane from '../../src/project/timelane'
import Layer from '../../src/project/layer'
describe('project structure specs', () => {
describe('Project', () => {
... | import Project from '../../src/project/project'
import Asset from '../../src/project/asset'
import Composition from '../../src/project/composition'
import TimeLane from '../../src/project/timelane'
import Clip from '../../src/project/clip'
describe('project structure specs', () => {
describe('Project', () => {
... | Replace `Layer` to `Clip` on Project structure spec` | Replace `Layer` to `Clip` on Project structure spec`
| JavaScript | mit | Ragg-/Delir,Ragg-/Delir,Ragg-/Delir,Ragg-/Delir |
499b227e4ec6bd00899363366c2520c9c2be151c | tests/frontend/index.js | tests/frontend/index.js | module.exports = {
"open index page": function(browser) {
browser
.url(browser.globals.url)
.waitForElementVisible("#index-view", 3000)
.assert.containsText("#header .logo:nth-child(2)", "Color Themes")
.waitForElementVisible(".pending-icon", 100)
... | module.exports = {
"open index page": function(browser) {
browser
.url(browser.globals.url)
.waitForElementVisible("#index-view", 3000)
.assert.containsText("#header .logo:nth-child(2)", "Color Themes")
.waitForElementVisible(".pending-icon", 100)
... | Add new test for opening pages | Add new test for opening pages
| JavaScript | mit | y-a-r-g/color-themes,y-a-r-g/color-themes |
fba049eecf0689317634e892fd2f3c59f221d0f9 | tests/e2e/utils/activate-amp-and-set-mode.js | tests/e2e/utils/activate-amp-and-set-mode.js |
/**
* WordPress dependencies
*/
import { activatePlugin, visitAdminPage } from '@wordpress/e2e-test-utils';
/**
* The allow list of AMP modes.
*/
export const allowedAMPModes = {
standard: 'standard',
transitional: 'transitional',
reader: 'disabled',
};
/**
* Activate AMP and set it to the correct mode.
*
... |
/**
* WordPress dependencies
*/
import { activatePlugin, visitAdminPage } from '@wordpress/e2e-test-utils';
/**
* The allow list of AMP modes.
*/
export const allowedAMPModes = {
primary: 'standard',
secondary: 'transitional',
standard: 'standard',
transitional: 'transitional',
reader: 'disabled',
};
/**
*... | Add aliase for primary and secondary AMP modes. | Add aliase for primary and secondary AMP modes.
| JavaScript | apache-2.0 | google/site-kit-wp,google/site-kit-wp,google/site-kit-wp,google/site-kit-wp |
d2f7499fc65d63769027f2498dccb5d9b4924fd6 | pages/index.js | pages/index.js | import React from 'react'
import Head from 'next/head'
import {MDXProvider} from '@mdx-js/react'
import IndexMDX from './index.mdx'
import CodeBlock from '../doc-components/CodeBlock'
const components = {
pre: props => <div {...props} />,
code: CodeBlock
}
export default () => (
<MDXProvider components={compon... | import React from 'react'
import Head from 'next/head'
import {MDXProvider} from '@mdx-js/react'
import IndexMDX from './index.mdx'
import CodeBlock from '../doc-components/CodeBlock'
const components = {
pre: props => <div {...props} />,
code: CodeBlock
}
export default () => (
<MDXProvider components={compon... | Add canonical url for docs | Add canonical url for docs
| JavaScript | mit | miduga/react-slidy |
d85d4bc34ad869b20b4027d5f32c5ca64e4e4c3e | public/utility.js | public/utility.js | module.exports = {
generateQueryString: function (data) {
var ret = []
for (var d in data)
if (data[d])
ret.push(encodeURIComponent(d) + "=" + encodeURIComponent(data[d]))
return ret.join("&")
},
base64Encoding: function (data) {
return new Buffer(data).toString('base64')
},
ba... | module.exports = {
generateQueryString: function (data) {
var ret = []
for (var d in data)
if (data[d])
ret.push(encodeURIComponent(d) + "=" + encodeURIComponent(data[d]))
return ret.join("&")
},
base64Encoding: function (data) {
return new Buffer(data).toString('base64')
},
ba... | Add Input White List Checker to Utility | Add Input White List Checker to Utility
| JavaScript | mit | Flieral/Publisher-Service,Flieral/Publisher-Service |
be3aab27fb4ec87679a0734335fb5f67b1c691fe | lib/themes/dosomething/paraneue_dosomething/js/url/helpers.js | lib/themes/dosomething/paraneue_dosomething/js/url/helpers.js | /**
* Get a specified segment from the pathname.
*
* @param {String} pathname
* @param {Number} segment
* @return {Boolean}
*/
export function getPathnameSegment(pathname = window.location.pathname, segmentIndex = 0) {
let segments = pathname.split('/');
segments.splice(0,1);
return segments[segmentInde... | /**
* Get a specified segment from the pathname.
*
* @param {String} pathname
* @param {Number} segment
* @return {Boolean}
*/
export function getPathnameSegment(pathname = window.location.pathname, segmentIndex = 0) {
let segments = pathname.split('/');
segmentIndex++;
return segments[segmentIndex];
}
| Update to increase index insted of splicing first item off array. | Update to increase index insted of splicing first item off array.
| JavaScript | mit | DoSomething/dosomething,sergii-tkachenko/phoenix,mshmsh5000/dosomething-1,mshmsh5000/dosomething-1,DoSomething/dosomething,DoSomething/phoenix,sergii-tkachenko/phoenix,DoSomething/dosomething,deadlybutter/phoenix,deadlybutter/phoenix,sergii-tkachenko/phoenix,mshmsh5000/dosomething-1,DoSomething/dosomething,DoSomething/... |
3c95819895253b77edcfcdd6760a846f590c9210 | src/InputHeader.js | src/InputHeader.js | import React from 'react'
import { Component } from 'react'
class InputHeader extends Component {
focus = () => {
this.refs.inputHeader.focus()
}
blur = () => {
this.refs.inputHeader.blur()
}
render() {
return (
<div className="selectize-input items not-full has-options">
<input t... | import React from 'react'
import { Component } from 'react'
class InputHeader extends Component {
focus = () => {
this._input.focus()
}
blur = () => {
this._input.blur()
}
render() {
return (
<div className="selectize-input items not-full has-options">
<input type="text" classNam... | Change ref from string to callback | Change ref from string to callback
| JavaScript | mit | andynoelker/react-data-select |
83bea17aff9f4c3d6adcdf88b3f1661be9b92c15 | middleware/protect.js | middleware/protect.js | var UUID = require('./../uuid' );
function forceLogin(keycloak, request, response) {
var host = request.hostname;
var headerHost = request.headers.host.split(':');
var port = headerHost[1] || '';
var protocol = request.protocol;
var redirectUrl = protocol + '://' + host + ( port === '' ? '' : ':' + port ) +... | var UUID = require('./../uuid' );
function forceLogin(keycloak, request, response) {
var host = request.hostname;
var headerHost = request.headers.host.split(':');
var port = headerHost[1] || '';
var protocol = request.protocol;
var redirectUrl = protocol + '://' + host + ( port === '' ? '' : ':' + port ) +... | Use token.hasRole to check for roles of other apps | Use token.hasRole to check for roles of other apps
| JavaScript | apache-2.0 | keycloak/keycloak-nodejs-connect,keycloak/keycloak-nodejs-connect,abstractj/keycloak-nodejs-connect,abstractj/keycloak-nodejs-connect,abstractj/keycloak-nodejs-connect,keycloak/keycloak-nodejs-connect |
1352d718c2229c64dd6e981937efebfe6c3ddf60 | dxr/static/js/panel.js | dxr/static/js/panel.js | $(function() {
var panelContent = $('#panel-content');
/**
* Toggles the ARIA expanded and hidden attributes' state.
*
* @param Object elem The element on which to toggle the attribute.
*/
function toggleAria(elem) {
var expandedState = elem.attr('aria-expanded') === 'true' ? 'f... | $(function() {
var panelContent = $('#panel-content');
/**
* Toggles the ARIA expanded and hidden attributes' state.
*
* @param Object elem The element on which to toggle the attribute.
*/
function toggleAria(elem) {
var expandedState = elem.attr('aria-expanded') === 'true' ? 'f... | Make ARIA attrs actually update. | Make ARIA attrs actually update.
| JavaScript | mit | pombredanne/dxr,pelmers/dxr,gartung/dxr,erikrose/dxr,jbradberry/dxr,jbradberry/dxr,kleintom/dxr,srenatus/dxr,srenatus/dxr,pombredanne/dxr,gartung/dxr,bozzmob/dxr,KiemVM/Mozilla--dxr,jay-z007/dxr,jbradberry/dxr,pombredanne/dxr,bozzmob/dxr,pombredanne/dxr,pelmers/dxr,jay-z007/dxr,nrc/dxr,jay-z007/dxr,kleintom/dxr,nrc/dxr... |
cf3d28d03ef9761001799e4224ce38f65c869de4 | src/networking/auth.js | src/networking/auth.js | import * as ACTION_TYPES from '../constants/action_types'
function extractToken(hash, oldToken) {
const match = hash.match(/access_token=([^&]+)/)
let token = !!match && match[1]
if (!token) {
token = oldToken
}
return token
}
export function checkAuth(dispatch, oldToken, location) {
const token = ext... | import * as ACTION_TYPES from '../constants/action_types'
function extractToken(hash, oldToken) {
const match = hash.match(/access_token=([^&]+)/)
let token = !!match && match[1]
if (!token) {
token = oldToken
}
return token
}
export function checkAuth(dispatch, oldToken, location) {
const token = ext... | Remove unnecessary whitespace from url string. | Remove unnecessary whitespace from url string. | JavaScript | mit | ello/webapp,ello/webapp,ello/webapp |
41ffe8f6551fcf98eaba292a82e94a6bfa382486 | chrome/background.js | chrome/background.js | /*global chrome, console*/
console.log("background.js");
chrome.runtime.getBackgroundPage(function() {
console.log("getBackgroundPage", arguments);
});
chrome.runtime.onMessageExternal.addListener(function(message, sender, sendResponse) {
console.log("onMessageExternal", arguments);
});
| /*global chrome, console*/
// NOT USED
console.log("background.js");
chrome.runtime.getBackgroundPage(function() {
console.log("getBackgroundPage", arguments);
});
chrome.runtime.onMessageExternal.addListener(function(message, sender, sendResponse) {
console.log("onMessageExternal", arguments);
});
| Add comment to say this file isn't used. | Add comment to say this file isn't used.
| JavaScript | mit | gitgrimbo/settlersonlinesimulator,gitgrimbo/settlersonlinesimulator |
cd5790825ab7b3f3b57b1735f699c21c4a82fc35 | bookmarklet.js | bookmarklet.js | javascript:(function(){$("tr.file-diff-line > td.diff-line-num-addition.empty-cell").each(function(index,cell){var line=$(cell).parent().attr('data-line');var path=$(cell).parent().attr('data-path');var repoRoot='/Users/nick/reporoot/';var openInTextmateUrl='txmt://open?url=file://'+repoRoot+path+'&line='+line;$(cell).... | javascript:!function(){$("tr.file-diff-line > td.diff-line-num-addition.empty-cell").each(function(a,b){var c=$(b).parent().attr("data-line"),d=$(b).parent().attr("data-path"),e="/Users/nick/reporoot/",f="txmt://open?url=file://"+e+d+"&line="+c;$(b).html('<a href="'+f+'">Txmt</a>')})}(window,jQuery);
| Use uglifyjs to minify instead | Use uglifyjs to minify instead | JavaScript | mit | nicolasartman/pullmate |
04ff19fca9ffa556bed81950430b9f2257b13841 | front-end/src/components/shared/Footer.js | front-end/src/components/shared/Footer.js | import React, { Component } from 'react'
import '../../css/style.css'
import FA from 'react-fontawesome'
class Footer extends Component {
render(){
return(
<div className="Footer" >
<br />
<FA
name="linkedin"
border={true}
size=... | import React, { Component } from 'react'
import '../../css/style.css'
import FA from 'react-fontawesome'
class Footer extends Component {
render(){
return(
<div className="Footer" >
<br />
<FA
name="linkedin"
border={true}
size=... | Update for github commit settings | Update for github commit settings
| JavaScript | mit | iankhor/medrefr,iankhor/medrefr |
ac4c46cf46c6f27bdc26cbbd4a2d37989cc2d0ed | src/ActiveRules.js | src/ActiveRules.js | 'use strict'
const { Fact, Rule, Operator, Engine } = require('json-rules-engine')
class ActiveRules {
constructor () {
this.Fact = Fact
this.Rule = Rule
this.Operator = Operator
this.Engine = Engine
}
}
module.exports = ActiveRules
| 'use strict'
const { Fact, Rule, Operator, Engine } = require('json-rules-engine')
const djv = require('djv');
class ActiveRules {
constructor () {
this.Fact = Fact
this.Rule = Rule
this.Operator = Operator
this.Engine = Engine
this.Validator = djv;
}
}
module.exports = ActiveRules
| Add JSON Validator based on djv | Add JSON Validator based on djv | JavaScript | mit | bwinkers/ActiveRules-Server |
a53181a444acf6b91db6ccbc41f5c4dc55c4b2a4 | e2e/e2e.conf.js | e2e/e2e.conf.js | var HtmlReporter = require('protractor-html-screenshot-reporter');
exports.config = {
allScriptsTimeout: 11000,
specs: [
'*.js'
],
multiCapabilities: [{
'browserName': 'chrome'
// }, {
// 'browserName': 'firefox'
}],
baseUrl: 'http://localhost:9001/',
framework: 'jasmine',
jasmin... | var HtmlReporter = require('protractor-html-screenshot-reporter');
exports.config = {
allScriptsTimeout: 11000,
specs: [
'*.js'
],
sauceUser: 'mkuzak',
sauceKey: '2e7a055d-0a1d-40ce-81dd-f6bff479c555',
multiCapabilities: [{
'browserName': 'chrome',
'version': '39.0',
'platform': 'WIN8_1'... | Use sauce labs for e2e tests | Use sauce labs for e2e tests
| JavaScript | apache-2.0 | NLeSC/PattyVis,NLeSC/PattyVis |
da8de07075912bdfa163efdfeac6b5b4237f8928 | src/ProjectInfo.js | src/ProjectInfo.js | import React, { PropTypes } from 'react';
export default function ProjectInfo({ projectData }) {
// console.log('projectData: ', projectData);
const {
urls,
photo,
name
} = projectData;
const url = urls.web.project;
const photoSrc = photo.med;
return (
<div className="project-info">
<... | import React, { PropTypes } from 'react';
export default function ProjectInfo({ projectData }) {
// console.log('projectData: ', projectData);
const {
urls,
photo,
name
} = projectData;
if (!urls || !photo) return null;
return (
<div className="project-info">
<a href={urls.web.project} ... | Handle not having loaded all projectdata yet | Handle not having loaded all projectdata yet
| JavaScript | mit | peteruithoven/KickstarterStatus,peteruithoven/KickstarterStatus,peteruithoven/KickstarterStatus |
3095917c0871ce437b74329f314ba5d65e8ff489 | examples/clear/index.js | examples/clear/index.js | #!/usr/bin/env node
/**
* Like GNU ncurses "clear" command.
* https://github.com/mscdex/node-ncurses/blob/master/deps/ncurses/progs/clear.c
*/
require('../../')(process.stdout)
.eraseData(2)
.goto(1, 1)
| #!/usr/bin/env node
/**
* Like GNU ncurses "clear" command.
* https://github.com/mscdex/node-ncurses/blob/master/deps/ncurses/progs/clear.c
*/
function lf () { return '\n' }
require('../../')(process.stdout)
.write(Array.apply(null, Array(process.stdout.getWindowSize()[1])).map(lf).join(''))
.eraseData(2)
.... | Make 'clear' command work on Windows. | Make 'clear' command work on Windows.
| JavaScript | mit | TooTallNate/ansi.js,kasicka/ansi.js |
3a20e160d532d82895251ca568378bf903ba67c1 | app/users/user-links.directive.js | app/users/user-links.directive.js | {
angular
.module('meganote.users')
.directive('userLinks', [
'CurrentUser',
(CurrentUser) => {
class UserLinksController {
user() {
return CurrentUser.get();
}
signedIn() {
return CurrentUser.signedIn();
}
}
... | {
angular
.module('meganote.users')
.directive('userLinks', [
'AuthToken',
'CurrentUser',
(AuthToken, CurrentUser) => {
class UserLinksController {
user() {
return CurrentUser.get();
}
signedIn() {
return CurrentUser.signedIn()... | Add logout link and method | Add logout link and method
| JavaScript | mit | sbaughman/meganote,sbaughman/meganote |
4fa12570580a6c81a1cf3eb64e68aef0966b7b67 | ObjectPoolMaker.js | ObjectPoolMaker.js | (function () {
'use strict';
function ObjectPoolMaker(Constructor, size) {
var objectPool = [],
marker = 0,
poolSize = size || 0;
if (poolSize) {
expandPool(poolSize);
}
function expandPool(newSize) {
var i;
for (i = 0; i < newSize - poolSize; i++) {
obj... | (function () {
'use strict';
function ObjectPoolMaker(Constructor, size) {
var objectPool = [],
nextAvailableIndex = 0,
poolSize = size || 1;
if (poolSize) {
expandPool(poolSize);
}
function expandPool(newSize) {
var i;
for (i = 0; i < newSize - poolSize; i++) {... | Rename "marker" to "nextAvailableIndex" for better readability | Rename "marker" to "nextAvailableIndex" for better readability
* Initialize poolSize with 1 (doubling 0 is not smart :)
| JavaScript | mit | handrus/zombies-game,brunops/zombies-game,brunops/zombies-game |
55d2ef6add68fde5914af4a43117000fc31f65a3 | app/models/coordinator.js | app/models/coordinator.js | import EmberObject from '@ember/object';
import Evented from '@ember/object/evented';
import { computed } from '@ember/object';
import ObjHash from './obj-hash';
import { unwrapper } from 'ember-drag-drop/utils/proxy-unproxy-objects';
export default EmberObject.extend(Evented, {
objectMap: computed(function() {
... | import EmberObject from '@ember/object';
import Evented from '@ember/object/evented';
import { computed } from '@ember/object';
import ObjHash from './obj-hash';
import { unwrapper } from 'ember-drag-drop/utils/proxy-unproxy-objects';
export default EmberObject.extend(Evented, {
objectMap: computed(function() {
... | Call directly instead of sending | Call directly instead of sending
| JavaScript | mit | mharris717/ember-drag-drop,mharris717/ember-drag-drop |
799893651200debc93951818b09526217e4472b8 | lib/ssq.js | lib/ssq.js | var dgram = require('dgram');
module.exports = {}; | /* Source Server Query (SSQ) library
* Author : George Pittarelli
*
* SSQ protocol is specified here:
* https://developer.valvesoftware.com/wiki/Server_queries
*/
// Module imports
var dgram = require('dgram');
// Message request formats, straight from the spec
var A2A_PING = "i"
, A2S_SERVERQUERY_... | Add request constants from spec | Add request constants from spec
| JavaScript | bsd-3-clause | gpittarelli/node-ssq |
3cdee6c75924c3cd2c0a0a503d2f927ee6e348a0 | https.js | https.js | //@ts-check
const fs = require("fs");
const https = require('https');
const tls = require("tls");
module.exports = function (iface) {
/** @type { import("tls").TlsOptions } Server options object */
const serveroptions = {
key: [fs.readFileSync("tiddlyserver.key")], // server key file
cert: [fs.readFileSync("tid... | //@ts-check
const fs = require("fs");
const https = require('https');
const tls = require("tls");
// use this command to create a new self-signed certificate
// openssl req -x509 -sha256 -nodes -newkey rsa:2048 -days 365 -keyout localhost.key -out localhost.crt
module.exports = function (iface) {
/** @type { import(... | Add openssl command to generate certificate | Add openssl command to generate certificate
| JavaScript | mit | Arlen22/TiddlyServer,Arlen22/TiddlyServer,Arlen22/TiddlyServer,Arlen22/TiddlyServer |
ce3f97ffbb05d83401356bd64b4870559adaaf18 | index.js | index.js | 'use strict';
var normalizeOptions = require('es5-ext/object/normalize-options')
, setPrototypeOf = require('es5-ext/object/set-prototype-of')
, ensureObject = require('es5-ext/object/valid-object')
, ensureStringifiable = require('es5-ext/object/validate-stringifiable-value')
, d ... | 'use strict';
var normalizeOptions = require('es5-ext/object/normalize-options')
, setPrototypeOf = require('es5-ext/object/set-prototype-of')
, ensureObject = require('es5-ext/object/valid-object')
, ensureStringifiable = require('es5-ext/object/validate-stringifiable-value')
, d ... | Support pass of reEvaluateScript options | Support pass of reEvaluateScript options
| JavaScript | mit | medikoo/html-site-tree |
5617c3fd5e2d98b68408ffc5332c6e657613e2cc | index.js | index.js | 'use strict'
var zip = require('zippo')
var State = require('dover')
var Observ = require('observ')
var pipe = require('value-pipe')
var changeEvent = require('value-event/change')
var h = require('virtual-dom/h')
module.exports = ZipInput
function ZipInput (data) {
data = data || {}
var state = State({
valu... | 'use strict'
var zip = require('zippo')
var State = require('dover')
var Observ = require('observ')
var pipe = require('value-pipe')
var changeEvent = require('value-event/change')
var h = require('virtual-dom/h')
module.exports = ZipInput
function ZipInput (data) {
data = data || {}
var state = State({
valu... | Remove placeholder from state atom | Remove placeholder from state atom
| JavaScript | mit | bendrucker/zip-input |
5d59dffde1a6d3d5d86dfcbbcdb1f798613870bf | website/src/app/project/experiments/services/experiments-service.service.js | website/src/app/project/experiments/services/experiments-service.service.js | class ExperimentsService {
/*@ngInject*/
constructor(projectsAPI) {
this.projectsAPI = projectsAPI;
}
getAllForProject(projectID) {
return this.projectsAPI(projectID).one('experiments').getList();
}
createForProject(projectID, experiment) {
return this.projectsAPI(proje... | class ExperimentsService {
/*@ngInject*/
constructor(projectsAPI) {
this.projectsAPI = projectsAPI;
}
getAllForProject(projectID) {
return this.projectsAPI(projectID).one('experiments').getList();
}
createForProject(projectID, experiment) {
return this.projectsAPI(proje... | Add call to associate a template with a task. | Add call to associate a template with a task.
| JavaScript | mit | materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org |
4e1a2db67b76238ca22fd5d398f4751b10a25bed | index.js | index.js | module.exports = {
parser: 'babel-eslint',
extends: 'airbnb',
globals: {
before: true,
beforeEach: true,
after: true,
afterEach: true,
describe: true,
it: true,
},
rules: {
'arrow-body-style': ['off'],
'react/jsx-no-bind': ['off'],
'object-shorthand': ['off'],
},
};
| module.exports = {
parser: 'babel-eslint',
extends: 'airbnb',
globals: {
before: true,
beforeEach: true,
after: true,
afterEach: true,
describe: true,
it: true,
xit: true,
xdescribe: true,
},
rules: {
'arrow-body-style': ['off'],
'react/jsx-no-bind': ['off'],
'objec... | Make `xit` and `xdescribe` not complain, they are shown after the test run anyways. | Make `xit` and `xdescribe` not complain, they are shown after the test run anyways.
| JavaScript | mit | crewmeister/eslint-config-crewmeister |
cd972400073e154c2e7b6aa483447763ad87947f | schema/me/suggested_artists_args.js | schema/me/suggested_artists_args.js | import { GraphQLBoolean, GraphQLString, GraphQLInt } from "graphql"
export const SuggestedArtistsArgs = {
artist_id: {
type: GraphQLString,
description: "The slug or ID of an artist",
},
exclude_artists_without_forsale_artworks: {
type: GraphQLBoolean,
description: "Exclude artists without for sa... | import { GraphQLBoolean, GraphQLString, GraphQLInt, GraphQLList } from "graphql"
export const SuggestedArtistsArgs = {
artist_id: {
type: GraphQLString,
description: "The slug or ID of an artist",
},
exclude_artists_without_forsale_artworks: {
type: GraphQLBoolean,
description: "Exclude artists w... | Add excluded artist ids to suggested artist arguments | Add excluded artist ids to suggested artist arguments
| JavaScript | mit | artsy/metaphysics,artsy/metaphysics,artsy/metaphysics,mzikherman/metaphysics-1,mzikherman/metaphysics-1,mzikherman/metaphysics-1,mzikherman/metaphysics-1 |
abaa6231fbb1d0e25eb188acd186a8236e901372 | app/lib/Actions.js | app/lib/Actions.js | 'use strict';
var Reflux = require('reflux');
module.exports = function(api, resource) {
var asyncChildren = {
children: ['completed', 'failed'],
};
var Actions = Reflux.createActions({
load: asyncChildren,
create: asyncChildren,
update: asyncChildren,
sort: asyncCh... | 'use strict';
var Reflux = require('reflux');
module.exports = function(api, resource) {
var asyncChildren = {
children: ['completed', 'failed'],
};
var Actions = Reflux.createActions({
load: asyncChildren,
create: asyncChildren,
update: asyncChildren,
sort: asyncCh... | Use data returned from PUT/POST after actions | Use data returned from PUT/POST after actions
Now dates and other derived values should show up ok.
| JavaScript | mit | koodilehto/koodilehto-crm-frontend,bebraw/react-crm-frontend,bebraw/react-crm-frontend,koodilehto/koodilehto-crm-frontend |
49fec8ec59fa692f7cb9b04670f6e5a221dc8087 | src/js/store/reducers/settings.js | src/js/store/reducers/settings.js | import { SET_SETTINGS, EDITOR_DECREASE_FONT_SIZE, EDITOR_INCREASE_FONT_SIZE } from '../actions';
const initialState = {};
const MINIMUM_FONT_SIZE = 8;
const settings = (state = initialState, action) => {
// The settings is an object with an arbitrary set of properties.
// The only property we don't want to co... | import { SET_SETTINGS, EDITOR_DECREASE_FONT_SIZE, EDITOR_INCREASE_FONT_SIZE } from '../actions';
const MINIMUM_FONT_SIZE = 8;
const initialState = {
editorFontSize: 14,
};
const settings = (state = initialState, action) => {
// The settings is an object with an arbitrary set of properties.
// The only pr... | Fix editor font size brokenness | Fix editor font size brokenness
| JavaScript | mit | tangrams/tangram-play,tangrams/tangram-play |
e6a41ab15506da80c954185de2a4cea3e18393fa | index.js | index.js | const express = require('express');
const bodyParser = require('body-parser');
const cors = require('cors');
const app = express();
app.set('view engine', 'ejs');
app.set('views', './')
app.get('/serve-seed.html', (req, res) => {
res.render('./serve-seed.ejs', {
url: process.env.APIARY_SEED_URL || 'http://loca... | const express = require('express');
const bodyParser = require('body-parser');
const cors = require('cors');
const app = express();
app.set('view engine', 'ejs');
app.set('views', './')
app.use(cors());
app.get('/serve-seed.html', (req, res) => {
res.render('./serve-seed.ejs', {
url: process.env.APIARY_SEED_U... | Enable cors for every route | Enable cors for every route
| JavaScript | mit | apiaryio/apiary-console-seed,apiaryio/console-proxy,apiaryio/apiary-console-seed,apiaryio/console-proxy |
5ecd628fb0f597811a69a7c8e4cdf02f46497f50 | components/Deck/ContentModulesPanel/ContentHistoryPanel/SlideHistoryPanel.js | components/Deck/ContentModulesPanel/ContentHistoryPanel/SlideHistoryPanel.js | import React from 'react';
import {connectToStores} from 'fluxible-addons-react';
import SlideHistoryStore from '../../../../stores/SlideHistoryStore';
import UserProfileStore from '../../../../stores/UserProfileStore';
import PermissionsStore from '../../../../stores/PermissionsStore';
import {Feed} from 'semantic-ui-... | import React from 'react';
import {connectToStores} from 'fluxible-addons-react';
import SlideHistoryStore from '../../../../stores/SlideHistoryStore';
import UserProfileStore from '../../../../stores/UserProfileStore';
import PermissionsStore from '../../../../stores/PermissionsStore';
import {Feed} from 'semantic-ui-... | Add message for empty slide history | Add message for empty slide history
| JavaScript | mpl-2.0 | slidewiki/slidewiki-platform,slidewiki/slidewiki-platform,slidewiki/slidewiki-platform |
3985a313a544580a829e3ae708b13d578510c2cf | index.js | index.js | "use strict";
const express = require('express');
const twilio = require('twilio');
const bodyParser = require('body-parser');
const app = express();
// Run server to listen on port 5000.
const server = app.listen(5000, () => {
console.log('listening on *:5000');
});
const io = require('socket.io')(server);
app.u... | "use strict";
const express = require('express');
const twilio = require('twilio');
const bodyParser = require('body-parser');
const app = express();
// Run server to listen on port 8000.
const server = app.listen(8000, () => {
console.log('listening on *:8000');
});
const io = require('socket.io')(server);
app.u... | Fix error checking for sentiment analysis | Fix error checking for sentiment analysis
| JavaScript | mit | sagnew/SentimentRocket,sagnew/SentimentRocket |
b35bb87151096260f4d33f4df82fe4afcbfbbcf4 | index.js | index.js | 'use strict'
var window = require('global/window')
module.exports = function screenOrientation () {
var screen = window.screen
if (!screen) return null
var orientation = screen.orientation || screen.mozOrientation || screen.msOrientation
var parts = orientation.type.split('-')
return {
direction: parts[... | 'use strict'
var window = require('global/window')
module.exports = function screenOrientation () {
var screen = window.screen
if (!screen) return null
var orientation = screen.orientation || screen.mozOrientation || screen.msOrientation
if (!orientation) return null
var parts = orientation.type.split('-')
... | Return null when orientation isn't supported | Return null when orientation isn't supported
| JavaScript | mit | bendrucker/screen-orientation |
b258bc865de4107053b31825d490cb0923cc8fb4 | index.js | index.js | var loaderUtils = require('loader-utils');
var MessageFormat = require('messageformat');
module.exports = function(content) {
var query = loaderUtils.parseQuery(this.query);
var locale = query.locale || 'en';
var messages = this.exec(content);
var messageFunctions = new MessageFormat(locale).compile(messages).... | var loaderUtils = require('loader-utils');
var MessageFormat = require('messageformat');
module.exports = function(content) {
var query = loaderUtils.parseQuery(this.query);
var locale = query.locale || 'en';
var messages = typeof this.inputValue === 'object' ? this.inputValue : this.exec(content);
var message... | Mark as cacheable and use loader chaining shortcut values | Mark as cacheable and use loader chaining shortcut values
| JavaScript | mit | SlexAxton/messageformat.js,SlexAxton/messageformat.js,cletusw/messageformat-loader,messageformat/messageformat.js,messageformat/messageformat.js |
8a5976339815d802005096f194a5811365e595ce | src/keys-driver.js | src/keys-driver.js | import {Observable} from 'rx';
import keycode from 'keycode';
export function makeKeysDriver () {
return function keysDriver() {
return {
presses (key) {
let keypress$ = Observable.fromEvent(document.body, 'keypress');
if (key) {
const code = keycode(key);
keypress$ = ... | import {Observable} from 'rx';
import keycode from 'keycode';
export function makeKeysDriver () {
return function keysDriver() {
const methods = {};
const events = ['keypress', 'keyup', 'keydown'];
events.forEach(event => {
const methodName = event.replace('key', '');
methods[methodName] = ... | Add new methods to support keyup and keydown events | Add new methods to support keyup and keydown events
| JavaScript | mit | raquelxmoss/cycle-keys,raquelxmoss/cycle-keys |
0ac83f91ddbf2407d1a5ac38c9d0aa2bd52cba32 | src/Label.js | src/Label.js | import React from 'react'
import { Text, View } from 'react-native'
import styled from 'styled-components/native'
import defaultTheme from './theme'
const LabelWrapper = styled.View`
flex:.5;
marginTop: ${props => props.inlineLabel ? 0 : 5};
`
const LabelText = styled.Text`
color: ${props => props.theme.Label.c... | import React from 'react'
import { Text, View } from 'react-native'
import styled from 'styled-components/native'
import defaultTheme from './theme'
const LabelWrapper = styled.View`
flex: ${props => props.inlineLabel ? 0.5 : 1};
flex-direction: ${props => props.inlineLabel ? 'row' : 'column'};
flex-direction: c... | Fix the text alignment for the label | Fix the text alignment for the label
| JavaScript | mit | esbenp/react-native-clean-form,esbenp/react-native-clean-form,esbenp/react-native-clean-form |
a3abc7b61824c08e3274dcdf7912f67749edb4b7 | index.js | index.js | const { getRulesMatcher, getReset, createResetRule } = require("./lib");
function contains(array, item) {
return array.indexOf(item) !== -1;
}
module.exports = (opts = {}) => {
opts.rulesMatcher = opts.rulesMatcher || "bem";
opts.reset = opts.reset || "initial";
const rulesMatcher = getRulesMatcher(opts.rules... | const { getRulesMatcher, getReset, createResetRule } = require("./lib");
function contains(array, item) {
return array.indexOf(item) !== -1;
}
module.exports = (opts = {}) => {
opts.rulesMatcher = opts.rulesMatcher || "bem";
opts.reset = opts.reset || "initial";
const rulesMatcher = getRulesMatcher(opts.rules... | Move the selector matcher to OnceExit | Move the selector matcher to OnceExit
| JavaScript | mit | maximkoretskiy/postcss-autoreset |
3c0d0248ac6f45bcd2ee552f6c34af285003ad64 | index.js | index.js | 'use strict';
var babel = require('babel-core');
exports.name = 'babel';
exports.inputFormats = ['es6', 'babel', 'js'];
exports.outputFormat = 'js';
/**
* Babel's available options.
*/
var availableOptions = Object.keys(babel.options);
exports.render = function(str, options, locals) {
// Remove any invalid opti... | 'use strict';
var babel = require('babel-core');
exports.name = 'babel';
exports.inputFormats = ['es6', 'babel', 'js'];
exports.outputFormat = 'js';
/**
* Babel's available options.
*/
var availableOptions = Object.keys(babel.options);
exports.render = function(str, options, locals) {
// Remove any invalid opti... | Add a workaround for requiring presets and options in the browser | Add a workaround for requiring presets and options in the browser
| JavaScript | mit | jstransformers/jstransformer-babel |
6a4c471f73cf52bc323fe93ad3e4f87d136cccc6 | grid-packages/ag-grid-docs/src/javascript-charts-legend/legend-position/main.js | grid-packages/ag-grid-docs/src/javascript-charts-legend/legend-position/main.js | var options = {
container: document.getElementById('myChart'),
data: [
{ label: 'Android', value: 56.9 },
{ label: 'iOS', value: 22.5 },
{ label: 'BlackBerry', value: 6.8 },
{ label: 'Symbian', value: 8.5 },
{ label: 'Bada', value: 2.6 },
{ label: 'Windows', value... | var options = {
container: document.getElementById('myChart'),
data: [
{ label: 'Android', value: 56.9 },
{ label: 'iOS', value: 22.5 },
{ label: 'BlackBerry', value: 6.8 },
{ label: 'Symbian', value: 8.5 },
{ label: 'Bada', value: 2.6 },
{ label: 'Windows', value... | Fix "Legend Position and Visibility" example. | Fix "Legend Position and Visibility" example.
| JavaScript | mit | ceolter/angular-grid,ceolter/angular-grid,ceolter/ag-grid,ceolter/ag-grid |
efb58791720fd70f578581b4e555c42f0397db04 | copy/opt/local/lib/GNUstep/SOGo/WebServerResources/js/CustomModification.js | copy/opt/local/lib/GNUstep/SOGo/WebServerResources/js/CustomModification.js | // custom mods
document.addEventListener("DOMContentLoaded", function(event) {
// hide email right/sharing menu entries (as they do not work with some imap servers)
var hideElements = [
'body > main > md-sidenav > md-content > section > md-list > md-list-item > div > div.md-secondary-container > button:nth-chi... | // custom mods
document.addEventListener("DOMContentLoaded", function(event) {
// hide email right/sharing menu entries (as they do not work with some imap servers)
var hideElements = [
'body > main > md-sidenav > md-content > section > md-list > md-list-item > div > div.md-secondary-container > button:nth-chi... | Hide search and delegate options | Hide search and delegate options
| JavaScript | mit | skylime/mi-core-sogo,skylime/mi-core-sogo |
36d98c93af18c4524986252fdf035909666ec457 | app/transformers/check-in.js | app/transformers/check-in.js | var Mystique = require('mystique');
var Mystique = require('mystique');
var getIdForModel = function(model, propertyName) {
var prop = model.get(propertyName);
if (typeof prop === 'string') {
return prop;
}
return prop.id;
};
var CheckInTransformer = Mystique.Transformer.extend({
resourceName: 'checkIn... | var Mystique = require('mystique');
var Mongoose = require('mongoose');
var ObjectId = Mongoose.Types.ObjectId;
var getIdForModel = function(model, propertyName) {
var prop = model.get(propertyName);
if (prop instanceof ObjectId) {
return prop;
}
return prop.id;
};
var CheckInTransformer = Mystique.Trans... | Check if ObjectId is type | Check if ObjectId is type
| JavaScript | mit | TIY-LR-FEE-2015-Fall/library-api,TIY-LR-FEE-2015-Fall/library-api,TIY-LR-FEE-2015-Fall/library-api |
97f836a21db729eb5b97f4e8ca9e11e0cdd26495 | living-with-django/models.js | living-with-django/models.js | define(['backbone'], function(B) {
var M = {};
M.Entry = B.Models.extend({});
M.Entries = B.Models.extend({url: 'entries/data.json'});
return M;
});
| define(['backbone'], function(B) {
var M = {};
M.Entry = B.Model.extend({});
M.Entries = B.Collection.extend({
model: M.Entry,
url: 'entries/data.json'
});
return M;
});
| Fix definition of collection and model. | Fix definition of collection and model.
| JavaScript | mit | astex/living-with-django,astex/living-with-django,astex/living-with-django |
89f52683ac13863e6f37055642988897e9868712 | src/index.js | src/index.js | 'use strict';
import backbone from 'backbone';
class Hello extends backbone.View {
render() {
this.$el.html('Hello, world.');
}
}
var myView = new Hello({el: document.getElementById('root')});
myView.render(); | 'use strict';
import backbone from 'backbone';
class Person extends backbone.Model {
getFullName() {
return this.get('firstName') + ' ' + this.get('lastName');
}
}
class Hello extends backbone.View {
initialize() {
this.person = new Person({
firstName: 'George',
las... | Add model class with method. | Add model class with method.
| JavaScript | mit | andrewrota/backbone-with-es6-classes,andrewrota/backbone-with-es6-classes |
c1acfada01fb655a36ed8b8990babd72f4dff302 | app/scripts/stores/GameStore.js | app/scripts/stores/GameStore.js | import Reflux from 'reflux';
import GameActions from '../actions/GameActions';
var GameStore = Reflux.createStore({
init() {
getGameFEN() {
return this.fen;
},
getActivePlayer() {
return this.fen.split(' ')[1] === 'w' ? "White" : "Black";
},
getAllValidMoves() {
return this.valid_moves;
},
... | import Reflux from 'reflux';
import GameActions from '../actions/GameActions';
var GameStore = Reflux.createStore({
init() {
getGameFEN() {
return this.fen;
},
getActivePlayer() {
return this.fen.split(' ')[1] === 'w' ? "White" : "Black";
},
getAllValidMoves() {
return this.valid_moves;
},
... | Correct for capture in getValidMoves from store | Correct for capture in getValidMoves from store
| JavaScript | mit | gnidan/foodtastechess-client,gnidan/foodtastechess-client |
4743ac4791130dac36240d150eb5831b945e0bf2 | ionic.config.js | ionic.config.js | module.exports = {
proxies: null,
paths: {
html : {
src: ['app/**/*.html'],
dest: "www/build"
},
sass: {
src: ['app/theme/app.+(ios|md).scss'],
dest: 'www/build/css',
include: [
'node_modules/ionic-framework',
... | module.exports = {
proxies: null,
paths: {
html : {
src: ['app/**/*.html'],
dest: "www/build"
},
sass: {
src: ['app/theme/app.+(ios|md).scss'],
dest: 'www/build/css',
include: [
'node_modules/ionic-angular',
... | Fix forgotten ionic beta.2 changes | Fix forgotten ionic beta.2 changes
| JavaScript | mit | zarautz/munoa,zarautz/munoa,zarautz/munoa |
d6adea99b450602bc48aaeed2094f347331b1354 | src/result-list.js | src/result-list.js | 'use strict';
var bind = require('lodash.bind');
var ResponseHandler = require('./response-handler');
bind.placeholder = '_';
function ResultList(retriever, options) {
if (!retriever) {
throw new Error('Expected Retriever as an argument');
}
options || (options = {});
this._retriever = retriever;
thi... | 'use strict';
var bind = require('lodash.bind');
var ResponseHandler = require('./response-handler');
function ResultList(retriever, options) {
if (!retriever) {
throw new Error('Expected Retriever as an argument');
}
options || (options = {});
this._retriever = retriever;
this._onFailure = options.on... | Switch argument order to remove placeholders | Switch argument order to remove placeholders
| JavaScript | mit | yola/pixabayjs |
5a4a954662a987058f59dd60a60731152bd47059 | src/c/admin-notification-history.js | src/c/admin-notification-history.js | window.c.AdminNotificationHistory = ((m, h, _, models) => {
return {
controller: (args) => {
const notifications = m.prop([]),
getNotifications = (user) => {
let notification = models.notification;
notification.getPageWithToken(m.postgrest.... | window.c.AdminNotificationHistory = ((m, h, _, models) => {
return {
controller: (args) => {
const notifications = m.prop([]),
getNotifications = (user) => {
let notification = models.notification;
notification.getPageWithToken(m.postgrest.... | Change template and improve query to NotificationHistory | Change template and improve query to NotificationHistory
| JavaScript | mit | sushant12/catarse.js,vicnicius/catarse.js,vicnicius/catarse_admin,catarse/catarse.js,thiagocatarse/catarse.js,mikesmayer/cs2.js,catarse/catarse_admin,adrianob/catarse.js |
05b276b3cde8aa9e9a67c28d4134b38b234f92f9 | src/renderer/components/MapFilter/ReportView/PrintButton.js | src/renderer/components/MapFilter/ReportView/PrintButton.js | // @flow
import React from 'react'
import PrintIcon from '@material-ui/icons/Print'
import { defineMessages, FormattedMessage } from 'react-intl'
import ToolbarButton from '../internal/ToolbarButton'
const messages = defineMessages({
// Button label to print a report
print: 'Print'
})
type Props = {
disabled: ... | // @flow
import React from 'react'
import PrintIcon from '@material-ui/icons/Print'
import { defineMessages, FormattedMessage } from 'react-intl'
import ToolbarButton from '../internal/ToolbarButton'
const messages = defineMessages({
// Button label to print a report
print: 'Print'
})
type Props = {
disabled: ... | Fix print button (still downloads, does not print) | fix: Fix print button (still downloads, does not print)
PrintButton was using `this.url` instead of `this.props.url`.
However also removed some unnecessary code in this component
| JavaScript | mit | digidem/ecuador-map-editor,digidem/ecuador-map-editor |
7655a4481b262f31f8288d533d9746865224fae9 | js/addresses.js | js/addresses.js | /*global angular */
(function() {
'use strict';
var QUERY_URL = "https://address.digitalservices.surreyi.gov.uk/addresses?postcode=";
var AUTH_TOKEN = "vJiSsulQe-zOobDsAWoUxr9cYfw";
var addressesApp;
addressesApp = angular.module('addressesApp', []);
addressesApp.config(function($httpProvider) {
//En... | /*global angular */
(function() {
'use strict';
var QUERY_URL = "https://address.digitalservices.surreyi.gov.uk/addresses?postcode=";
var AUTH_TOKEN = "vJiSsulQe-zOobDsAWoUxr9cYfw";
var addressesApp;
addressesApp = angular.module('addressesApp', []);
addressesApp.config(function($httpProvider) {
//En... | Add error message when token usage exceeded | Add error message when token usage exceeded | JavaScript | mit | surreydigitalservices/sds-addresses,folklabs/sds-addresses,surreydigitalservices/sds-addresses,surreydigitalservices/sds-addresses,folklabs/sds-addresses,folklabs/sds-addresses |
585d4c685596764e9f25a5dc988453f8d5197aaf | js/heartbeat.js | js/heartbeat.js | (function($, document, window) {
"use strict"
window.animationHeartBeat = function (steps)
{
var max = steps;
var delay = 70;
var current = 0;
var interval;
var beat;
$(document).bind('animation.stop', function()
{
console.log('animation.... | (function($, document, window) {
"use strict"
window.animationHeartBeat = function (steps)
{
var max = steps;
var delay = 70;
var current = 0;
var interval;
var beat;
$(document).bind('animation.stop', function()
{
console.log('animation.... | Allow current frame modifictation by event | [HeartBeat] Allow current frame modifictation by event
| JavaScript | mit | marekkalnik/jquery-mdm-animatics |
21d6320759b1a78049f52c7052ac36f17a6ee1cc | src/utils/index.js | src/utils/index.js | import * as columnUtils from './columnUtils';
import * as compositionUtils from './compositionUtils';
import * as dataUtils from './dataUtils';
import * as rowUtils from './rowUtils';
import * as sortUtils from './sortUtils';
export default {
columnUtils,
compositionUtils,
dataUtils,
rowUtils,
sortUtils,
};
| import * as columnUtils from './columnUtils';
import * as compositionUtils from './compositionUtils';
import * as dataUtils from './dataUtils';
import * as rowUtils from './rowUtils';
import * as sortUtils from './sortUtils';
import { connect } from './griddleConnect';
export default {
columnUtils,
compositionUtil... | Add connect to utils out | Add connect to utils out
| JavaScript | mit | ttrentham/Griddle,GriddleGriddle/Griddle,GriddleGriddle/Griddle,joellanciaux/Griddle,joellanciaux/Griddle |
f12cd07dabf68b29e6ad05e3609b5f4e2920213a | src/meta/intro.js | src/meta/intro.js | (function(mod) {
// CommonJS, Node.js, browserify.
if (typeof exports === "object" && typeof module === "object") {
module.exports = mod(require('d3'),
require('d3.chart'),
require('d3.chart.base'),
requure('lodash'))... | // We should use `grunt-umd` instead of this explicit intro, but the tool does
// not camelize lib names containing '.' or '-', making the generated JS
// invalid; needs a pull request.
(function(mod) {
// CommonJS, Node.js, browserify.
if (typeof exports === "object" && typeof module === "object") {
mo... | Add comment about explicit UMD | Add comment about explicit UMD
| JavaScript | mit | benbria/d3.chart.bubble-matrix,leebecker-hapara/d3.chart.heatmap-matrix,benbria/d3.chart.bubble-matrix,leebecker-hapara/d3.chart.heatmap-matrix,leebecker-hapara/d3.chart.heatmap-matrix |
532c17d07761f89158b4be8ea4e3b9c29ff35941 | findminmax/src/findminmax.js | findminmax/src/findminmax.js | 'use strict'
module.exports = {
// This function finds the minimum and maximum values in an array of numbers.
findMinMax: function(numlist) {
numlist.sort( function (a,b) {return a - b} );
return [ numlist[0], numlist[numlist.length - 1] ];
}
} | 'use strict'
module.exports = {
// This function finds the minimum and maximum values in an array of numbers.
findMinMax: function(numlist) {
numlist.sort( function (a,b) {return a - b} );
if (numlist[0] == numlist[numlist.length - 1]) {
return [numlist[0]];
}
else return [ numlist[0], numlist[numlist.le... | Implement functionality for equal min and max values. | Implement functionality for equal min and max values.
| JavaScript | mit | princess-essien/andela-bootcamp-slc |
90518f85616a9ae5c67e3e6fc71a9406c3787724 | src/js/views/pro/PlayHistoryView.js | src/js/views/pro/PlayHistoryView.js | /**
* View for the room users list
* @module views/pro/PlayHistoryView
*/
var panes = require('./panes');
var PlayHistoryView = Backbone.View.extend({
id: "plugpro-play-history",
className: "media-list history",
initialize: function(){
var JST = window.plugPro.JST;
this.historyHTML = JST['play_history.html... | /**
* View for the room users list
* @module views/pro/PlayHistoryView
*/
var panes = require('./panes');
var PlayHistoryView = Backbone.View.extend({
id: "plugpro-play-history",
className: "media-list history",
initialize: function(){
var JST = window.plugPro.JST;
this.historyHTML = JST['play_history.html... | Make play history stay up to date | Make play history stay up to date
| JavaScript | mit | traviswimer/PlugPro,traviswimer/PlugPro,SkyGameRus/PlugPro,SkyGameRus/PlugPro |
1507d27109ad65abcb115a498ae8bc4b9701286b | src/core/middleware/005-favicon/index.js | src/core/middleware/005-favicon/index.js | import {join} from "path"
import favicon from "koa-favicon"
// TODO: Rewrite this middleware from scratch because of synchronous favicon
// reading.
const FAVICON_PATH = join(
process.cwd(), "static/assets/img/icns/favicon/twi.ico"
)
const configureFavicon = () => favicon(FAVICON_PATH)
export default configureF... | // Based on koajs/favicon
import {resolve, join, isAbsolute} from "path"
import {readFile} from "promise-fs"
import invariant from "@octetstream/invariant"
import isPlainObject from "lodash/isPlainObject"
import isString from "lodash/isString"
import ms from "ms"
import getType from "core/helper/util/getType"
const... | Rewrite favicon middleware from scratch. | Rewrite favicon middleware from scratch.
| JavaScript | mit | twi-project/twi-server,octet-stream/ponyfiction-js,octet-stream/ponyfiction-js,octet-stream/twi |
0193fceb10b4d266945e00967726ab5549cd77a0 | src/Marker.js | src/Marker.js | import Leaflet from "leaflet";
import latlngType from "./types/latlng";
import PopupContainer from "./PopupContainer";
export default class Marker extends PopupContainer {
componentWillMount() {
super.componentWillMount();
const {map, position, ...props} = this.props;
this.leafletElement = Leaflet.marke... | import Leaflet from "leaflet";
import latlngType from "./types/latlng";
import PopupContainer from "./PopupContainer";
export default class Marker extends PopupContainer {
componentWillMount() {
super.componentWillMount();
const {map, position, ...props} = this.props;
this.leafletElement = Leaflet.marke... | Implement dynamic changing of marker icon | Implement dynamic changing of marker icon
| JavaScript | mit | dantman/react-leaflet,TerranetMD/react-leaflet,marcello3d/react-leaflet,ericsoco/react-leaflet,snario/react-mapbox-gl,yavuzmester/react-leaflet,uniphil/react-leaflet,itoldya/react-leaflet,marcello3d/react-leaflet,snario/react-mapbox-gl,KABA-CCEAC/react-leaflet,yavuzmester/react-leaflet,yavuzmester/react-leaflet,itoldya... |
e86977f2bed532a344b2df4c09ed84a9b04fee17 | probes/cpu.js | probes/cpu.js | /*
* CPU statistics
*/
var exec = require('child_process').exec;
/*
* Unfortunately the majority of systems are en_US based, so we go with
* the wrong spelling of 'utilisation' for the least hassle ;)
*/
function get_cpu_utilization(callback)
{
switch (process.platform) {
case 'linux':
exec('mpstat -u -P... | /*
* CPU statistics
*/
var exec = require('child_process').exec;
/*
* Unfortunately the majority of systems are en_US based, so we go with
* the wrong spelling of 'utilisation' for the least hassle ;)
*/
function get_cpu_utilization(callback)
{
switch (process.platform) {
case 'linux':
exec('mpstat -u -P... | Simplify things with better use of split(). | Simplify things with better use of split().
| JavaScript | isc | jperkin/node-statusmon |
7b44cd38ea5741ebaba29da17aa091c7c8dddf6a | array/#/flatten.js | array/#/flatten.js | // Stack grow safe implementation
'use strict';
var ensureValue = require('../../object/valid-value')
, isArray = Array.isArray;
module.exports = function () {
var input = ensureValue(this), remaining, l, i, result = [];
main: //jslint: ignore
while (input) {
l = input.length;
for (i = 0; i < l; ++i) {
... | // Stack grow safe implementation
'use strict';
var ensureValue = require('../../object/valid-value')
, isArray = Array.isArray;
module.exports = function () {
var input = ensureValue(this), index = 0, remaining, remainingIndexes, l, i, result = [];
main: //jslint: ignore
while (input) {
l = input.length;... | Optimize to not use slice | Optimize to not use slice
| JavaScript | isc | medikoo/es5-ext |
b119297ac01748e7b91a7e6d8cf3f5ea193e29f6 | src/config.js | src/config.js | import fs from 'fs'
import rc from 'rc'
import ini from 'ini'
import path from 'path'
import mkdirp from 'mkdirp'
import untildify from 'untildify'
const conf = rc('tickbin', {
api: 'https://api.tickbin.com/',
local: '~/.tickbin'
})
conf.local = untildify(conf.local)
conf.db = path.join(conf.local, 'data')
if (!... | import fs from 'fs'
import rc from 'rc'
import ini from 'ini'
import path from 'path'
import mkdirp from 'mkdirp'
import untildify from 'untildify'
const conf = rc('tickbin', {
api: 'https://api.tickbin.com/',
local: '~/.tickbin'
})
conf.local = untildify(conf.local)
conf.db = path.join(conf.local, 'data')
if (!... | Add a setUser function and change setConfig to setKey | Add a setUser function and change setConfig to setKey
| JavaScript | agpl-3.0 | jonotron/tickbin,tickbin/tickbin,chadfawcett/tickbin |
93b9428ad5232974ad73e02941f7b647f2a4a804 | content/photography/index.11ty.js | content/photography/index.11ty.js | const { downloadGalleryPhoto } = require("../../gallery-helpers");
const html = require("../../render-string");
const quality = 40;
const size = 300;
module.exports = class Gallery {
data() {
return {
layout: "photography"
};
}
async render({ collections }) {
return html`
<div class="gri... | const { downloadGalleryPhoto } = require("../../gallery-helpers");
const html = require("../../render-string");
const quality = 40;
const size = 300;
module.exports = class Gallery {
data() {
return {
layout: "photography"
};
}
async render({ collections }) {
return html`
<div class="gri... | Use lazy loading attribute on gallery | Use lazy loading attribute on gallery
| JavaScript | mit | surma/surma.github.io,surma/surma.github.io |
3d4d507c75826fd957939fc7c999fd3460aa8cd2 | src/asset-picker/AssetPickerFilter.js | src/asset-picker/AssetPickerFilter.js | import React, { PropTypes, PureComponent } from 'react';
import { findDOMNode } from 'react-dom';
import { InputGroup } from 'binary-components';
import { isMobile } from 'binary-utils';
import { actions } from '../_store';
import MarketSubmarketPickerContainer from './MarketSubmarketPickerContainer';
export default c... | import React, { PropTypes, PureComponent } from 'react';
import { findDOMNode } from 'react-dom';
import { InputGroup } from 'binary-components';
import { isMobile } from 'binary-utils';
import { actions } from '../_store';
import MarketSubmarketPickerContainer from './MarketSubmarketPickerContainer';
export default c... | Fix asset picker input focus | Fix asset picker input focus
| JavaScript | mit | nazaninreihani/binary-next-gen,nazaninreihani/binary-next-gen,binary-com/binary-next-gen,nuruddeensalihu/binary-next-gen,nazaninreihani/binary-next-gen,binary-com/binary-next-gen,nuruddeensalihu/binary-next-gen,nuruddeensalihu/binary-next-gen,binary-com/binary-next-gen |
d55d600d9e3b8fadeabe51445ebac4c04860f808 | src/AppBundle/Resources/public/scripts/menu.js | src/AppBundle/Resources/public/scripts/menu.js | $('.nav a').on('click', function(){
$(".navbar-toggle").click();
}); | $('.nav a').on('click', function(){
if ($(window).width() <= 767) {
$(".navbar-toggle").click();
}
}); | Hide close animation for non mobile. | Hide close animation for non mobile.
| JavaScript | mit | Clastic/clastic-marketing,Clastic/clastic-marketing,Clastic/clastic-marketing,Clastic/clastic-marketing |
0ea7667da177e969fe9dc0e04db977db50c9d4fa | src/tap/schema.js | src/tap/schema.js | /**
* [schema defines validation schemas for Mongo documents being inserted into db:ibu collection:ibuerrors]
*
*
*/
var ibuErrorSchema = new Schema({
filename: {
type: String,
validate: {
validator: function(v){
return /^[^.]+$/.test(v);
},
message: 'Filename is not valid!'
... | 'use strict';
/**
* [schema defines validation schemas for Mongo documents being inserted into db:ibu collection:ibuerrors]
*
*
*/
// Mongoose connection to MongoDB
const mongoose = require('mongoose');
var Schema = mongoose.Schema;
var ibuErrorSchema = new Schema({
filename: {
type: String,
trim: true
... | Add Fields & removed Validate | Add Fields & removed Validate
Remove validate until Schema is working on all code.
Renamed "collection", conflict with core naming in Mongoose
| JavaScript | mit | utkdigitalinitiatives/ibu,utkdigitalinitiatives/ibu |
844806fb7bbad77a5b507e0e26519575bbf3124e | js/services/Storage.js | js/services/Storage.js | define(['app'], function (app) {
"use strict";
return app.service('storageService', ['$window', function (win) {
this.available = 'localStorage' in win;
this.get = function (key) {
return win.localStorage.getItem(key);
};
this.set = function (key, value) {
return win.local... | define(['app', 'angular'], function (app, angular) {
"use strict";
return app.service('storageService', ['$window', function (win) {
this.available = 'localStorage' in win;
this.get = function (key) {
return win.localStorage.getItem(key);
};
this.set = function (key, value) {
... | Use angular's JSON lib, since it strips off $hashKey that angular adds to scope objects | Use angular's JSON lib, since it strips off $hashKey that angular adds to scope objects
| JavaScript | mit | BrettBukowski/tomatar |
17c826741636990088061d32d2e1ed76beeb3d59 | lib/helpers.js | lib/helpers.js | 'use babel'
import {getPath} from 'consistent-path'
export {tempFile} from 'atom-linter'
const assign = Object.assign || function(target, source) {
for (const key in source) {
target[key] = source[key]
}
return target
}
export function getEnv() {
const env = assign({}, process.env)
env.PATH =... | 'use babel'
import getEnvironment from 'consistent-env'
export {tempFile} from 'atom-linter'
const assign = Object.assign || function(target, source) {
for (const key in source) {
target[key] = source[key]
}
return target
}
export function getEnv() {
return getEnvironment()
}
| Use consistent-env instead of consistent-path | :new: Use consistent-env instead of consistent-path
| JavaScript | mit | steelbrain/autocomplete-swift |
91beb6edb16bfe61a85c407caaa8bbf56881f366 | src/events/console/request_message.js | src/events/console/request_message.js | 'use strict';
const { protocolHandlers } = require('../../protocols');
const { rpcHandlers } = require('../../rpc');
// Build message of events of type `request` as:
// STATUS [ERROR] - PROTOCOL METHOD RPC /PATH COMMAND...
const getRequestMessage = function ({
protocol,
rpc,
method,
path,
error = 'SUCCESS'... | 'use strict';
const { protocolHandlers } = require('../../protocols');
const { rpcHandlers } = require('../../rpc');
// Build message of events of type `request` as:
// STATUS [ERROR] - PROTOCOL METHOD RPC /PATH COMMAND...
const getRequestMessage = function ({
protocol,
rpc,
method,
path,
error = 'SUCCESS'... | Fix summary not showing up in console logs | Fix summary not showing up in console logs
| JavaScript | apache-2.0 | autoserver-org/autoserver,autoserver-org/autoserver |
8bc9e027d6ed0a94ee995893d2cc8dd955550c33 | tesla.js | tesla.js | var fs = require('fs');
function getInitialCharge() {
var initialCharge = 100,
body = fs.readFileSync('tesla.out').toString().split('\n');
for (var i = body.length - 1; i >= 0; i--) { // Pick out valid part of file.
if (body[i].indexOf('battery_level:') != -1) { // Pick out the last object.
initia... | var fs = require('fs');
function getInitialCharge() {
var initialCharge = 100,
body = fs.readFileSync('tesla.out').toString().split('\n');
for (var i = body.length - 1; i >= 0; i--) { // Pick out valid part of file.
if (body[i].indexOf('battery_level:') != -1) { // Pick out the last object.
initia... | Check if called from command line. | Check if called from command line.
| JavaScript | mit | PrajitR/ChargePlan |
4a0fa2527ad0a5765a8f846f7723158037e0520a | test/errors.js | test/errors.js | import test from 'ava';
import Canvas from 'canvas';
import mergeImages from '../';
import fixtures from './fixtures';
test('mergeImages rejects Promise if image load errors', async t => {
t.plan(1);
t.throws(mergeImages([1], { Canvas }));
});
| import test from 'ava';
import Canvas from 'canvas';
import mergeImages from '../';
import fixtures from './fixtures';
test('mergeImages rejects Promise if node-canvas instance isn\'t passed in', async t => {
t.plan(1);
t.throws(mergeImages([]));
});
test('mergeImages rejects Promise if image load errors', async t ... | Test mergeImages rejects Promise if node-canvas instance isn\'t passed in | Test mergeImages rejects Promise if node-canvas instance isn\'t passed in
| JavaScript | mit | lukechilds/merge-images |
cfdc5729e8b71c88baad96d1b06cafe643600636 | test/issues.js | test/issues.js | 'use strict';
/*global describe */
describe('Issues.', function () {
require('./issues/issue-8.js');
require('./issues/issue-17.js');
require('./issues/issue-19.js');
require('./issues/issue-26.js');
require('./issues/issue-33.js');
require('./issues/issue-46.js');
require('./issues/issue-54.js');
req... | 'use strict';
/*global describe */
var path = require('path');
var fs = require('fs');
describe('Issues.', function () {
var issues = path.resolve(__dirname, 'issues');
fs.readdirSync(issues).forEach(function (file) {
if ('.js' === path.extname(file)) {
require(path.resolve(issues, file));
}
... | Automate loading of issue test units. | Automate loading of issue test units.
| JavaScript | mit | crissdev/js-yaml,minj/js-yaml,doowb/js-yaml,djchie/js-yaml,joshball/js-yaml,cesarmarinhorj/js-yaml,nodeca/js-yaml,joshball/js-yaml,vogelsgesang/js-yaml,pombredanne/js-yaml,rjmunro/js-yaml,rjmunro/js-yaml,SmartBear/js-yaml,jonnor/js-yaml,SmartBear/js-yaml,bjlxj2008/js-yaml,denji/js-yaml,denji/js-yaml,isaacs/js-yaml,cris... |
048eb86cd16a0bcff04bf4fe9129131c367ce95e | test/runner.js | test/runner.js | var cp = require('child_process');
var walk = require('walk');
var walker = walk.walk(__dirname + '/spec', {followLinks: false});
walker.on('file', function(root, stat, next) {
var filepath = root + '/' + stat.name;
cp.fork('node_modules/mocha/bin/_mocha', [filepath]);
next();
});
| var cp = require('child_process');
var join = require('path').join;
var walk = require('walk');
var mochaBin = join(__dirname, '..', 'node_modules', '.bin', 'mocha');
var walker = walk.walk(__dirname + '/spec', {followLinks: false});
walker.on('file', function(root, stat, next) {
var filepath = root + '/' + stat.nam... | Replace child_process.fork with child_process.spawn to correctly handle child's output. | Replace child_process.fork with child_process.spawn to correctly handle child's output.
| JavaScript | mit | vogdb/pulsar-rest-api,cargomedia/pulsar-rest-api,cargomedia/pulsar-rest-api,njam/pulsar-rest-api,njam/pulsar-rest-api,cargomedia/pulsar-rest-api,vogdb/pulsar-rest-api,cargomedia/pulsar-rest-api,vogdb/pulsar-rest-api,njam/pulsar-rest-api,njam/pulsar-rest-api |
7ae46169e9383f9bc71bf1715b19441df8e5be30 | lib/download-station.js | lib/download-station.js | module.exports = function(syno) {
return {
};
};
| 'use strict';
var util = require('util');
function info() {
/*jshint validthis:true */
var
userParams =
typeof arguments[0] === 'object' ? arguments[0] :
{},
callback =
typeof arguments[1] === 'function' ? arguments[1] :
typeof arguments[0] === 'function' ? arguments[0] :
nul... | Add Synology.downloadStation.info, Synology.downloadStation.getConfig and Synology.downloadStation.setConfig | Add Synology.downloadStation.info, Synology.downloadStation.getConfig and Synology.downloadStation.setConfig
| JavaScript | mit | yannickcr/node-synology |
aa6565b0e3c788e3edd278058092b4ae80063685 | lib/dujs/scopefinder.js | lib/dujs/scopefinder.js | /*
* Find scopes from AST
* @lastmodifiedBy ChengFuLin(chengfulin0806@gmail.com)
* @lastmodifiedDate 2015-07-27
*/
var walkes = require('walkes');
/**
* ScopeFinder
* @constructor
*/
function ScopeFinder() {
}
/**
* Find function scopes of AST parsed from source
* @param {Object} ast JS parse... | /*
* Find scopes from AST
* @lastmodifiedBy ChengFuLin(chengfulin0806@gmail.com)
* @lastmodifiedDate 2015-07-27
*/
var walkes = require('walkes');
/**
* ScopeFinder
* @constructor
*/
function ScopeFinder() {
}
/**
* Find function scopes of AST parsed from source
* @param {Object} ast JS parsed AST
* @return... | Modify default line separator from CRLF to LF | Modify default line separator from CRLF to LF
| JavaScript | mit | chengfulin/dujs,chengfulin/dujs |
68740b554194b5318eaedc507a285d66ccf1ecd3 | test/index.js | test/index.js | global.XMLHttpRequest = require('xhr2');
global.dataLayer = [];
var test = require('blue-tape');
var GeordiClient = require('../index');
test('Instantiate a client with default settings', function(t) {
var geordi = new GeordiClient();
t.equal(geordi.env, 'staging');
t.equal(geordi.projectToken, 'unspecified');
... | global.XMLHttpRequest = require('xhr2');
global.dataLayer = [];
var test = require('blue-tape');
var GeordiClient = require('../index');
test('Instantiate a client with default settings', function(t) {
var geordi = new GeordiClient();
t.equal(geordi.env, 'staging');
t.equal(geordi.projectToken, 'unspecified');
... | Test that server config hasn't broken | Test that server config hasn't broken
| JavaScript | apache-2.0 | zooniverse/geordi-client |
d08660202911ad0739d90de24c16614a510df4c0 | lib/SymbolShim.js | lib/SymbolShim.js | var objectTypes = {
"boolean": false,
"function": true,
"object": true,
"number": false,
"string": false,
"undefined": false
};
/*eslint-disable */
var _root = (objectTypes[typeof self] && self) || (objectTypes[typeof window] && window);
var freeGlobal = objectTypes[typeof global] && global;
i... | var objectTypes = {
"boolean": false,
"function": true,
"object": true,
"number": false,
"string": false,
"undefined": false
};
/*eslint-disable */
var _root = (objectTypes[typeof self] && self) || (objectTypes[typeof window] && window);
var freeGlobal = objectTypes[typeof global] && global;
i... | Fix transpilation error to support React Native | Fix transpilation error to support React Native
Recent versions of Babel will throw a TransformError in certain
runtimes if any property on `Symbol` is assigned a value.
This fixes the issue, which is the last remaining issue for
React Native support.
| JavaScript | apache-2.0 | Netflix/falcor,sdesai/falcor,Netflix/falcor,sdesai/falcor |
97b03822bb8d700a326417decfb5744a71998d9c | tests/index.js | tests/index.js | var should = require('should'),
stylus = require('stylus'),
fs = require('fs');
var stylusMatchTest = function() {
var files = fs.readdirSync(__dirname + '/fixtures/stylus/styl/');
files.forEach(function(file) {
var fileName = file.replace(/.{5}$/, '');
describe(fileName + ' method', function() {... | var stylus = require('stylus'),
fs = require('fs'),
should = require('should');
function compare(name, done) {
var str = fs.readFileSync(__dirname + '/fixtures/stylus/styl/' + name + '.styl', { encoding: 'utf8' });
stylus(str)
.import('stylus/jeet')
.render(function(err, result) {
fs.r... | Make testing function more solid | Make testing function more solid | JavaScript | mit | lucasoneves/jeet,jakecleary/jeet,durvalrafael/jeet,ccurtin/jeet,nagyistoce/jeet,pramodrhegde/jeet,mojotech/jeet,rafaelstz/jeet,mojotech/jeet,greyhwndz/jeet,macressler/jeet,travisc5/jeet |
78a92e702daedff605c76be0eeebaeb10241fcd1 | lib/less/less-error.js | lib/less/less-error.js |
module.exports = LessError;
function LessError(parser, e, env) {
var input = parser.getInput(e, env),
loc = parser.getLocation(e.index, input),
line = loc.line,
col = loc.column,
callLine = e.call && parser.getLocation(e.call, input).line,
lines = input.split('\n');
th... |
var LessError = module.exports = function LessError(parser, e, env) {
var input = parser.getInput(e, env),
loc = parser.getLocation(e.index, input),
line = loc.line,
col = loc.column,
callLine = e.call && parser.getLocation(e.call, input).line,
lines = input.split('\n');
... | Fix LessError being used before being defined | Fix LessError being used before being defined
| JavaScript | apache-2.0 | bhavyaNaveen/project1,evocateur/less.js,jjj117/less.js,paladox/less.js,Nastarani1368/less.js,waiter/less.js,yuhualingfeng/less.js,SkReD/less.js,SomMeri/less-rhino.js,yuhualingfeng/less.js,mcanthony/less.js,christer155/less.js,royriojas/less.js,cgvarela/less.js,royriojas/less.js,idreamingreen/less.js,ridixcr/less.js,dec... |
6aa9a30b0238a58980897ee83972514400ea2a5c | lib/handlebars.js | lib/handlebars.js | var Handlebars = require("handlebars/base");
module.exports = Handlebars;
require("handlebars/utils");
require("handlebars/ast");
require("handlebars/printer");
require("handlebars/visitor");
require("handlebars/compiler");
// BEGIN(BROWSER)
// END(BROWSER)
| var Handlebars = require("handlebars/base");
module.exports = Handlebars;
require("handlebars/utils");
require("handlebars/ast");
require("handlebars/printer");
require("handlebars/visitor");
require("handlebars/compiler/compiler");
require("handlebars/vm");
// BEGIN(BROWSER)
// END(BROWSER)
| Update node loader for compiler/vm split | Update node loader for compiler/vm split | JavaScript | mit | xiaobai93yue/handlebars.js,shakyShane/hb-fork,xiaobai93yue/handlebars.js,gautamkrishnar/handlebars.js,shakyShane/hb-fork,denniskuczynski/handlebars.js,cgvarela/handlebars.js,code0100fun/handlebars.js,mosoft521/handlebars.js,samokspv/handlebars.js,liudianpeng/handlebars.js,mubassirhayat/handlebars.js,halhenke/handlebars... |
1ef81c6657121d4aeabfbf6b27b9df63b739e6db | src/App.js | src/App.js | import React, { Component } from 'react';
import "./css/App.css";
import logo from "../public/logo.svg";
import Markdown from "./Markdown";
import TocHeader from "./TocHeader";
class App extends Component {
render() {
return (
<div>
<div className="header">
<... | import React, { Component } from 'react';
import "./css/App.css";
import logo from "../public/logo.svg";
import Markdown from "./Markdown";
import TocHeader from "./TocHeader";
class App extends Component {
render() {
return (
<div>
<div className="header">
<... | Move ToS to the bottom | Move ToS to the bottom
| JavaScript | mit | FredBoat/docs.fredboat.com,FredBoat/fredboat.com,FredBoat/docs.fredboat.com,FredBoat/fredboat.com |
e1d9d0e9f784df298df41967cfba947fa65c2698 | commands/access/remove.js | commands/access/remove.js | 'use strict';
var Heroku = require('heroku-client');
var co = require('co');
var heroku;
module.exports = {
topic: 'access',
needsAuth: true,
needsApp: true,
command: 'remove',
description: 'Remove users from your app',
help: 'heroku access:remove user@email.com --app APP',
args: [{name: '... | 'use strict';
var Heroku = require('heroku-client');
var co = require('co');
var heroku;
module.exports = {
topic: 'access',
needsAuth: true,
needsApp: true,
command: 'remove',
description: 'Remove users from your app',
help: 'heroku access:remove user@email.com --app APP',
args: [{name: '... | Remove is not ready yet | Remove is not ready yet | JavaScript | isc | heroku/heroku-access,heroku/heroku-orgs |
8ca011e17298196dba123b83b02a72e010020291 | app/documents/services/SearchService.js | app/documents/services/SearchService.js | module.exports = function($http, $state, $location, $q, DocumentApiService,
DocumentRouteService, DocumentService, GlobalService, UserService, MathJaxService) {
console.log('SEARCH SERVICE')
var deferred = $q.defer();
var apiServer = GlobalService.apiServer()
t... | module.exports = function($http, $state, $location, $q, DocumentApiService,
DocumentRouteService, DocumentService, GlobalService, UserService, MathJaxService) {
console.log('SEARCH SERVICE')
var deferred = $q.defer();
var apiServer = GlobalService.apiServer()
t... | Handle case of undefined document list as result of search | Handle case of undefined document list as result of search
| JavaScript | mit | jxxcarlson/ns_angular,jxxcarlson/ns_angular |
8ffc8c6ca7b831278db6e0891409c58ea1fd3daa | app/instance-initializers/ember-a11y.js | app/instance-initializers/ember-a11y.js | // This initializer exists only to make sure that the following
// imports happen before the app boots.
import { registerKeywords } from 'ember-a11y/ember-internals';
registerKeywords();
import Ember from 'ember';
export function initialize(application) {
let startRouting = application.startRouting;
application.s... | // This initializer exists only to make sure that the following
// imports happen before the app boots.
import Ember from 'ember';
import { registerKeywords } from 'ember-a11y/ember-internals';
registerKeywords();
let handlerInfos;
Ember.Router.reopen({
didTransition(handlerInfos) {
this._super(...arguments);
... | Stop monkeypatching all the things. Monkeypatch the right things. | Stop monkeypatching all the things. Monkeypatch the right things.
| JavaScript | mit | ember-a11y/ember-a11y,nathanhammond/ember-a11y,ember-a11y/ember-a11y,nathanhammond/ember-a11y |
3158eb1bbd06d8a7fb8bc9c60e9fed423f3971a4 | src/DrawingManager.js | src/DrawingManager.js | var p;
var drawings = [];
var DrawingManager = function (p5Sketch) {
p = p5Sketch;
};
DrawingManager.prototype.add = function (drawing) {
console.log('Added ' + drawing);
drawings.unshift(drawing);
}
DrawingManager.prototype.drawAll = function () {
for (var i = drawings.length - 1; i >= 0; i--) {
drawing... | var p;
var drawings = [];
var lowerLayer = [];
var DrawingManager = function (p5Sketch) {
p = p5Sketch;
};
DrawingManager.prototype.add = function (drawing) {
if (drawing.pulse.layer) {
lowerLayer.unshift(drawing);
} else {
console.log('Added ' + drawing);
drawings.unshift(drawing);
}
}
DrawingMa... | Add a lower layer to the drawing manager | Add a lower layer to the drawing manager
| JavaScript | mit | Dermah/pulsar,Dermah/pulsar |
6a0aaf2fa2bd52aa77b01a463edf7c8347ae61a9 | msisdn-gateway/utils.js | msisdn-gateway/utils.js | /* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
/**
* Returns a random integer between min and max
*/
function getRandomInt(min, max) {
return ... | /* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
var crypto = require("crypto");
/**
* Build a digits code
*/
function digitsCode(size) {
var n... | Refactor digitCode to use /dev/urandom instead of Math.random. r=Tarek | Refactor digitCode to use /dev/urandom instead of Math.random.
r=Tarek
| JavaScript | mpl-2.0 | mozilla-services/msisdn-gateway,mozilla-services/msisdn-gateway,mozilla-services/msisdn-gateway |
1ab4424effd5f5ca1362e042d26d06911993511f | packages/landing-scripts/scripts/init.js | packages/landing-scripts/scripts/init.js | const fs = require('fs-extra');
const path = require('path');
const chalk = require('chalk');
function copyTemplate(appDir, templatePath) {
fs.copySync(templatePath, appDir);
fs.moveSync(
path.join(appDir, 'gitignore'),
path.join(appDir, '.gitignore'),
);
}
function addPackageScripts(appDir) {
const s... | const fs = require('fs-extra');
const path = require('path');
const chalk = require('chalk');
function copyTemplate(appDir, templatePath) {
fs.copySync(templatePath, appDir);
fs.removeSync('.gitignore');
fs.moveSync(
path.join(appDir, 'gitignore'),
path.join(appDir, '.gitignore'),
);
}
function addPac... | Remove .gitignore on bootstrap the project | Remove .gitignore on bootstrap the project
| JavaScript | mit | kevindantas/create-landing-page,kevindantas/create-landing-page,kevindantas/create-landing-page |
d4c964e13fa20ff609d3b9c0b7d16d5d884cd8cc | database/recall.js | database/recall.js | 'use strict';
module.exports = function (mongoose) {
var recallSchema = mongoose.Schema({
Year: Number,
Make: String,
Model: String,
Manufacturer: String,
Component: String,
Summary: String,
Consequence: String,
Remedy: String,
Notes: String,
NHTSACampaignNumber: String,
R... | 'use strict';
module.exports = function (mongoose) {
var recallSchema = mongoose.Schema({
Year: { type: Number, index: true },
Make: { type: String, index: true },
Model: { type: String, index: true },
Manufacturer: String,
Component: String,
Summary: String,
Consequence: String,
Reme... | Add indexes to Recall schema | Add indexes to Recall schema
* Sorting the data and attempting to access tail results would result in
a buffer overrun error. Indexes were missing from the schema and have
now been added.
| JavaScript | mit | justinsa/maine-coone,justinsa/maine-coone |
8ab0eab5c760dc26536e561e7f589709ef2160d1 | library/CM/FormField/Text.js | library/CM/FormField/Text.js | /**
* @class CM_FormField_Text
* @extends CM_FormField_Abstract
*/
var CM_FormField_Text = CM_FormField_Abstract.extend({
_class: 'CM_FormField_Text',
/** @type Boolean */
_skipTriggerChange: false,
events: {
'blur input, textarea': function() {
this.trigger('blur');
},
'focus input, text... | /**
* @class CM_FormField_Text
* @extends CM_FormField_Abstract
*/
var CM_FormField_Text = CM_FormField_Abstract.extend({
_class: 'CM_FormField_Text',
/** @type Boolean */
_skipTriggerChange: false,
events: {
'blur input, textarea': function() {
this.trigger('blur');
},
'focus input, text... | Introduce triggerChange, use it on input/textarea change | Introduce triggerChange, use it on input/textarea change
| JavaScript | mit | njam/CM,fauvel/CM,zazabe/cm,fvovan/CM,tomaszdurka/CM,fauvel/CM,cargomedia/CM,vogdb/cm,tomaszdurka/CM,tomaszdurka/CM,vogdb/cm,mariansollmann/CM,cargomedia/CM,alexispeter/CM,alexispeter/CM,tomaszdurka/CM,mariansollmann/CM,vogdb/cm,cargomedia/CM,vogdb/cm,fauvel/CM,njam/CM,cargomedia/CM,alexispeter/CM,mariansollmann/CM,tom... |
7fb65123e15dbbcfd236d6a5bc4a5b51da19bb29 | functions/chatwork/src/index.js | functions/chatwork/src/index.js | import template from './builder.js';
import kms from './kms.js';
import cw from './post.js';
import auth from './auth.js';
exports.handler = (event, context, callback) => {
console.log('Received event:', JSON.stringify(event, null, 2));
// Encrypted Chatwork token
const encCwtoken = process.env.CHATWORK_API_TOK... | import template from './builder';
import kms from './kms';
import cw from './post';
import auth from './auth';
exports.handler = (event, context, callback) => {
console.log('Received event:', JSON.stringify(event, null, 2));
// Encrypted Chatwork token
const encCwtoken = process.env.CHATWORK_API_TOKEN || '';
... | Remove file extension js from import | Remove file extension js from import
| JavaScript | mit | Nate-River56/hub2chat,Nate-River56/hub2chat,Nate-River56/hub2chat |
adc05976c2c7f97d46c214518d448b0b13e377d6 | ui/app/utils/classes/rolling-array.js | ui/app/utils/classes/rolling-array.js | // An array with a max length.
//
// When max length is surpassed, items are removed from
// the front of the array.
// Using Classes to extend Array is unsupported in Babel so this less
// ideal approach is taken: https://babeljs.io/docs/en/caveats#classes
export default function RollingArray(maxLength, ...items) {
... | // An array with a max length.
//
// When max length is surpassed, items are removed from
// the front of the array.
// Native array methods
let { push, splice } = Array.prototype;
// Ember array prototype extension
let { insertAt } = Array.prototype;
// Using Classes to extend Array is unsupported in Babel so this ... | Use the prototype instead of "private" property backups | Use the prototype instead of "private" property backups
| JavaScript | mpl-2.0 | dvusboy/nomad,dvusboy/nomad,hashicorp/nomad,hashicorp/nomad,hashicorp/nomad,dvusboy/nomad,burdandrei/nomad,nak3/nomad,burdandrei/nomad,burdandrei/nomad,nak3/nomad,dvusboy/nomad,dvusboy/nomad,nak3/nomad,hashicorp/nomad,dvusboy/nomad,burdandrei/nomad,nak3/nomad,nak3/nomad,burdandrei/nomad,hashicorp/nomad,nak3/nomad,burda... |
ea95e486f37ad049ca2431ca10b3550c19ca222c | ui/src/admin/components/UsersTable.js | ui/src/admin/components/UsersTable.js | import React, {PropTypes} from 'react'
const UsersTable = ({users}) => (
<div className="panel panel-minimal">
<div className="panel-body">
<table className="table v-center">
<thead>
<tr>
<th>User</th>
<th>Roles</th>
<th>Permissions</th>
</tr>... | import React, {PropTypes} from 'react'
const UsersTable = ({users}) => (
<div className="panel panel-minimal">
<div className="panel-body">
<table className="table v-center">
<thead>
<tr>
<th>User</th>
<th>Roles</th>
<th>Permissions</th>
</tr>... | Handle no roles on users table | Handle no roles on users table
| JavaScript | mit | nooproblem/influxdb,nooproblem/influxdb,nooproblem/influxdb,influxdb/influxdb,influxdb/influxdb,mark-rushakoff/influxdb,influxdata/influxdb,li-ang/influxdb,mark-rushakoff/influxdb,mark-rushakoff/influxdb,nooproblem/influxdb,influxdb/influxdb,mark-rushakoff/influxdb,influxdb/influxdb,nooproblem/influxdb,mark-rushakoff/i... |
1ddb89ef8b4d2304a991e3a09e08693b8b84c5e8 | src/Oro/Bundle/DataGridBundle/Resources/public/js/datagrid/cell/number-cell.js | src/Oro/Bundle/DataGridBundle/Resources/public/js/datagrid/cell/number-cell.js | define([
'underscore',
'backgrid',
'orodatagrid/js/datagrid/formatter/number-formatter'
], function(_, Backgrid, NumberFormatter) {
'use strict';
var NumberCell;
/**
* Number column cell.
*
* @export oro/datagrid/cell/number-cell
* @class oro.datagrid.cell.NumberCell
... | define([
'underscore',
'backgrid',
'orodatagrid/js/datagrid/formatter/number-formatter'
], function(_, Backgrid, NumberFormatter) {
'use strict';
var NumberCell;
/**
* Number column cell.
*
* @export oro/datagrid/cell/number-cell
* @class oro.datagrid.cell.NumberCell
... | Add a grid to popup - added possibility to render number cell as an editable field | COM-212: Add a grid to popup
- added possibility to render number cell as an editable field
| JavaScript | mit | orocrm/platform,ramunasd/platform,ramunasd/platform,trustify/oroplatform,orocrm/platform,ramunasd/platform,Djamy/platform,trustify/oroplatform,geoffroycochard/platform,orocrm/platform,Djamy/platform,geoffroycochard/platform,geoffroycochard/platform,trustify/oroplatform,Djamy/platform |
0dadb60ecd51ab01d4c804d5c741c795a6ca7b47 | app/js/app.js | app/js/app.js | define(function (require) {
'use strict';
var store = require('store');
var items = new Vue({
el: 'body',
data: {
items: [],
domains: store.fetch(),
domain: ''
},
ready: function () {
var timer,
that = this;
... | define(function (require) {
'use strict';
var store = require('store');
var items = new Vue({
el: 'body',
data: {
items: [],
domains: store.fetch(),
domain: ''
},
ready: function () {
var timer,
that = this;
... | Add domain detect and show bold font of domain | Add domain detect and show bold font of domain
| JavaScript | mit | Witcher42/PacManagerVue |
1154dffa3aa8a714d183d9048fe9381dfdb0a28d | app/server.js | app/server.js | var jadeStream = require('jade-stream')
var http = require('http')
var st = require('st')
var mount = st({
path: 'app/assets',
index: 'index.jade'
})
var app = http.createServer(function server(req, res) {
if (req.url === '/')
res.filter = jadeStream()
mount(req, res)
})
app.listen(process.env.port, fun... | var jadeStream = require('jade-stream')
var config = require('rc')('bc-webplayer');
var http = require('http')
var st = require('st')
var mount = st({
path: 'app/assets',
index: 'index.jade',
cache: config.cache
})
var app = http.createServer(function server(req, res) {
if (req.url === '/')
res.filter = j... | Add project settings via rc | Add project settings via rc
| JavaScript | mit | joshgillies/bc-webplayer |
4f48bc9b0c2f475639be917d08cd2583e670ed25 | webpack.config.js | webpack.config.js | const webpack = require('webpack');
module.exports = {
entry: './src/index.js',
output: {
filename: './dist/html2canvas.js',
library: 'html2canvas'
},
module: {
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader'
... | const webpack = require('webpack');
module.exports = {
entry: './src/index.js',
output: {
filename: './dist/html2canvas.js',
library: 'html2canvas',
libraryTarget: 'umd'
},
module: {
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
... | Define browser build target as umd | Define browser build target as umd
| JavaScript | mit | niklasvh/html2canvas,niklasvh/html2canvas,niklasvh/html2canvas |
f73e07d291144ccc167491c8fbebb466f172e71c | webpack.config.js | webpack.config.js | const config = {
entry: './src/index.js'
};
module.exports = config;
| const path = require('path'); // We can use whatever nodejs package
const config = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'build'), //./build
filename: 'bundle.js'
}
};
module.exports = config;
| Set name and path of the output file | Set name and path of the output file
| JavaScript | mit | debiasej/webpack2-learning,debiasej/webpack2-learning |
dcd07488f11a0ce089b396b95d880d704f43a985 | routes/index.js | routes/index.js | var express = require('express');
var router = express.Router();
var GameModel = require('../models/game');
var model = require('../models');
const _ = require('underscore');
/* GET home page. */
router.get('/', function(req, res, next) {
let gameParam = {
order: [
['id', 'desc']
],
include: [
... | var express = require('express');
var router = express.Router();
var GameModel = require('../models/game');
var model = require('../models');
const _ = require('underscore');
/* GET home page. */
router.get('/', function(req, res, next) {
let gameParam = {
order: [
['id', 'desc']
],
include: [
... | Fix home page. When there are no game, it still show a random entry. | Fix home page.
When there are no game, it still show a random entry.
| JavaScript | mit | JixunMoe/GameGuide.Node,JixunMoe/GameGuide.Node,JixunMoe/GameGuide.Node,JixunMoe/GameGuide.Node |
e95c90357117c63142d591190b1a74f323e5f108 | routes/index.js | routes/index.js | var express = require('express');
var router = express.Router();
var moment = require('moment');
var languageColors = require('../language_colors');
// GET home page
languageColors.get(function (languages, updated) {
// HTML
router.get('/', function(req, res) {
res.render('index', {
languages: languages,... | var express = require('express');
var router = express.Router();
var moment = require('moment');
var languageColors = require('../language_colors');
// GET home page
languageColors.get(function (languages, updated) {
// HTML
router.get('/', function(req, res) {
res.render('index', {
languages: languages,... | Update the API and add the updated time | Update the API and add the updated time
| JavaScript | mit | nicolasmccurdy/language-colors,nicolasmccurdy/language-colors |
29195eaefde2949134c608771ddfed3fa22677a5 | routes/users.js | routes/users.js | const express = require('express'),
router = express.Router(),
db = require('../models');
router.get('/', function(req, res, next) {
res.render('index');
});
router.get('/new', function(req, res, next) {
res.render('users/new');
});
router.get('/:username', function(req, res, next) {
// db.User.fin... | const express = require('express'),
router = express.Router(),
db = require('../models');
router.get('/', function(req, res, next) {
res.render('index');
});
router.get('/new', function(req, res, next) {
res.render('users/new');
});
router.get('/:username', function(req, res, next) {
db.User.find({... | Use Mongoose to find user and pass to show page | Use Mongoose to find user and pass to show page
| JavaScript | mit | tymeart/mojibox,tymeart/mojibox |
77452232e9080665355f86082b28fae1a31ee8e4 | src/directives/ng-viewport.js | src/directives/ng-viewport.js | ngGridDirectives.directive('ngViewport', [function() {
return function($scope, elm) {
var isMouseWheelActive;
var prevScollLeft;
var prevScollTop = 0;
elm.bind('scroll', function(evt) {
var scrollLeft = evt.target.scrollLeft,
scrollTop = evt.target.scrollT... | ngGridDirectives.directive('ngViewport', [function() {
return function($scope, elm) {
var isMouseWheelActive;
var prevScollLeft;
var prevScollTop = 0;
var ensureDigest = function() {
if (!$scope.$root.$$phase) {
$scope.$digest();
}
};
... | Refactor out function to call digest only when safe | Refactor out function to call digest only when safe
| JavaScript | mit | FernCreek/ng-grid,ppossanzini/ui-grid,PeopleNet/ng-grid-fork,FugleMonkey/ng-grid,rightscale/ng-grid,rightscale/ng-grid,FernCreek/ng-grid,angular-ui/ng-grid-legacy,FernCreek/ng-grid,FugleMonkey/ng-grid,PeopleNet/ng-grid-fork,ppossanzini/ui-grid,FugleMonkey/ng-grid,angular-ui/ng-grid-legacy,angular-ui/ng-grid-legacy,ppos... |
f2539fed876794f065fe096c3816f49103cb1766 | src/MenuOptions.js | src/MenuOptions.js | import React from 'react';
import { View } from 'react-native';
const MenuOptions = ({ style, children, onSelect, customStyles }) => (
<View style={[customStyles.optionsWrapper, style]}>
{
React.Children.map(children, c =>
React.isValidElement(c) ?
React.cloneElement(c, {
onSe... | import React, { PropTypes } from 'react';
import { View } from 'react-native';
const MenuOptions = ({ style, children, onSelect, customStyles }) => (
<View style={[customStyles.optionsWrapper, style]}>
{
React.Children.map(children, c =>
React.isValidElement(c) ?
React.cloneElement(c, {
... | Allow also array as style prop type | Allow also array as style prop type
| JavaScript | isc | instea/react-native-popup-menu |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.