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 |
|---|---|---|---|---|---|---|---|---|---|
58239dac2cc98052570cd13e87905c9fb3b11de5 | src/scenes/home/opCodeCon/opCodeCon.js | src/scenes/home/opCodeCon/opCodeCon.js | import React from 'react';
import commonUrl from 'shared/constants/commonLinks';
import LinkButton from 'shared/components/linkButton/linkButton';
import styles from './opCodeCon.css';
const OpCodeCon = () => (
<div className={styles.hero}>
<div className={styles.heading}>
<h1>OpCodeCon</h1>
<h3>Join... | import React from 'react';
import commonUrl from 'shared/constants/commonLinks';
import LinkButton from 'shared/components/linkButton/linkButton';
import styles from './opCodeCon.css';
const OpCodeCon = () => (
<div className={styles.hero}>
<div className={styles.heading}>
<h1>OpCodeCon</h1>
<h3>Join... | Fix ESLint error causing Travis build to fail | Fix ESLint error causing Travis build to fail
'jsx-max-props-per-line' rule | JavaScript | mit | sethbergman/operationcode_frontend,OperationCode/operationcode_frontend,sethbergman/operationcode_frontend,sethbergman/operationcode_frontend,hollomancer/operationcode_frontend,OperationCode/operationcode_frontend,hollomancer/operationcode_frontend,OperationCode/operationcode_frontend,hollomancer/operationcode_frontend |
c4e00daab05ac6cc0b9965fd5a07539b3281bd2e | app/routes.js | app/routes.js | module.exports = {
bind : function (app) {
app.get('/', function (req, res) {
console.log("Clearing the session.")
delete req.session
res.render('index');
});
app.get('/examples/template-data', function (req, res) {
res.render('examples/template-data', { 'name' : 'Foo' });
})... | function clear_session(req) {
console.log("Clearing the session.")
delete req.session
}
module.exports = {
bind : function (app) {
app.get('/', function (req, res) {
clear_session(req);
res.render('index');
});
app.get('/index', function (req, res) {
clear_session(req);
res.... | Clear the session on accessing the index page too. | Clear the session on accessing the index page too.
| JavaScript | mit | stephenjoe1/pay-staff-tool,stephenjoe1/pay-staff-tool,stephenjoe1/pay-staff-tool |
8ebb4b1d798c02dd62d7b0e584f567374c4a930c | NoteWrangler/public/js/routes.js | NoteWrangler/public/js/routes.js | // js/routes
(function() {
"use strict";
angular.module("NoteWrangler")
.config(config);
function config($routeProvider) {
$routeProvider
.when("/notes", {
templateUrl: "../templates/pages/notes/index.html",
controller: "NotesIndexController",
controllerAs: "notesIndexCtrl... | // js/routes
(function() {
"use strict";
angular.module("NoteWrangler")
.config(config);
function config($routeProvider) {
$routeProvider
.when("/notes", {
templateUrl: "../templates/pages/notes/index.html",
controller: "NotesIndexController",
controllerAs: "notesIndexCtrl... | Add templateUrl for default route | Add templateUrl for default route
| JavaScript | mit | var-bin/angularjs-training,var-bin/angularjs-training,var-bin/angularjs-training,var-bin/angularjs-training |
d60038a85207a5126048733c700b15cd39b7e80b | modules/web.js | modules/web.js | var express = require('express');
var webInterface = function(dbot) {
var dbot = dbot;
var pub = 'public';
var app = express.createServer();
app.use(express.compiler({ src: pub, enable: ['sass'] }));
app.use(express.static(pub));
app.set('view engine', 'jade');
app.get('/', function(req,... | var express = require('express');
var webInterface = function(dbot) {
var dbot = dbot;
var pub = 'public';
var app = express.createServer();
app.use(express.compiler({ src: pub, enable: ['sass'] }));
app.use(express.static(pub));
app.set('view engine', 'jade');
app.get('/', function(req,... | Move listen port back to 443 | Move listen port back to 443
| JavaScript | mit | zuzak/dbot,zuzak/dbot |
b33eafc06f6f89166cecd8cde664c470cc249b31 | lib/app.js | lib/app.js | var app = require("express")();
app.get('/', function (req, res) {
res.send('c\'est ne une jsbin');
});
app.listen(3000);
| var express = require('express'),
path = require('path'),
app = express();
app.root = path.join(__dirname, '..', 'public');
app.use(express.logger());
app.use(express.static(app.root));
app.get('/', function (req, res) {
res.send('c\'est ne une jsbin');
});
module.exports = app;
// Run a local dev... | Add support for serving static files and logging | Add support for serving static files and logging
| JavaScript | mit | thsunmy/jsbin,jsbin/jsbin,filamentgroup/jsbin,mingzeke/jsbin,jwdallas/jsbin,kentcdodds/jsbin,jsbin/jsbin,knpwrs/jsbin,IvanSanchez/jsbin,martinvd/jsbin,blesh/jsbin,saikota/jsbin,pandoraui/jsbin,carolineartz/jsbin,dhval/jsbin,svacha/jsbin,mlucool/jsbin,dennishu001/jsbin,eggheadio/jsbin,Freeformers/jsbin,mcanthony/jsbin,c... |
4390638b4674024c7abd266450916fbe4f78ea5a | prompts.js | prompts.js | 'use strict';
var _ = require('lodash');
var prompts = [
{
type: 'input',
name: 'projectName',
message: 'Machine-name of your project?',
// Name of the parent directory.
default: _.last(process.cwd().split('/')),
validate: function (input) {
return (input.search(' ') === -1) ? true : '... | 'use strict';
var _ = require('lodash');
var prompts = [
{
type: 'input',
name: 'projectName',
message: 'Machine-name of your project?',
// Name of the parent directory.
default: _.last(process.cwd().split('/')),
validate: function (input) {
return (input.search(' ') === -1) ? true : '... | Add support for memcache with Drupal config via override.settings.php. | Add support for memcache with Drupal config via override.settings.php.
| JavaScript | mit | phase2/generator-outrigger-drupal,phase2/generator-outrigger-drupal,phase2/generator-outrigger-drupal |
9c69add5dbeb82687180f0f225defbe8cc2f0553 | shows/paste.js | shows/paste.js | function(doc, req) {
start({
"headers" : {
"Content-type": "text/html"
}
});
var Mustache = require("vendor/mustache");
var x = Mustache.to_html(this.templates.paste, doc);
return x;
}
| function(doc, req) {
start({
"Content-type": "text/html; charset='utf-8'"
});
var Mustache = require("vendor/mustache");
Mustache.to_html(this.templates.paste, doc, null, send);
}
| Use CouchDB send function when displaying the template | Use CouchDB send function when displaying the template
Also correct the start function which was wrong before.
| JavaScript | mit | gdamjan/paste-couchapp |
2aacce141e11e2e30f566cad900c9fa1f4234d2b | tests/dummy/app/routes/nodes/detail/draft-registrations.js | tests/dummy/app/routes/nodes/detail/draft-registrations.js | import Ember from 'ember';
export default Ember.Route.extend({
model() {
let node = this.modelFor('nodes.detail');
return node.get('draftRegistrations');
}
});
| import Ember from 'ember';
export default Ember.Route.extend({
model() {
let node = this.modelFor('nodes.detail');
let drafts = node.get('draftRegistrations');
return Ember.RSVP.hash({
node: node,
drafts: drafts
});
},
});
| Make both node and draft model available in draft template. | Make both node and draft model available in draft template.
| JavaScript | apache-2.0 | crcresearch/ember-osf,CenterForOpenScience/ember-osf,pattisdr/ember-osf,hmoco/ember-osf,baylee-d/ember-osf,hmoco/ember-osf,jamescdavis/ember-osf,CenterForOpenScience/ember-osf,pattisdr/ember-osf,chrisseto/ember-osf,binoculars/ember-osf,binoculars/ember-osf,cwilli34/ember-osf,jamescdavis/ember-osf,crcresearch/ember-osf,... |
0ef49d43df60f47ba98979c19c1c10d9808d1443 | web/static/js/query.js | web/static/js/query.js | App.QueryController = Ember.Controller.extend({
needs: ['insight'],
columnsBinding: "controllers.insight.columns",
limitBinding: "controllers.insight.limit",
_schema: Em.ArrayProxy.create({content:[]}),
_records: Em.ArrayProxy.create({content:[]}),
schema: function(){
this.execute();
return this.... | App.QueryController = Ember.Controller.extend({
needs: ['insight'],
orderBy: null,
where: null,
columnsBinding: "controllers.insight.columns",
limitBinding: "controllers.insight.limit",
whereBinding: "controllers.insight.where",
_schema: Em.ArrayProxy.create({content:[]}),
_records: Em.ArrayProxy.creat... | Allow editing of filters, ordering and limits. | Allow editing of filters, ordering and limits. | JavaScript | mpl-2.0 | mozilla/caravela,mozilla/caravela,mozilla/caravela,mozilla/caravela |
1e28a1f64256b02c70d1534561760657c6076179 | ui/app/common/authentication/directives/pncRequiresAuth.js | ui/app/common/authentication/directives/pncRequiresAuth.js | /*
* JBoss, Home of Professional Open Source.
* Copyright 2014 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* 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 Licen... | /*
* JBoss, Home of Professional Open Source.
* Copyright 2014 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* 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 Licen... | Add title when action buttons is disabled - FF fix | Add title when action buttons is disabled - FF fix
| JavaScript | apache-2.0 | jdcasey/pnc,jbartece/pnc,jsenko/pnc,alexcreasy/pnc,ruhan1/pnc,thauser/pnc,alexcreasy/pnc,jsenko/pnc,jbartece/pnc,dans123456/pnc,thescouser89/pnc,matejonnet/pnc,matedo1/pnc,jdcasey/pnc,ruhan1/pnc,rnc/pnc,jbartece/pnc,matedo1/pnc,matedo1/pnc,pkocandr/pnc,thauser/pnc,alexcreasy/pnc,project-ncl/pnc,jsenko/pnc,dans123456/pn... |
c530d6bee2bc659945b711c215b9f0368f0a8981 | background.js | background.js | chrome.contextMenus.create(
{
"title": "Define \"%s\"",
"contexts":["selection"],
"onclick": function(info, tab){
chrome.tabs.create(
{url: "http://www.google.com/search?q=define" + encodeURIComponent(" " + info.selectionText)
});
}
});
| chrome.contextMenus.create(
{
"title": "Define \"%s\"",
"contexts":["selection"],
"onclick": function(info, tab){
chrome.tabs.create(
{url: "http://www.google.com/search?q=define" + encodeURIComponent(" " + info.selectionText).replace(/%20/g, "+")
});
... | Improve the looks of the tab's URL by using "+" instead of "%20" | Improve the looks of the tab's URL by using "+" instead of "%20"
| JavaScript | mit | nwjlyons/google-dictionary-lookup |
608891cff627257521353d513397b01294bbf855 | lib/logger.js | lib/logger.js | 'use strict';
var path = require('path');
var winston = require('winston');
//
// Logging levels
//
var config = {
levels: {
silly: 0,
verbose: 1,
debug: 2,
info: 3,
warn: 4,
error: 5
},
colors: {
silly: 'magenta',
verbose: 'cyan',
debug: 'blue',
info: 'green',
warn: ... | 'use strict';
var path = require('path');
var winston = require('winston');
//
// Logging levels
//
var config = {
levels: {
silly: 0,
verbose: 1,
debug: 2,
info: 3,
warn: 4,
error: 5
},
colors: {
silly: 'magenta',
verbose: 'cyan',
debug: 'blue',
info: 'green',
warn: ... | Disable debug mode by default | Disable debug mode by default
| JavaScript | apache-2.0 | mwaylabs/mcap-cli |
e5e82e6af9505c9f5a04a8acbe8170349faf80b7 | modules/openlmis-web/src/main/webapp/public/js/shared/directives/angular-flot.js | modules/openlmis-web/src/main/webapp/public/js/shared/directives/angular-flot.js | /**
* Created with IntelliJ IDEA.
* User: issa
* Date: 2/10/14
* Time: 1:18 AM
*/
app.directive('aFloat', function() {
function link(scope, element, attrs){
scope.$watch('afData', function(){
init(scope.afData,scope.afOption);
});
scope.$watch('afOption', function(){
... | /**
* Created with IntelliJ IDEA.
* User: issa
* Date: 2/10/14
* Time: 1:18 AM
*/
app.directive('aFloat', function() {
function link(scope, element, attrs){
scope.$watch('afData', function(){
init(scope.afData,scope.afOption);
});
scope.$watch('afOption', function(){
... | Fix angular jqflot integration error | Fix angular jqflot integration error
| JavaScript | agpl-3.0 | OpenLMIS/open-lmis,jasolangi/jasolangi.github.io,jasolangi/jasolangi.github.io,USAID-DELIVER-PROJECT/elmis,OpenLMIS/open-lmis,vimsvarcode/elmis,vimsvarcode/elmis,vimsvarcode/elmis,kelvinmbwilo/vims,vimsvarcode/elmis,jasolangi/jasolangi.github.io,USAID-DELIVER-PROJECT/elmis,kelvinmbwilo/vims,vimsvarcode/elmis,kelvinmbwi... |
596710cc1308f0da187aca5f3cbe4f0b39a478a6 | frontend/Components/Dashboard.style.js | frontend/Components/Dashboard.style.js | const u = require('../styles/utils');
module.exports = {
'.dashboard': {
'padding': u.inRem(20),
},
'.dashboard’s-title': {
'font-size': u.inRem(40),
'line-height': u.inRem(40),
},
'.dashboard’s-subtitle': {
'font-size': u.inRem(12),
'text-transform': 'uppercase',
'letter-spacing': ... | const u = require('../styles/utils');
const dashboardPadding = 20;
const categoryBorderWidth = 1;
const categoryBorder =
`${categoryBorderWidth}px solid rgba(255, 255, 255, .2)`;
module.exports = {
'.dashboard': {
'padding': u.inRem(dashboardPadding),
},
'.dashboard’s-title': {
'font-size': u.inRem(... | Make categories a bit prettier | Make categories a bit prettier
| JavaScript | mit | magnificat/magnificat.surge.sh,magnificat/magnificat.surge.sh,magnificat/magnificat.surge.sh |
96507503d52fef205e9462de3bdcd7d38f18c453 | lib/routes.js | lib/routes.js | Router.configure({
layoutTemplate: '_layout'
});
//From what I can tell this has been depreciated
//https://github.com/iron-meteor/iron-router/blob/739bcc1445db3ad6bf90bda4e0cab3203a0ae526/lib/router.js#L88
Router.map(function() {
// initiative routes
this.route('initiatives', {
path: '/',
template: 'in... | Router.configure({
layoutTemplate: '_layout'
});
//From what I can tell this has been depreciated
//https://github.com/iron-meteor/iron-router/blob/739bcc1445db3ad6bf90bda4e0cab3203a0ae526/lib/router.js#L88
Router.map(function() {
// initiative routes
this.route('initiatives', {
path: '/',
template: 'in... | Fix initiativeShow to subscribe to userData | Fix initiativeShow to subscribe to userData
| JavaScript | mit | mtr-cherish/cherish,mtr-cherish/cherish |
2e357b2fd8d384047a98a2d13f074c378c6c7cbb | src/background/settings.js | src/background/settings.js | /**
* Incomplete type for settings in the `settings.json` file.
*
* This contains only the settings that the background script uses. Other
* settings are used when generating the `manifest.json` file.
*
* @typedef Settings
* @prop {string} apiUrl
* @prop {string} buildType
* @prop {{ dsn: string, release: stri... | /**
* Incomplete type for settings in the `settings.json` file.
*
* This contains only the settings that the background script uses. Other
* settings are used when generating the `manifest.json` file.
*
* @typedef Settings
* @prop {string} apiUrl
* @prop {string} buildType
* @prop {{ dsn: string, release: stri... | Correct regex pattern in the replace | Correct regex pattern in the replace
I believe the intention is to strip out the last `/` character, if any
(as the comment say).
| JavaScript | bsd-2-clause | hypothesis/browser-extension,hypothesis/browser-extension,hypothesis/browser-extension,hypothesis/browser-extension |
4fead2fa52d33a187879371f2cb5b9af2ad2aa14 | api/routes/houseRoutes.js | api/routes/houseRoutes.js | 'use strict'
var passport = require('passport')
module.exports = function(app) {
var house = require('../controllers/houseController')
app.route('/houses')
.get(house.list_all_houses)
.post(passport.authenticate('jwt', {
session: false
}),
function(req, res) {
var token = getT... | 'use strict'
var passport = require('passport')
module.exports = function(app) {
var house = require('../controllers/houseController')
var versioning = require('../config/versioning')
app.route(versioning.url + '/houses')
.get(house.list_all_houses)
.post(passport.authenticate('jwt', {
session:... | Add API versioning for House endpoints. | Add API versioning for House endpoints.
| JavaScript | apache-2.0 | sotirelisc/housebot-api |
c1941e8deb1011fcda896467dea65f2a1a067bcd | app/libs/details/index.js | app/libs/details/index.js | 'use strict';
module.exports = {
get: function(task) {
return new Promise((resolve, reject) => {
// Check type
if ( task.type === undefined || ! ['show', 'move'].includes(task.type) ) {
return reject('Invalid job type "' + task.type + '" specified');
}
// Get metadata, auth wit... | 'use strict';
// Load requirements
const fs = require('fs'),
path = require('path');
// Define the config directory
let configDir = path.resolve('./config');
// Create config directory if we don't have one
if ( ! fs.existsSync(configDir) ) {
fs.mkdirSync(configDir);
}
module.exports = {
get: function(tas... | Create config directory if not present | WIP: Create config directory if not present
| JavaScript | apache-2.0 | transmutejs/core |
4b534e9a9412d28c5a5e741287c0153af2286c2f | addons/graphql/src/preview.js | addons/graphql/src/preview.js | import React from 'react';
import GraphiQL from 'graphiql';
import { fetch } from 'global';
import 'graphiql/graphiql.css';
import FullScreen from './components/FullScreen';
const FETCH_OPTIONS = {
method: 'post',
headers: { 'Content-Type': 'application/json' },
};
function getDefautlFetcher(url) {
return para... | import React from 'react';
import GraphiQL from 'graphiql';
import { fetch } from 'global';
import 'graphiql/graphiql.css';
import FullScreen from './components/FullScreen';
const FETCH_OPTIONS = {
method: 'post',
headers: { 'Content-Type': 'application/json' },
};
function getDefautlFetcher(url) {
return para... | Fix bug in addons/graphql in reIndentQuery | Fix bug in addons/graphql in reIndentQuery
| JavaScript | mit | enjoylife/storybook,storybooks/storybook,rhalff/storybook,jribeiro/storybook,nfl/react-storybook,jribeiro/storybook,storybooks/react-storybook,storybooks/storybook,storybooks/storybook,rhalff/storybook,enjoylife/storybook,nfl/react-storybook,jribeiro/storybook,nfl/react-storybook,kadirahq/react-storybook,storybooks/sto... |
1208ee980cf3e5b3c2c847c2a8d27b4ec7207f0f | client/src/js/samples/components/Analyses/Create.js | client/src/js/samples/components/Analyses/Create.js | import React, { PropTypes } from "react";
import { Modal } from "react-bootstrap";
import { AlgorithmSelect, Button } from "virtool/js/components/Base";
const getInitialState = () => ({
algorithm: "pathoscope_bowtie"
});
export default class CreateAnalysis extends React.Component {
constructor (props) {
... | import React, { PropTypes } from "react";
import { Modal } from "react-bootstrap";
import { AlgorithmSelect, Button } from "virtool/js/components/Base";
const getInitialState = () => ({
algorithm: "pathoscope_bowtie"
});
export default class CreateAnalysis extends React.Component {
constructor (props) {
... | Hide create analysis modal on success | Hide create analysis modal on success
| JavaScript | mit | igboyes/virtool,igboyes/virtool,virtool/virtool,virtool/virtool |
3d81d8597aec5d77525edf6b479e02317b75ca36 | app/dashboard/routes/importer/helper/determine_path.js | app/dashboard/routes/importer/helper/determine_path.js | var slugify = require('./slugify');
var join = require('path').join;
var moment = require('moment');
module.exports = function (title, page, draft, dateStamp) {
var relative_path_without_extension;
var slug = slugify(title);
var name = name || slug;
name = name.split('/').join('-');
if (page) {
relat... | var slugify = require("./slugify");
var join = require("path").join;
var moment = require("moment");
module.exports = function(title, page, draft, dateStamp, slug) {
var relative_path_without_extension;
var name;
slug = slugify(title || slug);
name = name || slug;
name = name.split("/").join("-");
if (p... | Allow optional slug in function which determines an imported entry's path | Allow optional slug in function which determines an imported entry's path
| JavaScript | cc0-1.0 | davidmerfield/Blot,davidmerfield/Blot,davidmerfield/Blot,davidmerfield/Blot |
62ddd0bc9c88d199090089d5506d4894dc5d8737 | Resources/ui/handheld/android/ResponsesNewWindow.js | Resources/ui/handheld/android/ResponsesNewWindow.js | function ResponsesNewWindow(surveyID) {
try {
var ResponsesIndexView = require('ui/common/responses/ResponsesIndexView');
var ResponsesNewView = require('ui/common/responses/ResponsesNewView');
var ConfirmDialog = require('ui/common/components/ConfirmDialog');
var self = Ti.UI.createWindow({
navBarHidden... | function ResponsesNewWindow(surveyID) {
try {
var ResponsesIndexView = require('ui/common/responses/ResponsesIndexView');
var ResponsesNewView = require('ui/common/responses/ResponsesNewView');
var ConfirmDialog = require('ui/common/components/ConfirmDialog');
var self = Ti.UI.createWindow({
navBarHidden... | Add a guard clause to ResponseNewWindow | Add a guard clause to ResponseNewWindow
| JavaScript | mit | nilenso/ashoka-survey-mobile,nilenso/ashoka-survey-mobile |
fc112a5d2fe9418150c15740b297e2c74af72ab2 | lib/VideoCapture.js | lib/VideoCapture.js | // This module is responsible for capturing videos
'use strict';
const config = require('config');
const PiCamera = require('pi-camera');
const myCamera = new PiCamera({
mode: 'video',
output: process.argv[2],
width: config.get('camera.videoWidth'),
height: config.get('camera.videoHeight'),
timeout: config.... | // This module is responsible for capturing videos
'use strict';
const config = require('config');
const PiCamera = require('pi-camera');
const myCamera = new PiCamera({
mode: 'video',
output: process.argv[2],
width: config.get('camera.videoWidth'),
height: config.get('camera.videoHeight'),
timeout: config.... | Add minor delay to video capture. Hopefully this helps the camera moduel keep up. | Add minor delay to video capture. Hopefully this helps the camera moduel keep up.
| JavaScript | mit | stetsmando/pi-motion-detection |
e6516d3ef113bb35bcee5fd199ab06d14ca3f036 | src/main/webapp/styles.js | src/main/webapp/styles.js | const propertiesReader = require("properties-reader");
const defaults = {
"primary-color": "#1890ff",
"info-color": "#1890ff",
"link-color": "#1890ff",
"font-size-base": "14px",
"border-radius-base": "2px",
};
function formatAntStyles() {
const custom = {};
const re = /styles.ant.([\w+-]*)/;
try {
... | const propertiesReader = require("properties-reader");
const fs = require("fs");
const defaults = {
"primary-color": "#1890ff",
"info-color": "#1890ff",
"link-color": "#1890ff",
"font-size-base": "14px",
"border-radius-base": "2px",
};
const iridaConfig = "/etc/irida/irida.conf";
const propertiesConfig = "..... | Check to see what values are in which file. | Check to see what values are in which file.
| JavaScript | apache-2.0 | phac-nml/irida,phac-nml/irida,phac-nml/irida,phac-nml/irida,phac-nml/irida,phac-nml/irida,phac-nml/irida,phac-nml/irida |
f998f5fe7aedb8e33a81727c8371b690a698c73b | src/browser.js | src/browser.js | /*
*
* This is used to build the bundle with browserify.
*
* The bundle is used by people who doesn't use browserify.
* Those who use browserify will install with npm and require the module,
* the package.json file points to index.js.
*/
import Auth0Lock from './classic';
import Auth0LockPasswordless from './pa... | /*
*
* This is used to build the bundle with browserify.
*
* The bundle is used by people who doesn't use browserify.
* Those who use browserify will install with npm and require the module,
* the package.json file points to index.js.
*/
import Auth0Lock from './classic';
// import Auth0LockPasswordless from '.... | Exclude passwordless stuff from build | Exclude passwordless stuff from build
| JavaScript | mit | mike-casas/lock,mike-casas/lock,mike-casas/lock |
0458bfe4e4fbe287049722f4efa46df1fa2be52f | lib/js/SetBased/Abc/Core/Page/CorePage.js | lib/js/SetBased/Abc/Core/Page/CorePage.js | /*jslint browser: true, single: true, maxlen: 120, eval: true, white: true */
/*global define */
/*global set_based_abc_inline_js*/
//----------------------------------------------------------------------------------------------------------------------
define(
'SetBased/Abc/Core/Page/CorePage',
['jquery',
'Set... | /*jslint browser: true, single: true, maxlen: 120, eval: true, white: true */
/*global define */
/*global set_based_abc_inline_js*/
//----------------------------------------------------------------------------------------------------------------------
define(
'SetBased/Abc/Core/Page/CorePage',
['jquery',
'Set... | Align with changes in OverviewTable. | Align with changes in OverviewTable.
| JavaScript | mit | SetBased/php-abc-core,SetBased/php-abc-core |
2ddf6d6222e6c0fa6f6b29665b90a2ba6fbd5d0f | src/app/libparsio/technical/services/update.service.js | src/app/libparsio/technical/services/update.service.js | /*
* Author: Alexandre Havrileck (Oxyno-zeta)
* Date: 25/06/16
* Licence: See Readme
*/
(function () {
'use strict';
angular
.module('libparsio.technical.services')
.factory('updateService', updateService);
/** @ngInject */
function updateService($q, updateDaoService, updateWrapperService, updateCacheSer... | /*
* Author: Alexandre Havrileck (Oxyno-zeta)
* Date: 25/06/16
* Licence: See Readme
*/
(function () {
'use strict';
angular
.module('libparsio.technical.services')
.factory('updateService', updateService);
/** @ngInject */
function updateService($q, updateDaoService, updateWrapperService, updateCacheSer... | Remove mock version in code | [App] Remove mock version in code
| JavaScript | mit | oxyno-zeta/LibParsio,oxyno-zeta/LibParsio |
74b84e2aa981ed9d8972afa97b998c8110a6dc6e | packages/net/__imports__.js | packages/net/__imports__.js | exports.map = {
'node': ['net.env.node.stdio'],
'browser': ['net.env.browser.csp'],
'mobile': []
}
exports.resolve = function(env, opts) {
return exports.map[env] || [];
};
| exports.map = {
'node': [
'net.env.node.stdio'
],
'browser': [
'net.env.browser.csp',
'net.env.browser.postmessage'
],
'mobile': []
}
exports.resolve = function(env, opts) {
return exports.map[env] || [];
};
| Fix for missing dynamic import | Fix for missing dynamic import
| JavaScript | mit | hashcube/js.io,hashcube/js.io,gameclosure/js.io,gameclosure/js.io |
f390c9257874452e2a7e2aa918502a713d7ea4e2 | app/assets/javascripts/discourse/views/topic_footer_buttons_view.js | app/assets/javascripts/discourse/views/topic_footer_buttons_view.js | /**
This view is used for rendering the buttons at the footer of the topic
@class TopicFooterButtonsView
@extends Discourse.ContainerView
@namespace Discourse
@module Discourse
**/
Discourse.TopicFooterButtonsView = Discourse.ContainerView.extend({
elementId: 'topic-footer-buttons',
topicBinding: 'contro... | /**
This view is used for rendering the buttons at the footer of the topic
@class TopicFooterButtonsView
@extends Discourse.ContainerView
@namespace Discourse
@module Discourse
**/
Discourse.TopicFooterButtonsView = Discourse.ContainerView.extend({
elementId: 'topic-footer-buttons',
topicBinding: 'contro... | Hide the Invite button in topics in secured categories | Hide the Invite button in topics in secured categories
| JavaScript | mit | natefinch/discourse,natefinch/discourse |
b05684290a939fc4475335aad1d348b208a22d0f | cloud-functions-angular-start/src/firebase-messaging-sw.js | cloud-functions-angular-start/src/firebase-messaging-sw.js | importScripts('https://www.gstatic.com/firebasejs/3.6.6/firebase-app.js');
importScripts('https://www.gstatic.com/firebasejs/3.6.6/firebase-messaging.js');
// Initialize the Firebase app in the service worker by passing in the
// messagingSenderId.
firebase.initializeApp({
// TODO add your messagingSenderId
messag... | importScripts('https://www.gstatic.com/firebasejs/3.6.6/firebase-app.js');
importScripts('https://www.gstatic.com/firebasejs/3.6.6/firebase-messaging.js');
// Initialize the Firebase app in the service worker by passing in the
// messagingSenderId.
firebase.initializeApp({
// TODO add your messagingSenderId
messag... | Remove hard-coded message sender id. | Remove hard-coded message sender id.
| JavaScript | apache-2.0 | firebase/codelab-friendlychat-web,firebase/codelab-friendlychat-web |
cfac1524d1d33c1c6594f54f29d7691b121f89ab | background.js | background.js | (function () {
'use strict';
// Awesome Browser Shortcuts
chrome.commands.onCommand.addListener(function (command) {
var tabQuery = {active: true, currentWindow: true};
if (command === 'toggle-pin') {
// Get current tab in the active window
chrome.tabs.query(tabQuery, function(tabs) {
var currentTab = ... | (function () {
'use strict';
// Awesome Browser Shortcuts
chrome.commands.onCommand.addListener(function (command) {
var tabQuery = {active: true, currentWindow: true};
if (command === 'toggle-pin') {
// Get current tab in the active window
chrome.tabs.query(tabQuery, function(tabs) {
var currentTab = ... | Fix Duplicate Tab shortcut typo | Fix Duplicate Tab shortcut typo
| JavaScript | mit | djadmin/browse-awesome |
ab4b56ad493205c736dea190cd776e2c89a42e5b | servers.js | servers.js | var fork = require('child_process').fork;
var amountConcurrentServers = process.argv[2] || 2;
var port = initialPortServer();
var servers = [];
var path = __dirname;
var disableAutomaticGarbageOption = '--expose-gc';
for(var i = 0; i < amountConcurrentServers; i++) {
var portForServer = port + i;
var serverIde... | var fork = require('child_process').fork;
var amountConcurrentServers = process.argv[2] || 2;
var port = initialPortServer();
var servers = [];
var path = __dirname;
var disableAutomaticGarbageOption = '--expose-gc';
for(var i = 0; i < amountConcurrentServers; i++) {
var portForServer = port + i;
var serverIde... | Add log for child process | Add log for child process
| JavaScript | mit | eltortuganegra/server-websocket-benchmark,eltortuganegra/server-websocket-benchmark |
aa044b333981737f5abf7f3f620965af043aa914 | package.js | package.js | Package.describe({
name: 'staringatlights:autoform-generic-error',
version: '1.0.0',
// Brief, one-line summary of the package.
summary: 'Enables generic error handling in AutoForm.',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/abecks/meteor-autoform-ge... | Package.describe({
name: 'staringatlights:autoform-generic-error',
version: '1.0.0',
// Brief, one-line summary of the package.
summary: 'Enables generic error handling in AutoForm.',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/abecks/meteor-autoform-ge... | Remove version constaint on AutoForm | Remove version constaint on AutoForm
| JavaScript | mit | abecks/meteor-autoform-generic-error,abecks/meteor-autoform-generic-error |
0c8ac4b02930dc5ea3dbec668ac5077f0d834237 | lib/requiredKeys.js | lib/requiredKeys.js |
module.exports = [
{
type: 'bitcoin',
purpose: 'payment'
},
{
type: 'bitcoin',
purpose: 'messaging'
},
{
type: 'ec',
purpose: 'sign'
},
{
type: 'ec',
purpose: 'update'
}
]
|
module.exports = [
{
type: 'bitcoin',
purpose: 'payment'
},
{
type: 'bitcoin',
purpose: 'messaging'
},
{
type: 'ec',
purpose: 'sign'
},
{
type: 'ec',
purpose: 'update'
},
{
type: 'dsa',
purpose: 'sign'
}
]
| Revert "don't require dsa key" | Revert "don't require dsa key"
This reverts commit ce8f474a2832374f109129d9847cdce526ae318c.
| JavaScript | mit | tradle/identity |
0e28a2b11bd735e90410736548b88acd5c910eaf | src/components/layout.js | src/components/layout.js | import React from 'react'
import { StaticQuery, graphql } from 'gatsby'
import Navigation from '../components/navigation'
export default ({ children }) => (
<StaticQuery
query={graphql`
query NavigationQuery {
allMongodbPlacardDevSportsAndCountries {
edges {
node {
... | import React from 'react'
import { StaticQuery, graphql } from 'gatsby'
import Navigation from '../components/navigation'
export default ({ children }) => (
<StaticQuery
query={graphql`
query NavigationQuery {
allMongodbPlacardDevSportsAndCountries {
edges {
node {
... | Use short syntax version for the Fragment. | Use short syntax version for the Fragment.
| JavaScript | mit | LuisLoureiro/placard-wrapper |
9ed345347d76ee4cf46658d583e9cb4713d14077 | js/energy-systems/view/EFACBaseNode.js | js/energy-systems/view/EFACBaseNode.js | // Copyright 2014-2015, University of Colorado Boulder
/**
* Base module for model elements whose position and opacity can change.
*
* @author John Blanco
* @author Andrew Adare
*/
define( function( require ) {
'use strict';
var inherit = require( 'PHET_CORE/inherit' );
var Node = require( 'SCENERY/nodes/N... | // Copyright 2014-2015, University of Colorado Boulder
/**
* Base module for model elements whose position and opacity can change.
*
* @author John Blanco
* @author Andrew Adare
*/
define( function( require ) {
'use strict';
var inherit = require( 'PHET_CORE/inherit' );
var Node = require( 'SCENERY/nodes/N... | Fix typo and use thisNode | Fix typo and use thisNode
| JavaScript | mit | phetsims/energy-forms-and-changes,phetsims/energy-forms-and-changes,phetsims/energy-forms-and-changes |
c61ebc077aaad3a53f7a3289aa6f0df2a025749b | backend/app.js | backend/app.js | var app = require('http').createServer();
var request = require('request');
var io = require('socket.io')(app);
var fs = require('fs');
app.listen(13374);
io.on('connection', function (socket) {
setInterval(function() {
request('http://status.hasi.it', function (error, response, body) {
if (!error && r... | var app = require('http').createServer();
var request = require('request');
var io = require('socket.io')(app);
var fs = require('fs');
app.listen(13374);
function pullData(socket) {
request('http://status.hasi.it', function (error, response, body) {
if (!error && response.statusCode == 200) {
socket.emit... | Add initial load and larger update interval | Add initial load and larger update interval
| JavaScript | mit | EddyShure/wazzup,EddyShure/wazzup |
315f0ba79a0312cecc3e2b864329cf8845735ea9 | scripts/app.js | scripts/app.js | 'use strict';
/**
* @ngdoc overview
* @name angularBootstrapCalendarApp
* @description
* # angularBootstrapCalendarApp
*
* Main module of the application.
*/
angular
.module('mwl.calendar', [
'ui.bootstrap.tooltip'
]);
| 'use strict';
/**
* @ngdoc overview
* @name angularBootstrapCalendarApp
* @description
* # angularBootstrapCalendarApp
*
* Main module of the application.
*/
angular
.module('mwl.calendar', [
'ui.bootstrap'
]);
| Revert "Lower ui bootstraps dependency to only the tooltip" | Revert "Lower ui bootstraps dependency to only the tooltip"
This reverts commit a699e4304a2f75a49d7d8d6769646b1fabdbadcf.
| JavaScript | mit | nameandlogo/angular-bootstrap-calendar,danibram/angular-bootstrap-calendar-modded,danibram/angular-bootstrap-calendar-modded,polarbird/angular-bootstrap-calendar,alexjohnson505/angular-bootstrap-calendar,rasulnz/angular-bootstrap-calendar,rasulnz/angular-bootstrap-calendar,CapeSepias/angular-bootstrap-calendar,LandoB/a... |
75299752fcbdf5a4f7c99c13ae1c6827fe9a3d8a | app/assets/javascripts/map/services/GeostoreService.js | app/assets/javascripts/map/services/GeostoreService.js | define([
'Class', 'uri', 'bluebird',
'map/services/DataService'
], function(Class, UriTemplate, Promise, ds) {
'use strict';
var GET_REQUEST_ID = 'GeostoreService:get',
SAVE_REQUEST_ID = 'GeostoreService:save';
var URL = window.gfw.config.GFW_API_HOST + '/geostore/{id}';
var GeostoreService = Clas... | define([
'Class', 'uri', 'bluebird',
'map/services/DataService'
], function(Class, UriTemplate, Promise, ds) {
'use strict';
var GET_REQUEST_ID = 'GeostoreService:get',
SAVE_REQUEST_ID = 'GeostoreService:save';
var URL = window.gfw.config.GFW_API_HOST + '/geostore/{id}';
var GeostoreService = Clas... | Update to work with new Geostore API | Update to work with new Geostore API
| JavaScript | mit | Vizzuality/gfw,Vizzuality/gfw |
2d8abed76cd7795771f5e89e752e800b8ae1350c | app/components/calendar/calendar-illustration/index.js | app/components/calendar/calendar-illustration/index.js | /* global document, customElements, BaseElement, Moment */
class CalendarIllustration extends BaseElement {
constructor() {
super().fetchTemplate();
}
/**
* Draws the illustration.
*
* @return {CalendarIllustration}
*/
draw() {
const moment = Moment();
this... | /* global document, customElements, BaseElement, Moment */
class CalendarIllustration extends BaseElement {
constructor() {
super().fetchTemplate();
}
/**
* Draws the illustration.
*
* @return {CalendarIllustration}
*/
draw() {
const moment = Moment();
this... | Drop quarter in favor of month | Drop quarter in favor of month
| JavaScript | mit | mzdr/timestamp,mzdr/timestamp |
7d6689f17d296a6d1b914e39d1d04e7f5cb7dd7e | blueprints/assertion/index.js | blueprints/assertion/index.js | var stringUtil = require('ember-cli/lib/utilities/string');
module.exports = {
description: 'Generates a new custom assertion into tests/assertions/',
locals: function(options) {
var entity = options.entity;
var rawName = entity.name;
var name = stringUtil.dasherize(rawName);
var camelNa... | var stringUtil = require('ember-cli-string-utils');
module.exports = {
description: 'Generates a new custom assertion into tests/assertions/',
locals: function(options) {
var entity = options.entity;
var rawName = entity.name;
var name = stringUtil.dasherize(rawName);
var camelName = str... | Update require statement for string utils | Update require statement for string utils | JavaScript | mit | dockyard/ember-cli-custom-assertions,dockyard/ember-cli-custom-assertions |
1b2e12784594fda9454242825befaf673492c40f | buffer-frame-container.js | buffer-frame-container.js | var iframe;
function initFrame() {
iframe = document.createElement('iframe');
document.body.appendChild(iframe);
}
// Listen to the parent window send src info to be set on the nested frame
function receiveNestedFrameData() {
var handler = function(e) {
if (e.source !== window.parent && !e.data.src) return;... | var iframe;
function initFrame() {
iframe = document.createElement('iframe');
document.body.appendChild(iframe);
}
// Listen to the parent window send src info to be set on the nested frame
function receiveNestedFrameData() {
var handler = function(e) {
if (e.source !== window.parent && !e.data.src) return;... | Make extension work in dev env too | Make extension work in dev env too
| JavaScript | mit | bufferapp/buffer-extension-shared,bufferapp/buffer-extension-shared |
390d09f5f35246ab1d7ab95a475457205f92eb68 | js/components/developer/worker-profile-screen/index.js | js/components/developer/worker-profile-screen/index.js | import React, { Component } from 'react';
import { Container, Tab, Tabs, Text } from 'native-base';
import WorkerInfoScreen from '../worker-info-screen';
import I18n from '../../../i18n';
// @TODO Replace temporary data with data from Redux/API
const NAME = 'John Doe';
export default class WorkerProfileScreen extends... | import React, { Component } from 'react';
import { Container, Tab, Tabs } from 'native-base';
import WorkerInfoScreen from '../worker-info-screen';
import ReferenceScreen from '../reference-screen';
import I18n from '../../../i18n';
// @TODO Replace temporary data with data from Redux/API
const NAME = 'John Doe';
exp... | Add ReferenceScreen to references tab in WorkerProfileScreen | Add ReferenceScreen to references tab in WorkerProfileScreen
| JavaScript | mit | justarrived/p2p-client,justarrived/p2p-client,justarrived/p2p-client,justarrived/p2p-client |
b49c5f252d8eb3dd8e2803b3b1ebf3b3a107d740 | source/demyo-vue-frontend/src/services/publisher-service.js | source/demyo-vue-frontend/src/services/publisher-service.js | import AbstractModelService from './abstract-model-service'
import { axiosGet } from '@/helpers/axios'
/**
* API service for Publishers.
*/
class PublisherService extends AbstractModelService {
constructor() {
super('publishers/', {
fillMissingObjects: ['logo'],
sanitizeHtml: ['history']
})
}
/**
* F... | import AbstractModelService from './abstract-model-service'
import { axiosGet } from '@/helpers/axios'
/**
* API service for Publishers.
*/
class PublisherService extends AbstractModelService {
constructor() {
super('publishers/', {
fillMissingObjects: ['logo'],
sanitizeHtml: ['history']
})
}
/**
* F... | Create a method to search for a Publisher's Collections. | Create a method to search for a Publisher's Collections.
To be used in AlbumEdit.
Refs #78.
| JavaScript | agpl-3.0 | The4thLaw/demyo,The4thLaw/demyo,The4thLaw/demyo,The4thLaw/demyo |
fa1209db9af0166901f278452dc9b8c1d1d1fa5c | lib/autoload/hooks/responder/etag_304_revalidate.js | lib/autoload/hooks/responder/etag_304_revalidate.js | // Add Etag header to each http and rpc response
//
'use strict';
const crypto = require('crypto');
module.exports = function (N) {
N.wire.after([ 'responder:http', 'responder:rpc' ], { priority: 95 }, function etag_304_revalidate(env) {
if (env.status !== 200) return;
if (!env.body || typeof env.body !==... | // Add Etags, 304 responses, and force revalidate for each request
//
// - Should help with nasty cases, when quick page open use old
// assets and show errors until Ctrl+F5
// - Still good enougth for user, because 304 responses supported
//
'use strict';
const crypto = require('crypto');
module.exports = functio... | Improve cache headers and add comments | Improve cache headers and add comments
| JavaScript | mit | nodeca/nodeca.core,nodeca/nodeca.core |
ee58f2e977c884202d357a8ee5acfd567214da4f | src/app/containers/menu/Menu.js | src/app/containers/menu/Menu.js | import './Menu.css';
import React, { Component, PropTypes } from 'react';
import { connect } from 'react-redux';
import { closeMenu } from 'shared/state/app/actions';
import shallowCompare from 'react-addons-shallow-compare';
class Menu extends Component {
constructor(props) {
super(props);
this._h... | import './Menu.css';
import React, { Component, PropTypes } from 'react';
import { connect } from 'react-redux';
import { closeMenu } from 'shared/state/app/actions';
import shallowCompare from 'react-addons-shallow-compare';
class Menu extends Component {
constructor(props) {
super(props);
this._h... | Handle taps to close the menu. | Handle taps to close the menu.
| JavaScript | mit | npms-io/npms-www,npms-io/npms-www |
80e16145089eccd6841a8ad05888d28360ad3833 | build/serve.js | build/serve.js | import browserSync from 'browser-sync';
import paths from '../mconfig.json';
export const server = browserSync.create();
function serve(done) {
server.init({
notify: false,
proxy: paths.url,
host: paths.url,
open: 'external'
});
done();
}
export default serve;
| import browserSync from 'browser-sync';
import paths from '../mconfig.json';
export const server = browserSync.create();
function serve(done) {
server.init({
notify: false,
proxy: paths.url,
host: paths.url,
open: false,
ghostMode: false
});
done();
}
export defaul... | Remove browser-sync new window & ghostMode | Remove browser-sync new window & ghostMode
| JavaScript | mit | locomotivemtl/locomotive-boilerplate,locomotivemtl/locomotive-boilerplate,stephenbe/locomotive-boilerplate,stephenbe/locomotive-boilerplate,stephenbe/locomotive-boilerplate |
cd09645cc7d1abd1f4b5993b89cc3048ad65447c | src/createAppTemplate.js | src/createAppTemplate.js | const createAppTemplate = (app, template) => {
const hadClassName = !!app.className;
const quenchedClassName = `${app.className} quenched`.replace(/\bpre-quench\b/g, '');
let html = app.outerHTML
.replace(/<!--\s*<q>\s*-->[\s\S]*?<!--\s*<\/q>\s*-->/g, '')
.replace(/<!--\s*q-binding:.*?-->/g, '')
.rep... | const createAppTemplate = (app, template) => {
const quenchedClassName = `${app.className} quenched`.replace(/\bpre-quench\b/g, '');
const html = app.outerHTML
.replace(/<!--\s*<q>\s*-->[\s\S]*?<!--\s*<\/q>\s*-->/g, '')
.replace(/<!--\s*q-binding:.*?-->/g, '')
.replace(/\sq-binding=".*?\s+as\s+/g, ' q-b... | Fix apps with empty class attributes | Fix apps with empty class attributes
| JavaScript | mit | stowball/quench-vue |
a64bee572690ce186fda28a0cd98f16d5dcf9aa5 | src/lib/number_to_human.js | src/lib/number_to_human.js | const billion = 1000000000.0
const million = 1000000.0
const thousand = 1000.0
export function numberToHuman(number, showZero = true) {
if (number === 0 && !showZero) { return '' }
let num
let suffix
if (number >= billion) {
num = Math.round((number / billion) * 100.0) / 100.0
suffix = 'B'
} else if ... | const billion = 1000000000.0
const million = 1000000.0
const thousand = 1000.0
export function numberToHuman(number, showZero = true, precision = 1) {
if (number === 0 && !showZero) { return '' }
const roundingFactor = 10 ** precision
let num
let suffix
if (number >= billion) {
num = Math.round((number /... | Change the rounding precision to one decimal point | Change the rounding precision to one decimal point
| JavaScript | mit | ello/webapp,ello/webapp,ello/webapp |
c57b1eab1ed849c7d197396e64ef04dcd897af2d | index.js | index.js | module.exports = {
"env": {
"browser": true
},
"extends": [
"airbnb",
// These prettier configs are used to disable inherited rules that conflict
// with the way prettier will format code. Full info here:
// https://github.com/prettier/eslint-config-prettier
"prettier",
"prettier/flowt... | module.exports = {
"env": {
"browser": true
},
"extends": [
"airbnb",
// These prettier configs are used to disable inherited rules that conflict
// with the way prettier will format code. Full info here:
// https://github.com/prettier/eslint-config-prettier
"prettier",
"prettier/flowt... | Allow devDependencies in demos and tests | Allow devDependencies in demos and tests
| JavaScript | mit | mathspace/eslint-config-mathspace |
bd36bfa8bb390a873ecfebbb7fe380a342f54de7 | index.js | index.js | function handleVueDestruction(vue) {
document.addEventListener('turbolinks:before-render', function teardown() {
vue.$destroy();
document.removeEventListener('turbolinks:before-render', teardown);
});
}
var TurbolinksAdapter = {
beforeMount: function() {
if (this.$el.parentNode) {
handleVueDest... | function handleVueDestruction(vue) {
document.addEventListener('turbolinks:visit', function teardown() {
vue.$destroy();
document.removeEventListener('turbolinks:visit', teardown);
});
}
var TurbolinksAdapter = {
beforeMount: function() {
if (this.$el.parentNode) {
handleVueDestruction(this);
... | Use turbolinks:visit event to handle teardowns, works whether caching is enabled or not | Use turbolinks:visit event to handle teardowns, works whether caching is enabled or not
| JavaScript | mit | jeffreyguenther/vue-turbolinks |
270252a65be4e6377ff3a8f1515c2432b101e60f | app/scripts/helpers.js | app/scripts/helpers.js | define(function() {
'use strict';
/**
* @param {string} str
* @return {string}
*/
var capitalize = function(str) {
return str.substr(0, 1).toUpperCase() + str.substr(1);
};
return { capitalize };
});
| define(function() {
'use strict';
/**
* @param {string} str
* @return {string}
*/
let capitalize = function(str) {
return str.substr(0, 1).toUpperCase() + str.substr(1);
};
return { capitalize };
});
| Use `let` instead of `var` | Use `let` instead of `var`
| JavaScript | mit | loonkwil/reversi,loonkwil/reversi |
766e9a47d10710ed5649a21f0891919bb96399b2 | src/components/Message/Embed.js | src/components/Message/Embed.js | // @flow
import type { MessageThemeContext } from './types'
import React, { PureComponent } from 'react'
import styled from '../styled'
import Chat from './Chat'
import classNames from '../../utilities/classNames'
import css from './styles/Embed.css.js'
type Props = {
className?: string,
html: string,
}
type Cont... | // @flow
import type { MessageThemeContext } from './types'
import React, { PureComponent } from 'react'
import styled from '../styled'
import Chat from './Chat'
import classNames from '../../utilities/classNames'
import css from './styles/Embed.css.js'
type Props = {
className?: string,
html: string,
}
type Cont... | Add istanbul ignore. Line is tested. | Add istanbul ignore. Line is tested.
Istanbul isn't picking it up.
| JavaScript | mit | helpscout/blue,helpscout/blue,helpscout/blue |
df76de82feaa17e92979ccd28f3a74d8e59a4f1d | src/scripts/lib/server/utils/server-config/index.js | src/scripts/lib/server/utils/server-config/index.js | const Configstore = require('configstore')
const inq = require('inquirer')
const prompts = require('./setup-prompts')
module.exports = class ServerConfig {
constructor(defaults) {
this.db = new Configstore('wowser', defaults)
}
initSetup() {
return new Promise((resolve, reject) => {
console.log('... | const Configstore = require('configstore')
const inq = require('inquirer')
const pkg = require('../../../../package.json')
const prompts = require('./setup-prompts')
module.exports = class ServerConfig {
constructor(defaults) {
this.db = new Configstore(pkg.name, defaults)
}
initSetup() {
return new Pr... | Use package name from package.json as a configstore id | Use package name from package.json as a configstore id
| JavaScript | mit | wowserhq/wowser,timkurvers/wowser,eoy/wowser,wowserhq/wowser,eoy/wowser,timkurvers/wowser |
b7803e394d2bd4047e5d8fd7990a196bb06e5643 | src/content.js | src/content.js | var content = (function() {
return {
normalizeTags: function(element) {
var i, j, node, sibling;
var fragment = document.createDocumentFragment();
for (i = 0; i < element.childNodes.length; i++) {
node = element.childNodes[i];
if(!node) continue;
// skip empty tags, so... | var content = (function() {
return {
normalizeTags: function(element) {
var i, j, node, sibling;
var fragment = document.createDocumentFragment();
for (i = 0; i < element.childNodes.length; i++) {
node = element.childNodes[i];
if(!node) continue;
// skip empty tags, so... | Normalize trailing spaces as well | Normalize trailing spaces as well
This doesn't remove spaces at the end, it just converts
the last one to make it visible. I think the strategy of not
having spaces at all in the end should go in a config
option and shouldn't be a task of normalizeSpaces.
Conflicts:
src/content.js
| JavaScript | mit | nickbalestra/editable.js,upfrontIO/editable.js |
56c9ee0611428ec8db267d293d93d63f11b8021a | src/helpers/find-root.js | src/helpers/find-root.js | 'use babel'
import Path from 'path'
import {getDir, findFile} from './common'
import {CONFIG_FILE_NAME} from '../defaults'
export function findRoot(path, options) {
if (options.root !== null) {
return options.root
}
const searchPath = getDir(path.indexOf('*') === -1 ? path : options.cwd)
const configFile... | 'use babel'
import Path from 'path'
import {getDir, findFile} from './common'
import {CONFIG_FILE_NAME} from '../defaults'
import isGlob from 'is-glob'
export function findRoot(path, options) {
if (options.root !== null) {
return options.root
}
const searchPath = getDir(isGlob(path) ? options.cwd : path)
... | Use is-glob when finding root | :new: Use is-glob when finding root
| JavaScript | mit | steelbrain/UCompiler |
3ceb8ea7eede62614d665f986d7954cedab71352 | src/helpers.js | src/helpers.js | const moment = require('moment-timezone');
const chalk = require('chalk');
exports.printMessage = function (message) {
console.log(message);
};
exports.printError = function (message) {
const errorOutput = chalk`{bgRed Error} ${message}`;
console.log(errorOutput);
};
exports.convertTimezone = function (time, ... | const moment = require('moment-timezone');
const chalk = require('chalk');
exports.printMessage = function (message) {
console.log(message);
};
exports.printError = function (message) {
const errorOutput = chalk`{bgRed Error} ${message}`;
console.log(errorOutput);
};
exports.isValidTimezone = function (timezo... | Add helper with timezone validity info | Add helper with timezone validity info
| JavaScript | mit | Belar/space-cli |
3ed922da5e3c2e404f40d7896061553128a3c73b | index.js | index.js | require('./dist/dialogs.js');
require('./dist/dialogs-default-translations.js');
require('./dist/dialogs.css');
module.exports = 'dialogs.main';
| require('./dist/dialogs.js');
require('./dist/dialogs-default-translations.js');
module.exports = 'dialogs.main';
| Fix problems with importing file | Fix problems with importing file
require css file was giving unexpected error | JavaScript | mit | m-e-conroy/angular-dialog-service,m-e-conroy/angular-dialog-service |
fa6f27dabf3c50895e9f7a0703e40962b0e1056c | index.js | index.js | module.exports = function (opts={}) {
var isJsonFile = opts.filter || /\.json$/;
return function (override, transform, control) {
transform("readSource", function (source) {
const asset = this.args[0];
if (isJsonFile.test(asset.path)) {
source = `module.exports = ${source};`;
}
... | module.exports = function (opts={}) {
var isJsonFile = opts.filter || /\.json$/;
return function (override, transform, control) {
transform("readSource", function (source, args) {
const asset = args[0];
if (isJsonFile.test(asset.path)) {
source = `module.exports = ${source};`;
}
... | Update transform to accomodate more explicit transform API changes. | Update transform to accomodate more explicit transform API changes.
| JavaScript | mit | interlockjs/plugins,interlockjs/plugins |
0ef56b936013ea773b69581954c64f7eef2b2419 | index.js | index.js | var originalDataModule = require('data-module');
var gutil = require('gulp-util');
var through2 = require('through2');
var DataModuleError = gutil.PluginError.bind(null, 'gulp-data-module');
var dataModule = function dataModule (options) { 'use strict';
if (!options) options = {};
var parsing = options.parsi... | var _dataModule = require('data-module');
var gutil = require('gulp-util');
var stream = require('through2').obj;
var DataModuleError = gutil.PluginError.bind(null, 'gulp-data-module');
var dataModule = function dataModule (options) { 'use strict';
if (!options) options = {};
var parsing = options.parsing ||... | Update from wherever 0.0.3 came from | Update from wherever 0.0.3 came from
| JavaScript | mit | tomekwi/gulp-data-module |
5445265dda092ef114c92a414e7d3692cf062bc2 | index.js | index.js | /* jshint node: true */
'use strict';
const REFLECT_JS_VERSION = '0.1.59',
REFLECT_JAVASCRIPT = 'https://cdn.reflect.io/' + REFLECT_JS_VERSION +'/reflect.js',
REFLECT_CSS = 'https://cdn.reflect.io/' + REFLECT_JS_VERSION + '/reflect.css';
const HEAD = '<script src="' + REFLECT_JAVASCRIPT + '" type="text/ja... | /* jshint node: true */
'use strict';
const REFLECT_JS_VERSION = '0.1.59',
REFLECT_JAVASCRIPT = 'https://cdn.reflect.io/' + REFLECT_JS_VERSION +'/reflect.js';
const getHead = function(config) {
let cssSource;
if (config.reflect && config.reflect.css) {
cssSource = config.reflect.css;
} else {
css... | Allow user to define their own css source | Allow user to define their own css source
| JavaScript | mit | reflect/ember-cli-reflect,reflect/ember-cli-reflect |
81e0be8d31feb28a7d13ab64542f7537fea93c76 | index.js | index.js | 'use strict'
const app = require('app')
const BrowserWindow = require('browser-window')
const Menu = require('menu')
const menuTemplate = require('./menu-template.js')
require('electron-debug')()
let mainWindow = null
function onClosed () {
mainWindow = null
}
function createMainWindow () {
const win = new Brow... | 'use strict'
const app = require('app')
const BrowserWindow = require('browser-window')
const ipc = require('ipc')
const Menu = require('menu')
const menuTemplate = require('./menu-template.js')
require('electron-debug')()
let mainWindow = null
function onClosed () {
mainWindow = null
}
function createMainWindow ... | Use ipc module. Check for existence of Electron. | Use ipc module. Check for existence of Electron.
| JavaScript | mit | bloxparty/bloxparty,kvnneff/bloxparty,bloxparty/bloxparty,kvnneff/bloxparty |
91a10fccd6bcf455723fe0c4722a97dd17e19ddc | index.js | index.js | 'use strict';
var
platform = require('enyo/platform'),
dispatcher = require('enyo/dispatcher'),
gesture = require('enyo/gesture');
exports = module.exports = require('./lib/options');
exports.version = '2.6.0-pre';
// Override the default holdpulse config to account for greater delays between keydown and keyup
//... | 'use strict';
var
platform = require('enyo/platform'),
dispatcher = require('enyo/dispatcher'),
gesture = require('enyo/gesture');
exports = module.exports = require('./lib/options');
exports.version = '2.6.0-pre';
// Override the default holdpulse config to account for greater delays between keydown and keyup
//... | Increase moveTolerance value from 16 to 1500 on configureHoldPulse | ENYO-1648: Increase moveTolerance value from 16 to 1500 on configureHoldPulse
Issue:
- The onHoldPulse event is canceled too early when user move mouse abound.
Fix:
- We need higher moveTolerance value to make it stay pulse more on TV.
- Increase moveTolerance value from 16 to 1500 on configureHoldPulse by testing.
... | JavaScript | apache-2.0 | enyojs/moonstone |
81ae02b295ea2dabdc94c81c0aa5afcc8aa9b9b0 | public/app/project-list/project-featured-controller.js | public/app/project-list/project-featured-controller.js | define(function() {
var ProjectsFeaturedController = function(ProjectResource) {
this.projects = ProjectResource.list({
// Add feature tags here
'tags[]': []
})
}
ProjectsFeaturedController.$inject = ['ProjectResource']
return ProjectsFeaturedController
})
| define(function() {
var ProjectsFeaturedController = function(ProjectResource) {
this.projects = ProjectResource.list({
// Add feature tags here
'tags[]': ['noit', 'explore']
})
}
ProjectsFeaturedController.$inject = ['ProjectResource']
return ProjectsFeaturedCo... | Edit tags in featured projects controller | Edit tags in featured projects controller
| JavaScript | mit | tenevdev/idiot,tenevdev/idiot |
8ea9755b10f7ee7a6e4b06c757c8105a4237e0aa | src/swap-case.js | src/swap-case.js | import R from 'ramda';
import compose from './util/compose.js';
import join from './util/join.js';
import upperCase from './util/upper-case.js';
import lowerCase from './util/lower-case.js';
import isUpperCase from '../src/is-upper-case.js';
// a -> a
const swapCase = compose(
join(''),
R.map(
R.either(
... | import R from 'ramda';
import compose from './util/compose.js';
import join from './util/join.js';
import not from './util/not.js';
import upperCase from './util/upper-case.js';
import lowerCase from './util/lower-case.js';
import isUpperCase from '../src/is-upper-case.js';
// a -> a
const swapCase = compose(
join('... | Refactor swapCase function to use custom not function | Refactor swapCase function to use custom not function
| JavaScript | mit | restrung/restrung-js |
02d15a7a06435db9769cac4ae4dccbc756b0b8e4 | spec/async-spec-helpers.js | spec/async-spec-helpers.js | // Lifted from Atom
exports.beforeEach = function (fn) {
global.beforeEach(function () {
var result = fn()
if (result instanceof Promise) {
waitsForPromise(function () { return result })
}
})
}
exports.afterEach = function (fn) {
global.afterEach(function () {
var result = fn()
if (res... | // Lifted from Atom
exports.beforeEach = function (fn) {
global.beforeEach(function () {
var result = fn()
if (result instanceof Promise) {
waitsForPromise(function () { return result })
}
})
}
exports.afterEach = function (fn) {
global.afterEach(function () {
var result = fn()
if (res... | Make async `runs` a bit better. | Make async `runs` a bit better.
| JavaScript | mit | atom/github,atom/github,atom/github |
853a002aed8dfaf42e42918cc6d291d4744ffcee | tests/date-format.spec.js | tests/date-format.spec.js | 'use strict';
var expect = require('chai').expect;
var validator = require('../');
describe('Date validator', function () {
var simpleRules = {
birthday: ['date-format:YYYY-MM-DD']
};
var getTestObject = function () {
return {
birthday: '1993-09-02',
};
};
it('should success', function (... | 'use strict';
var expect = require('chai').expect;
var validator = require('../');
describe('Date validator', function () {
var simpleRules = {
birthday: ['date-format:YYYY-MM-DD']
};
var getTestObject = function () {
return {
birthday: '1993-09-02',
};
};
it('should success', function (... | Update test assertion on validation message | Update test assertion on validation message
| JavaScript | mit | cermati/satpam,sendyhalim/satpam |
fedf316d123fe5d6037cdbbcf24e512ea72acf38 | tuskar_ui/infrastructure/static/infrastructure/js/angular/horizon.number_picker.js | tuskar_ui/infrastructure/static/infrastructure/js/angular/horizon.number_picker.js | angular.module('horizonApp').directive('hrNumberPicker', function() {
return {
restrict: 'A',
replace: true,
scope: { initial_value: '=value' },
templateUrl: '../../static/infrastructure/angular_templates/numberpicker.html',
link: function(scope, element, attrs) {
input = element.find('input... | angular.module('horizonApp').directive('hrNumberPicker', function() {
return {
restrict: 'A',
replace: true,
scope: { initial_value: '=value' },
templateUrl: '../../static/infrastructure/angular_templates/numberpicker.html',
link: function(scope, element, attrs) {
input = element.find('input... | Add missing semicolons in js | Add missing semicolons in js
Change-Id: I1cb8d044766924e554411ce45c3c056139f19078
| JavaScript | apache-2.0 | rdo-management/tuskar-ui,rdo-management/tuskar-ui,rdo-management/tuskar-ui,rdo-management/tuskar-ui |
61909991a69685cc68625f98223337b1cdfd2770 | server/game/playattachmentaction.js | server/game/playattachmentaction.js | const BaseAbility = require('./baseability.js');
const Costs = require('./costs.js');
class PlayAttachmentAction extends BaseAbility {
constructor() {
super({
cost: [
Costs.payReduceableFateCost('play'),
Costs.playLimited()
],
target: {
... | const BaseAbility = require('./baseability.js');
const Costs = require('./costs.js');
class PlayAttachmentAction extends BaseAbility {
constructor() {
super({
cost: [
Costs.payReduceableFateCost('play'),
Costs.playLimited()
],
target: {
... | Add game message to play attachment | Add game message to play attachment
| JavaScript | mit | gryffon/ringteki,jeremylarner/ringteki,jeremylarner/ringteki,jeremylarner/ringteki,gryffon/ringteki,gryffon/ringteki |
e97915274bcbf7c202656257645884a5c3b1adcb | app/scripts/models/item.js | app/scripts/models/item.js | define([
'underscore',
'jquery',
'models/resource',
'collections/bullet',
'collections/paragraph'
], function (_, $, Resource, BulletCollection, ParagraphCollection) {
'use strict';
var ItemModel = Resource.extend({
defaults: {
name: '',
title: '',
heading: ''
},
resource: ... | define([
'underscore',
'jquery',
'models/resource',
'collections/bullet',
'collections/paragraph'
], function (_, $, Resource, BulletCollection, ParagraphCollection) {
'use strict';
var ItemModel = Resource.extend({
defaults: {
name: '',
title: '',
heading: ''
},
resource: ... | Add paragraphIds method to Item model. | Add paragraphIds method to Item model.
| JavaScript | mit | jmflannery/jackflannery.me,jmflannery/jackflannery.me,jmflannery/rez-backbone,jmflannery/rez-backbone |
abd5c2ec804e65cc621b4f82f67992b3cf1b24f8 | src/sal.js | src/sal.js | import './sal.scss';
let options = {
rootMargin: '0px',
threshold: 0,
animateClassName: 'sal-animate',
selector: '[data-sal]',
disableFor: null,
};
let elements = [];
let intersectionObserver = null;
const animate = element => (
element.classList.add(options.animateClassName)
);
const isAnimated = eleme... | import './sal.scss';
let options = {
rootMargin: '0px',
threshold: 0.5,
animateClassName: 'sal-animate',
selector: '[data-sal]',
once: true,
disableFor: null,
};
let elements = [];
let intersectionObserver = null;
const animate = element => (
element.classList.add(options.animateClassName)
);
const re... | Add once option to manage working mode. Fix threshold value. | Add once option to manage working mode. Fix threshold value.
| JavaScript | mit | mciastek/sal,mciastek/sal |
a46ff61e935bd029ddde1a6610fea27479e47777 | src/services/fetchStats.js | src/services/fetchStats.js | import fetch from 'node-fetch';
import { hashToHypen } from './formatText';
import { API_URL, HTTP_HEADERS } from '../constants';
const headers = HTTP_HEADERS;
const fetchStats = (battletag) => {
const url = `${API_URL}/${hashToHypen(battletag)}/blob`;
return fetch(encodeURI(url), { headers })
.then((respons... | import fetch from 'node-fetch';
import { hashToHypen } from './formatText';
import { API_URL, HTTP_HEADERS } from '../constants';
const headers = HTTP_HEADERS;
const fetchStats = (battletag,platform) => {
const url = `${API_URL}/${hashToHypen(battletag)}/blob?platform=${platform}`;
return fetch(encodeURI(url), {... | Add console support, p. 2 | Add console support, p. 2 | JavaScript | mit | chesterhow/overwatch-telegram-bot |
a266f3dd6007a87ae96e31f847c6768dc7e2e807 | corehq/apps/style/static/style/js/daterangepicker.config.js | corehq/apps/style/static/style/js/daterangepicker.config.js | $(function () {
'use strict';
$.fn.getDateRangeSeparator = function () {
return ' to ';
};
$.fn.createBootstrap3DateRangePicker = function(
range_labels, separator, startdate, enddate
) {
var now = moment();
var ranges = {};
ranges[range_labels.last_7_days] = ... | $(function () {
'use strict';
$.fn.getDateRangeSeparator = function () {
return ' to ';
};
$.fn.createBootstrap3DateRangePicker = function(
range_labels, separator, startdate, enddate
) {
var now = moment();
var ranges = {};
ranges[range_labels.last_7_days] = ... | Clear date range picker if no start and end date given | Clear date range picker if no start and end date given
| JavaScript | bsd-3-clause | dimagi/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq,qedsoftware/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq,dimagi/commcare-hq,qedsoftware/commcare-hq |
dfaacd1183f244f94b190084a882dc6038bfcd9e | src/lib/libraries/sound-tags.js | src/lib/libraries/sound-tags.js | export default [
{title: 'Animal'},
{title: 'Effects'},
{title: 'Loops'},
{title: 'Notes'},
{title: 'Percussion'},
{title: 'Space'},
{title: 'Sports'},
{title: 'Voice'},
{title: 'Wacky'}
];
| export default [
{title: 'Animals'},
{title: 'Effects'},
{title: 'Loops'},
{title: 'Notes'},
{title: 'Percussion'},
{title: 'Space'},
{title: 'Sports'},
{title: 'Voice'},
{title: 'Wacky'}
];
| Fix category label for sound library | Fix category label for sound library
| JavaScript | bsd-3-clause | LLK/scratch-gui,cwillisf/scratch-gui,LLK/scratch-gui,cwillisf/scratch-gui,cwillisf/scratch-gui |
b4d669c8bc71f7938475130ade97e041d847f077 | src/config.js | src/config.js |
/**
* Configuration module
*/
var path = require('path');
var fs = require('fs');
var lodash = require('lodash');
var jsonlint = require('json-lint');
var print = require('./print.js');
module.exports = {
read: read
};
var defaultConfig = {
'source': './',
'destination': ... |
/**
* Configuration module
*/
var path = require('path');
var fs = require('fs');
var lodash = require('lodash');
var jsonlint = require('json-lint');
var print = require('./print.js');
module.exports = {
read: read
};
var defaultConfig = {
'source': './',
'destination': ... | Fix additional "!" when push ignore list | Fix additional "!" when push ignore list
| JavaScript | mit | fians/situs |
14689228a91934327620537a8930a005d020ef79 | src/models/message_comparator.js | src/models/message_comparator.js | var logger = require('../utils/logger')('MessageComparator'),
Response = require('./response');
/**
* Represents a MessageComparator capable of determining whether an
* incoming message must be relayed to a module or not.
* @param {RegExp} regex Regex to which every incoming
* ... | var logger = require('../utils/logger')('MessageComparator'),
Response = require('./response');
/**
* Represents a MessageComparator capable of determining whether an
* incoming message must be relayed to a module or not.
* @param {RegExp} regex Regex to which every incoming
* ... | Add suspension capabilities to MessageComparator | Add suspension capabilities to MessageComparator
| JavaScript | mit | victorgama/Giskard,victorgama/Giskard,victorgama/Giskard |
d53ad4bf24b431086605670c73b78f743d2bb9cc | tests/Bamboo/Fixtures/episodes_recommendations.js | tests/Bamboo/Fixtures/episodes_recommendations.js | module.exports = function (creator, fixtureName) {
return creator.createFixture('/episodes/p00y1h7j/recommendations').then(function (fixture) {
fixture.save(fixtureName);
});
};
| module.exports = function (creator, fixtureName) {
return creator.createFixture('/episodes/p00y1h7j/recommendations').then(function (fixture) {
fixture.addEpisode();
fixture.save(fixtureName);
});
};
| Fix recommendations fixture for when no recomendations are returned by iBL | Fix recommendations fixture for when no recomendations are returned by iBL
| JavaScript | mit | DaMouse404/bamboo,DaMouse404/bamboo,DaMouse404/bamboo |
6a3d5e602529c7991a94ae5c9df79083bca6829c | 04-responsive/Gruntfile.js | 04-responsive/Gruntfile.js | /*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Task configuration.
watch: {
lib_test: {
files: [ 'styles/**/*.css', '*.html' ],
tasks: [],
options: {
livereload: true
}
}
}
});
// These... | /*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Task configuration.
watch: {
lib_test: {
files: [ '*.css', '*.html' ],
tasks: [],
options: {
livereload: true
}
}
}
});
// These plugins p... | Watch styles in main folder | Watch styles in main folder
| JavaScript | mit | hkdobrev/softuni-html-exam |
1f1d8af3e6e8a98113daeec8f3e554b47c876ce0 | assets/js/components/settings-notice.js | assets/js/components/settings-notice.js | /**
* Settings notice component.
*
* Site Kit by Google, Copyright 2020 Google 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
*
* https://www.apache.org/licenses/LICENSE-2.0... | /**
* Settings notice component.
*
* Site Kit by Google, Copyright 2020 Google 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
*
* https://www.apache.org/licenses/LICENSE-2.0... | Add support for suggestion style to SettingsNotice component. | Add support for suggestion style to SettingsNotice component.
| JavaScript | apache-2.0 | google/site-kit-wp,google/site-kit-wp,google/site-kit-wp,google/site-kit-wp |
a5463c4c1021009be6958c3821605e8b803edc45 | local-cli/run-packager.js | local-cli/run-packager.js | 'use strict';
var path = require('path');
var child_process = require('child_process');
module.exports = function(newWindow) {
if (newWindow) {
var launchPackagerScript =
path.resolve(__dirname, '..', 'packager', 'launchPackager.command');
if (process.platform === 'darwin') {
child_process.spawn... | 'use strict';
var path = require('path');
var child_process = require('child_process');
module.exports = function(newWindow) {
if (newWindow) {
var launchPackagerScript =
path.resolve(__dirname, '..', 'packager', 'launchPackager.command');
if (process.platform === 'darwin') {
child_process.spawn... | Fix 'react-native start' on Windows | [cli] Fix 'react-native start' on Windows
Based on https://github.com/facebook/react-native/pull/2989
Thanks @BerndWessels!
| JavaScript | bsd-3-clause | machard/react-native,Tredsite/react-native,cdlewis/react-native,myntra/react-native,ankitsinghania94/react-native,mrngoitall/react-native,hzgnpu/react-native,negativetwelve/react-native,CntChen/react-native,Maxwell2022/react-native,lprhodes/react-native,makadaw/react-native,philonpang/react-native,wesley1001/react-nati... |
c2bb3dff75eb411d13f34831259d24f5955cc04e | packages/@sanity/cli/src/commands/version/versionCommand.js | packages/@sanity/cli/src/commands/version/versionCommand.js | import promiseProps from 'promise-props-recursive'
import getLocalVersion from '../../npm-bridge/getLocalVersion'
import getGlobalSanityCliVersion from '../../util/getGlobalSanityCliVersion'
import pkg from '../../../package.json'
export default {
name: 'version',
signature: 'version',
description: 'Shows the in... | import promiseProps from 'promise-props-recursive'
import getLocalVersion from '../../npm-bridge/getLocalVersion'
import getGlobalSanityCliVersion from '../../util/getGlobalSanityCliVersion'
import pkg from '../../../package.json'
export default {
name: 'version',
signature: 'version',
description: 'Shows the in... | Return promise from version command | Return promise from version command
| JavaScript | mit | sanity-io/sanity,sanity-io/sanity,sanity-io/sanity,sanity-io/sanity |
ceb5988e1c62a500f3bd70def008e350ff066bb6 | src/mixins/reactiveProp.js | src/mixins/reactiveProp.js | module.exports = {
props: {
chartData: {
required: true
}
},
watch: {
'chartData': {
handler (newData, oldData) {
if (oldData) {
let chart = this._chart
// Get new and old DataSet Labels
let newDatasetLabels = newData.datasets.map((dataset) => {
... | module.exports = {
props: {
chartData: {
required: true
}
},
watch: {
'chartData': {
handler (newData, oldData) {
if (oldData) {
let chart = this._chart
// Get new and old DataSet Labels
let newDatasetLabels = newData.datasets.map((dataset) => {
... | Resolve reactive props animation issue. | Resolve reactive props animation issue.
A small consequence of replacing the entire dataset in the mixins files is that it causes certain charts to completely re-render even if only the 'data' attribute of a dataset is changing. In my case, I set up a reactive doughnut chart with two data points but whenever the data ... | JavaScript | mit | apertureless/vue-chartjs,apertureless/vue-chartjs,apertureless/vue-chartjs |
07312012c0b682c6dc8a13ca6afabbabd9e9957e | src/js/services/new-form.js | src/js/services/new-form.js | 'use strict';
angular.module('Teem')
.factory('NewForm', [
'$location', '$window', '$rootScope',
function($location, $window, $rootScope) {
var scope,
objectName,
scopeFn = {
isNew () {
return $location.search().form === 'new';
},
cancelNew () {
... | 'use strict';
angular.module('Teem')
.factory('NewForm', [
'$location', '$window', '$rootScope',
function($location, $window, $rootScope) {
var scope,
objectName,
scopeFn = {
isNew () {
return $location.search().form === 'new';
},
cancelNew () {
... | Fix new form confirm code | Fix new form confirm code
@atfornes please note that this code is common for the + buttons
of project and community
Fixes #249
| JavaScript | agpl-3.0 | P2Pvalue/pear2pear,P2Pvalue/teem,Grasia/teem,Grasia/teem,P2Pvalue/pear2pear,Grasia/teem,P2Pvalue/teem,P2Pvalue/teem |
216e7e7026f515d95a4c2a1f3dc4f1858d4bf4a3 | src/scripts/StationList.js | src/scripts/StationList.js | /** ngInject **/
function StationListCtrl($scope, $interval, EventBus, PvlService) {
let vm = this;
vm.imgUrls = {};
vm.nowPlaying = {};
vm.currentIndex = null;
vm.setSelected = setSelected;
var refreshDataBindings = $interval(null, 1000);
function setSelected(index) {
vm.currentIndex = index;
... | /** ngInject **/
function StationListCtrl($scope, EventBus, PvlService) {
let vm = this;
vm.imgUrls = {};
vm.nowPlaying = {};
vm.currentIndex = null;
vm.setSelected = setSelected;
function setSelected(index) {
vm.currentIndex = index;
EventBus.emit('pvl:stationSelect', vm.stations[index]);
}
... | Revert "Quick patch to constantly update currently playing song without requiring user interaction" | Revert "Quick patch to constantly update currently playing song without requiring user interaction"
| JavaScript | mit | berwyn/Ponyville-Live--Desktop-App,Poniverse/PVLive-Chrome-Desktop-App,berwyn/Ponyville-Live--Desktop-App,BravelyBlue/PVLive-Chrome-Desktop-App,berwyn/Ponyville-Live--Desktop-App,Poniverse/PVLive-Chrome-Desktop-App,BravelyBlue/PVLive-Chrome-Desktop-App |
4c758e6856af13f199660bcfc74874fe06928bff | media/js/google-search.js | media/js/google-search.js | google.load('search', '1', {style : google.loader.themes.V2_DEFAULT});
google.setOnLoadCallback(function() {
var customSearchOptions = {};
var customSearchControl = new google.search.CustomSearchControl(
'003721718359151553648:qipcq6hq6uy', customSearchOptions);
customSearchControl.setResultSetSize(... | google.load('search', '1', {style : google.loader.themes.V2_DEFAULT});
google.setOnLoadCallback(function() {
var customSearchOptions = {};
var customSearchControl = new google.search.CustomSearchControl(
'003721718359151553648:qipcq6hq6uy', customSearchOptions);
customSearchControl.setResultSetSize(... | Remove code that did not fix google search pagination issue. | Remove code that did not fix google search pagination issue.
| JavaScript | bsd-3-clause | mozilla/betafarm,mozilla/betafarm,mozilla/betafarm,mozilla/betafarm |
3bdb76d839b7f9424136e791f581cf1c473615c7 | scripts/download-win-lib.js | scripts/download-win-lib.js | var download = require('./download').download;
var path = require('path');
var fs = require('fs');
var TAR_URL = 'https://github.com/nteract/zmq-prebuilt/releases/download/win-libzmq-4.1.5-v140/libzmq-' + process.arch + '.lib';
var DIR_NAME = path.join(__dirname, '..', 'windows', 'lib');
var FILE_NAME = path.join(DIR_... | var download = require('./download').download;
var path = require('path');
var fs = require('fs');
var TAR_URL = 'https://github.com/nteract/libzmq-win/releases/download/v1.0.0/libzmq-' + process.arch + '.lib';
var DIR_NAME = path.join(__dirname, '..', 'windows', 'lib');
var FILE_NAME = path.join(DIR_NAME, 'libzmq.lib... | Store windows lib in different repo | Store windows lib in different repo
| JavaScript | mit | lgeiger/zmq-prebuilt,lgeiger/zmq-prebuilt,interpretor/zeromq.js,lgeiger/zmq-prebuilt,interpretor/zeromq.js,interpretor/zeromq.js,interpretor/zeromq.js,lgeiger/zmq-prebuilt,lgeiger/zmq-prebuilt,interpretor/zeromq.js |
89fc255726bb2073f095bfd82ba05f00b217e3e2 | src/components/OutsideClickable/OutsideClickable.js | src/components/OutsideClickable/OutsideClickable.js | /* OutsideClickable only accepts one top-level child */
import React, { Component, Children, cloneElement } from "react";
import ReactDOM from "react-dom";
import PropTypes from "prop-types";
export default class OutsideClickable extends Component {
static propTypes = {
children: PropTypes.node,
onOutsideCli... | /* OutsideClickable only accepts one top-level child */
import React, { Component, Children, cloneElement } from "react";
import ReactDOM from "react-dom";
import PropTypes from "prop-types";
export default class OutsideClickable extends Component {
static propTypes = {
children: PropTypes.node,
onOutsideCli... | Fix iOS and Android touch events | Fix iOS and Android touch events
| JavaScript | mit | tutti-ch/react-styleguide,tutti-ch/react-styleguide |
dd22023e3c6aa064b1e5881cfd7f48a2e79e894e | defaults/preferences/spamness.js | defaults/preferences/spamness.js | pref("extensions.rspamd-spamness.header", "x-spamd-result");
pref("extensions.rspamd-spamness.display.column", 0);
pref("extensions.rspamd-spamness.display.messageScore", true);
pref("extensions.rspamd-spamness.display.messageRules", true);
pref("extensions.rspamd-spamness.display.messageGreylist", true);
pref("extensi... | /* global pref:false */
/* eslint strict: ["error", "never"] */
pref("extensions.rspamd-spamness.header", "x-spamd-result");
pref("extensions.rspamd-spamness.display.column", 0);
pref("extensions.rspamd-spamness.display.messageScore", true);
pref("extensions.rspamd-spamness.display.messageRules", true);
pref("extensio... | Add ESLint config to preferences | [Chore] Add ESLint config to preferences
| JavaScript | bsd-3-clause | moisseev/spamness,moisseev/rspamd-spamness,moisseev/rspamd-spamness |
2fffa35bd7aef3a2117b1804914c9fdb13749a44 | course/object_mutations.js | course/object_mutations.js | /*
* Avoiding Object Mutations.
*
* @author: Francisco Maria Calisto
*
*/
const toggleTodo = (todo) => {
return {
id: todo.id,
text: todo.text,
completed: !todo.completed
};
};
const testToggleTodo = () => {
const todoBefore = {
id: 0,
text: 'Learn Redux'... | /*
* Avoiding Object Mutations.
*
* @author: Francisco Maria Calisto
*
*/
const toggleTodo = (todo) => {
return Object.assign({}, todo, {
completed: !todo.completed
});
};
const testToggleTodo = () => {
const todoBefore = {
id: 0,
text: 'Learn Redux',
completed: ... | Return Toggle Todo Object Assign | [UPDATE] Return Toggle Todo Object Assign
| JavaScript | mit | FMCalisto/redux-get-started,FMCalisto/redux-get-started |
ac20f325b34bc952d89d0073e036aa2f87e79388 | src/delir-core/tests/delir/plugin-registory-spec.js | src/delir-core/tests/delir/plugin-registory-spec.js | // @flow
import path from 'path';
import PluginRegistory from '../../src/services/plugin-registory'
describe('PluginRegistory', () => {
it('exporting: PluginFeatures', () => {
expect(PluginRegistory.PluginFeatures).to.not.eql(null)
expect(PluginRegistory.PluginFeatures).to.be.an('object')
})
... | // @flow
import path from 'path';
import PluginRegistory from '../../src/services/plugin-registory'
describe('PluginRegistory', () => {
it('exporting: PluginFeatures', () => {
expect(PluginRegistory.PluginFeatures).to.not.eql(null)
expect(PluginRegistory.PluginFeatures).to.be.an('object')
})
... | Fix PluginRegistry error (missing global.require) | Fix PluginRegistry error (missing global.require)
| JavaScript | mit | Ragg-/Delir,Ragg-/Delir,Ragg-/Delir,Ragg-/Delir |
f1fb384cd62dc13d0b4647c9f988f6f46cbf4b6f | src/test/run-make/wasm-export-all-symbols/verify.js | src/test/run-make/wasm-export-all-symbols/verify.js | const fs = require('fs');
const process = require('process');
const assert = require('assert');
const buffer = fs.readFileSync(process.argv[2]);
let m = new WebAssembly.Module(buffer);
let list = WebAssembly.Module.exports(m);
console.log('exports', list);
const my_exports = {};
let nexports = 0;
for (const entry of... | const fs = require('fs');
const process = require('process');
const assert = require('assert');
const buffer = fs.readFileSync(process.argv[2]);
let m = new WebAssembly.Module(buffer);
let list = WebAssembly.Module.exports(m);
console.log('exports', list);
const my_exports = {};
let nexports = 0;
for (const entry of... | Check for the entry kind | Check for the entry kind
| JavaScript | apache-2.0 | aidancully/rust,graydon/rust,aidancully/rust,aidancully/rust,graydon/rust,graydon/rust,graydon/rust,graydon/rust,aidancully/rust,aidancully/rust,aidancully/rust,graydon/rust |
beeeec389b04ae44852b3388afa760bbc7f1a3df | components/link/Link.js | components/link/Link.js | import React, { Fragment, PureComponent } from 'react';
import PropTypes from 'prop-types';
import cx from 'classnames';
import theme from './theme.css';
class Link extends PureComponent {
render() {
const { children, className, icon, iconPlacement, element, inherit, ...others } = this.props;
const classNam... | import React, { Fragment, PureComponent } from 'react';
import PropTypes from 'prop-types';
import cx from 'classnames';
import theme from './theme.css';
class Link extends PureComponent {
render() {
const { children, className, icon, iconPlacement, element, inherit, ...others } = this.props;
const classNam... | Add element to defaultProps and assign 'a' to it | Add element to defaultProps and assign 'a' to it
| JavaScript | mit | teamleadercrm/teamleader-ui |
4efc08fcf1bc7ed6b0c74b29d6c1fc7373d3c2ad | core/package.js | core/package.js | Package.describe({
name: 'svelte:core',
version: '1.40.1_1',
summary: 'Svelte compiler core',
git: 'https://github.com/meteor-svelte/meteor-svelte.git'
});
Npm.depends({
htmlparser2: '3.9.2',
'source-map': '0.5.6',
svelte: '1.40.1'
});
Package.onUse(function (api) {
api.versionsFrom('1.4.2.3');
// ... | Package.describe({
name: 'svelte:core',
version: '1.40.1_1',
summary: 'Svelte compiler core',
git: 'https://github.com/meteor-svelte/meteor-svelte.git'
});
Npm.depends({
htmlparser2: '3.9.2',
'source-map': '0.5.6',
svelte: '1.40.1'
});
Package.onUse(function (api) {
api.versionsFrom('1.4.2.3');
// ... | Use `babel-compiler` 7.x for compatibility with Meteor 1.6.1 | Use `babel-compiler` 7.x for compatibility with Meteor 1.6.1
| JavaScript | mit | meteor-svelte/meteor-svelte |
31c98ed24c50375890e579efaac52e53762c6b89 | commands/copy-assets.js | commands/copy-assets.js |
'use strict';
const path = require('path');
module.exports = (() => {
// const akasha = require('../index');
const Command = require('cmnd').Command;
class CopyAssetsCommand extends Command {
constructor() {
super('copy-assets');
}
help() {
... |
'use strict';
const path = require('path');
module.exports = (() => {
// const akasha = require('../index');
const Command = require('cmnd').Command;
class CopyAssetsCommand extends Command {
constructor() {
super('copy-assets');
}
help() {
... | Check for missing config file name | Check for missing config file name
| JavaScript | apache-2.0 | akashacms/akasharender,akashacms/akasharender,akashacms/akasharender |
8d379ebcb0ac8087fe1f4ead76722db46efc913f | test/parser.js | test/parser.js | var testCase = require('nodeunit').testCase,
parser = require('../language/parser'),
tokenizer = require('../language/tokenizer')
test('TextLiteral', '"hello world"', static("hello world"))
test('NumberLiteral', '1', static(1))
test('Declaration', 'let greeting = "hello"', {
type:'DECLARATION',
name:'greeting',
v... | var testCase = require('nodeunit').testCase,
parser = require('../language/parser'),
tokenizer = require('../language/tokenizer')
/* TESTS */
test('text literal', '"hello world"', static("hello world"))
test('number literal', '1', static(1))
test('declaration', 'let greeting = "hello"', { type:'DECLARATION', name:'g... | Make the tests more reader friendly | Make the tests more reader friendly
| JavaScript | mit | marcuswestin/fun |
f27ace3130340b9b3ca2c452d9973a5b685c207a | less-engine.js | less-engine.js | module.exports = require("less/dist/less");
| // Without these options Less will inject a `body { display: none !important; }`
var less = window.less || (window.less = {});
less.async = true;
module.exports = require("less/dist/less");
| Make less use async mode in the browser | Make less use async mode in the browser
This makes less use async mode in the browser. We were already doing
this for our less requests, but now we also set it before less executes,
otherwise it tries to do some weird display: none stuff. Fixes https://github.com/donejs/donejs/issues/1113
| JavaScript | mit | stealjs/steal-less,stealjs/steal-less |
cc417b88c26628c4c68033d40d1bbc600b19aac8 | tests/forms.js | tests/forms.js | import test from 'ava';
import plugin from '../lib/forms';
const formResponse = {
body: {
'service-name': 'Foo Service One',
'service-desciption': 'Foo service lorem ipsum description',
'service-url': 'foo@bar.com',
'id': '07b45c32-001d-4c46-a785-0025b04f7f37',
'created': '2016-05-03 20:25:14',
... | import test from 'ava';
import plugin from '../lib/forms';
const formResponse = {
body: {
'service-name': 'Foo Service One',
'service-desciption': 'Foo service lorem ipsum description',
'service-url': 'foo@bar.com',
'id': '07b45c32-001d-4c46-a785-0025b04f7f37',
'created': '2016-05-03 20:25:14',
... | Clean up old test assertions | :unamused: Clean up old test assertions
| JavaScript | apache-2.0 | scottnath/punchcard,poofichu/punchcard,scottnath/punchcard,punchcard-cms/punchcard,Snugug/punchcard,Snugug/punchcard,punchcard-cms/punchcard,poofichu/punchcard |
11e3f029e325582d106637959240f7a55e22a8e4 | lib/carcass.js | lib/carcass.js | var path = require('path');
var fs = require('fs');
var _ = require('underscore');
var debug = require('debug')('carcass:Index');
module.exports = function(obj) {
// Register every file in a dir plus a namespace.
obj.register = function(dir, namespace) {
namespace || (namespace = 'plugins');
/... | var path = require('path');
var fs = require('fs');
var _ = require('underscore');
var debug = require('debug')('carcass:Index');
var descriptor = Object.getOwnPropertyDescriptor;
var properties = Object.getOwnPropertyNames;
var defineProp = Object.defineProperty;
module.exports = function(obj) {
// Register eve... | Build a common mixin method. | Build a common mixin method.
| JavaScript | mit | Wiredcraft/carcass |
90b029782ef2e7d0ba10c005931b79b9b06f7723 | test/stores/literal-test.js | test/stores/literal-test.js | /*
* literal-test.js: Tests for the nconf literal store.
*
* (C) 2011, Charlie Robbins
*
*/
var vows = require('vows'),
assert = require('assert'),
helpers = require('../helpers'),
nconf = require('../../lib/nconf');
vows.describe('nconf/stores/literal').addBatch({
"An instance of nconf.Literal": {... | /*
* literal-test.js: Tests for the nconf literal store.
*
* (C) 2011, Charlie Robbins
*
*/
var vows = require('vows'),
assert = require('assert'),
helpers = require('../helpers'),
nconf = require('../../lib/nconf');
vows.describe('nconf/stores/literal').addBatch({
"An instance of nconf.Literal": {... | Update tests to use optional options API | [test] Update tests to use optional options API
| JavaScript | mit | olalonde/nconf,philip1986/nconf,ChristianMurphy/nconf,HansHammel/nconf,remy/nconf,bryce-gibson/nconf,imjerrybao/nconf,indexzero/nconf,NickHeiner/nconf,Dependencies/nconf |
8a677340e99b15271f6db7404f56295a2b1f6bd6 | src/socket.js | src/socket.js | import SocketIO from 'socket.io';
import { createClient } from 'redis';
import { redisUrl } from './config';
const io = SocketIO();
io.use((socket, next) => {
return next();
});
io.of('/live-chatroom')
.use((socket, next) => {
return next();
})
.on('connection', (socket) => {
const redis = createCli... | import SocketIO from 'socket.io';
import { createClient } from 'redis';
import { redisUrl } from './config';
const io = SocketIO();
io.use((socket, next) => {
return next();
});
io.of('/live-chatroom')
.use((socket, next) => {
return next();
})
.on('connection', (socket) => {
const redis = createCli... | Fix bug: if the reds subscriber quit, members who still in the room cannot receive the messages. | Fix bug: if the reds subscriber quit, members who still in the room cannot receive the messages.
| JavaScript | mit | Calvin-Huang/LiveAPIExplore-Server,Calvin-Huang/LiveAPIExplore-Server |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.