commit stringlengths 40 40 | old_file stringlengths 4 150 | new_file stringlengths 4 150 | old_contents stringlengths 0 3.26k | new_contents stringlengths 1 4.43k | subject stringlengths 15 501 | message stringlengths 15 4.06k | lang stringclasses 4
values | license stringclasses 13
values | repos stringlengths 5 91.5k | diff stringlengths 0 4.35k |
|---|---|---|---|---|---|---|---|---|---|---|
7bad2ae5ca65ef0572fa90ce46f6a20964b6e8ff | vendor/assets/javascripts/flash.js | vendor/assets/javascripts/flash.js | // refactoring from https://github.com/leonid-shevtsov/cacheable-flash-jquery
var Flash = new Object();
Flash.data = {};
Flash.transferFromCookies = function() {
var data = JSON.parse(unescape($.cookie("flash")));
if(!data) data = {};
Flash.data = data;
$.cookie('flash',null, {path: '/'});
};
Flash.writeData... | // refactoring from https://github.com/leonid-shevtsov/cacheable-flash-jquery
var Flash = new Object();
Flash.data = {};
Flash.transferFromCookies = function() {
var data = JSON.parse(unescape($.cookie("flash")));
if(!data) data = {};
Flash.data = data;
$.cookie('flash',null, {path: '/'});
};
Flash.writeData... | Add callback argument to Flash.writeDataTo() | Add callback argument to Flash.writeDataTo() | JavaScript | mit | khoan/cacheable-flash,nickurban/cacheable-flash,ndreckshage/cacheable-flash,efigence/cacheable-flash,ekampp/cacheable-flash,pivotal/cacheable-flash,nickurban/cacheable-flash,ekampp/cacheable-flash,pedrocarrico/cacheable-flash,wandenberg/cacheable-flash,pivotal/cacheable-flash,pboling/cacheable-flash,khoan/cacheable-fla... | ---
+++
@@ -10,12 +10,16 @@
$.cookie('flash',null, {path: '/'});
};
-Flash.writeDataTo = function(name, element) {
+Flash.writeDataTo = function(name, element, callback) {
element = $(element);
var content = "";
if (Flash.data[name]) {
message = Flash.data[name].toString().replace(/\+/g, ' ');
... |
32c16f42c6198803de75354cf29538c89ea060a1 | app/services/data/get-team-caseload.js | app/services/data/get-team-caseload.js | const config = require('../../../knexfile').web
const knex = require('knex')(config)
module.exports = function (id, type) {
var table = 'team_caseload_overview'
var whereObject = {}
if (id !== undefined) {
whereObject.id = id
}
return knex(table)
.where(whereObject)
.select('name',
'g... | const config = require('../../../knexfile').web
const knex = require('knex')(config)
module.exports = function (id) {
var table = 'team_caseload_overview'
var whereObject = {}
if (id !== undefined) {
whereObject.id = id
}
return knex(table)
.where(whereObject)
.select('name',
'grade_c... | Remove the type field as its not required. | 784: Remove the type field as its not required.
| JavaScript | mit | ministryofjustice/wmt-web,ministryofjustice/wmt-web | ---
+++
@@ -1,6 +1,6 @@
const config = require('../../../knexfile').web
const knex = require('knex')(config)
-module.exports = function (id, type) {
+module.exports = function (id) {
var table = 'team_caseload_overview'
var whereObject = {}
if (id !== undefined) { |
20905777baa711def48620d16507222b9ef50761 | concepts/frame-list/main.js | concepts/frame-list/main.js | var mercury = require("mercury")
var frameList = require("./views/frame-list")
var frameEditor = require("./views/frame-editor")
var frameData = require("./data/frames")
// Load the data
var initialFrameData = frameData.load()
var frames = mercury.hash(initialFrameData)
// When the data changes, save it
frames(frameD... | var mercury = require("mercury")
var frameList = require("./views/frame-list")
var frameEditor = require("./views/frame-editor")
var frameData = require("./data/frames")
// Load the data
var initialFrameData = frameData.load()
// Create the default view using the frame set
var frameListEditor = frameList(frames)
va... | Consolidate the two pieces of state into a single atom | Consolidate the two pieces of state into a single atom
This helps readability of the code by knowing there is only one
variable that contains the state and only one variable that
can be mutated.
This means if you refactor the code into multiple files you
only have to pass this one variable into the functions
... | JavaScript | mit | Raynos/mercury,eriser/mercury,staltz/mercury,staltz/mercury,eightyeight/mercury,beni55/mercury,mpal9000/mercury,jxson/mercury,vlad-x/mercury,martintietz/mercury,tommymessbauer/mercury | ---
+++
@@ -6,21 +6,21 @@
// Load the data
var initialFrameData = frameData.load()
-var frames = mercury.hash(initialFrameData)
-// When the data changes, save it
-frames(frameData.save)
// Create the default view using the frame set
var frameListEditor = frameList(frames)
var state = mercury.hash({
- f... |
5d9441a2eabc8206c3fcca0728bd218d40ed1e0f | Data/Events.js | Data/Events.js | export default [
{
day: 20,
month: 7,
year: 2017,
date: '20 Julho 2017',
location: 'Fundação Calouste Gulbenkian, Lisboa',
name: 'Concerto pela Orquestra Gulbenkian, Dia do Fundador',
description:'A Orquestra Gulbenkian, dirigida por José Eduardo Gomes, com os solistas Agostinho Sequeira (... | export default [
{
day: 20,
month: 7,
year: 2017,
date: '20 Julho 2017',
location: 'Fundação Calouste Gulbenkian, Lisboa',
name: 'Concerto pela Orquestra Gulbenkian, Dia do Fundador',
description: 'A Orquestra Gulbenkian, dirigida por José Eduardo Gomes, com os solistas Agostinho Sequeira ... | Fix data object on event data | Fix data object on event data
| JavaScript | mit | joaojusto/jose-gomes-landing-page | ---
+++
@@ -6,5 +6,6 @@
date: '20 Julho 2017',
location: 'Fundação Calouste Gulbenkian, Lisboa',
name: 'Concerto pela Orquestra Gulbenkian, Dia do Fundador',
- description:'A Orquestra Gulbenkian, dirigida por José Eduardo Gomes, com os solistas Agostinho Sequeira (percussão) e Haïg Sarikouyoumdjian... |
3c4d2080e1602fbeafcfbc71befbb591a186b2b1 | webserver/static/js/main.js | webserver/static/js/main.js | console.log("Hello Console!");
host = window.location.host.split(":")[0];
console.log(host);
var conn;
$(document).ready(function () {
conn = new WebSocket("ws://"+host+":8888/ws");
conn.onclose = function(evt) {
console.log("connection closed");
}
conn.onmessage = function(evt) {
consol... | console.log("Hello Console!");
host = window.location.host.split(":")[0];
console.log(host);
var conn;
$(document).ready(function () {
initializePacketHandlers();
conn = new WebSocket("ws://"+host+":8888/ws");
conn.onclose = function(evt) {
console.log("connection closed");
}
conn.onmessage... | Expand the JS code a bit to prepare for networking code | Expand the JS code a bit to prepare for networking code
| JavaScript | mit | quintenpalmer/attempt,quintenpalmer/attempt,quintenpalmer/attempt,quintenpalmer/attempt | ---
+++
@@ -3,21 +3,48 @@
console.log(host);
var conn;
$(document).ready(function () {
+ initializePacketHandlers();
+
conn = new WebSocket("ws://"+host+":8888/ws");
conn.onclose = function(evt) {
console.log("connection closed");
}
conn.onmessage = function(evt) {
console.... |
43f89d6a8a19f87d57ee74b30b7f0e664a958a2f | tests/integration/components/canvas-block-filter/component-test.js | tests/integration/components/canvas-block-filter/component-test.js | import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('canvas-block-filter',
'Integration | Component | canvas block filter', {
integration: true
});
test('it renders', function(assert) {
// Set any properties with this.set('myP... | import { moduleForComponent, test } from 'ember-qunit';
import Ember from 'ember';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('canvas-block-filter',
'Integration | Component | canvas block filter', {
integration: true
});
test('it binds a filter term', function(assert) {
t... | Add meaningful tests to canvas-block-filter | Add meaningful tests to canvas-block-filter
| JavaScript | apache-2.0 | usecanvas/web-v2,usecanvas/web-v2,usecanvas/web-v2 | ---
+++
@@ -1,4 +1,5 @@
import { moduleForComponent, test } from 'ember-qunit';
+import Ember from 'ember';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('canvas-block-filter',
@@ -6,9 +7,26 @@
integration: true
});
-test('it renders', function(assert) {
- // Set any properties with thi... |
9552b9842af3f5335cdcca132e37fbde591c41a4 | src/js/services/tracker.js | src/js/services/tracker.js | /**
* Event tracker (analytics)
*/
var module = angular.module('tracker', []);
module.factory('rpTracker', ['$rootScope', function ($scope) {
var track = function (event,properties) {
if (Options.mixpanel && Options.mixpanel.track && mixpanel) {
mixpanel.track(event,properties);
}
};
return {
... | /**
* Event tracker (analytics)
*/
var module = angular.module('tracker', []);
module.factory('rpTracker', ['$rootScope', function ($scope) {
var track = function (event,properties) {
if (Options.mixpanel && Options.mixpanel.track && window.mixpanel) {
mixpanel.track(event,properties);
}
};
ret... | Fix test failures due to missing mixpanel JS | [TEST] Fix test failures due to missing mixpanel JS
| JavaScript | isc | Madsn/ripple-client,arturomc/ripple-client,darkdarkdragon/ripple-client-desktop,darkdarkdragon/ripple-client,xdv/ripple-client,mrajvanshy/ripple-client-desktop,h0vhannes/ripple-client,xdv/ripple-client,yongsoo/ripple-client-desktop,darkdarkdragon/ripple-client-desktop,mrajvanshy/ripple-client,h0vhannes/ripple-client,wa... | ---
+++
@@ -6,7 +6,7 @@
module.factory('rpTracker', ['$rootScope', function ($scope) {
var track = function (event,properties) {
- if (Options.mixpanel && Options.mixpanel.track && mixpanel) {
+ if (Options.mixpanel && Options.mixpanel.track && window.mixpanel) {
mixpanel.track(event,properties);
... |
e9b97e39609d9b592e8c8af0cc00e036d6326cc1 | src/lib/listener/onFile.js | src/lib/listener/onFile.js | import {Readable} from "stream"
import File from "lib/File"
import getFieldPath from "lib/util/getFieldPath"
const onFile = (options, cb) => (fieldname, stream, filename, enc, mime) => {
try {
const path = getFieldPath(fieldname)
const contents = new Readable({
read() { /* noop */ }
})
const... | import {Readable} from "stream"
import File from "lib/File"
import getFieldPath from "lib/util/getFieldPath"
const onFile = (options, cb) => (fieldname, stream, filename, enc, mime) => {
try {
const path = getFieldPath(fieldname)
const contents = new Readable({
read() { /* noop */ }
})
const... | Add an error event listener for FileStream. | Add an error event listener for FileStream.
| JavaScript | mit | octet-stream/then-busboy,octet-stream/then-busboy | ---
+++
@@ -24,6 +24,7 @@
}
stream
+ .on("error", cb)
.on("data", onData)
.on("end", onEnd)
} catch (err) { |
e902c3b71a0ff79ebcb2424098197604d40ed21b | web_external/js/views/body/JobsPanel.js | web_external/js/views/body/JobsPanel.js | minerva.views.JobsPanel = minerva.View.extend({
initialize: function () {
var columnEnum = girder.views.jobs_JobListWidget.prototype.columnEnum;
var columns = columnEnum.COLUMN_STATUS_ICON |
columnEnum.COLUMN_TITLE;
this.jobListWidget = new girder.views.jobs_JobListWid... | minerva.views.JobsPanel = minerva.View.extend({
initialize: function () {
var columnEnum = girder.views.jobs_JobListWidget.prototype.columnEnum;
var columns = columnEnum.COLUMN_STATUS_ICON |
columnEnum.COLUMN_TITLE;
this.jobListWidget = new girder.views.jobs_JobListWid... | Update job when job detail clicked | Update job when job detail clicked
| JavaScript | apache-2.0 | Kitware/minerva,Kitware/minerva,Kitware/minerva | ---
+++
@@ -12,20 +12,16 @@
triggerJobClick: true,
parentView: this
}).on('g:jobClicked', function (job) {
- // TODO right way to update specific job?
- // otherwise can get a detail that is out of sync with actual job status
- // seems weird to upda... |
fb73e6394654a38439387994556680215a93c0b3 | addon/components/page-pagination.js | addon/components/page-pagination.js | import Ember from 'ember';
import layout from '../templates/components/page-pagination';
export default Ember.Component.extend({
layout: layout,
keys: ['first', 'prev', 'next', 'last'],
sortedLinks: Ember.computed('keys', 'links', function() {
var result = {};
this.get('keys').map( (key) => {
resul... | import Ember from 'ember';
import layout from '../templates/components/page-pagination';
export default Ember.Component.extend({
layout: layout,
keys: ['first', 'prev', 'next', 'last'],
sortedLinks: Ember.computed('keys', 'links', function() {
var result = {};
this.get('keys').map( (key) => {
resul... | Fix unsensible default for page size | Fix unsensible default for page size
| JavaScript | mit | mu-semtech/ember-data-table,erikap/ember-data-table,erikap/ember-data-table,mu-semtech/ember-data-table | ---
+++
@@ -16,7 +16,7 @@
actions: {
changePage(link) {
this.set('page', link['number'] || 0);
- this.set('size', link['size'] || 0);
+ if (link['size']) { this.set('size', link['size']); }
}
}
}); |
ff552ff6677bbc93ab7a750184dfd79109c1a837 | src/mock-get-user-media.js | src/mock-get-user-media.js |
// Takes a mockOnStreamAvailable function which when given a webrtcstream returns a new stream
// to replace it with.
module.exports = function mockGetUserMedia(mockOnStreamAvailable) {
let oldGetUserMedia;
if (navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia) {
oldGetUserMed... | // Takes a mockOnStreamAvailable function which when given a webrtcstream returns a new stream
// to replace it with.
module.exports = function mockGetUserMedia(mockOnStreamAvailable) {
let oldGetUserMedia;
if (navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia) {
oldGetUserMedi... | Add MediaDevices support for mock getUserMedia | Add MediaDevices support for mock getUserMedia
Signed-off-by: Kaustav Das Modak <ba1ce5b1e09413a89404909d8d270942c5dadd14@yahoo.co.in>
| JavaScript | mit | aullman/opentok-camera-filters,aullman/opentok-camera-filters | ---
+++
@@ -1,4 +1,3 @@
-
// Takes a mockOnStreamAvailable function which when given a webrtcstream returns a new stream
// to replace it with.
module.exports = function mockGetUserMedia(mockOnStreamAvailable) {
@@ -8,12 +7,25 @@
navigator.mozGetUserMedia;
navigator.webkitGetUserMedia = navigator.getUs... |
2ecfcc3c05a3bdda467113b00748c32b3fb4db25 | tests/backstop/detect-target-host.js | tests/backstop/detect-target-host.js | // Linux machines should use Docker's default gateway IP address to connect to.
let hostname = '172.17.0.2';
// On MacOS and Windows, `host.docker.internal` is available to point to the
// host and run backstopjs against.
// If the hostname arg is set, then we're inside the container and this should take precedence.
... | // Linux machines should use Docker's default gateway IP address to connect to.
let hostname = '172.17.0.1';
// On MacOS and Windows, `host.docker.internal` is available to point to the
// host and run backstopjs against.
// If the hostname arg is set, then we're inside the container and this should take precedence.
... | Fix default host IP for docker. | Fix default host IP for docker.
| JavaScript | apache-2.0 | google/site-kit-wp,google/site-kit-wp,google/site-kit-wp,google/site-kit-wp | ---
+++
@@ -1,5 +1,5 @@
// Linux machines should use Docker's default gateway IP address to connect to.
-let hostname = '172.17.0.2';
+let hostname = '172.17.0.1';
// On MacOS and Windows, `host.docker.internal` is available to point to the
// host and run backstopjs against. |
fac9a134cafcecd5b2ef52d4c1a99123f9df0ff9 | app/scripts/configs/modes/portal.js | app/scripts/configs/modes/portal.js | 'use strict';
angular.module('ncsaas')
.constant('MODE', {
modeName: 'modePortal',
toBeFeatures: [
'localSignup',
'localSignin',
'team',
'monitoring',
'backups',
'templates',
'sizing',
'projectGroups'
],
featuresVisible: false,
comingFeatures: [
... | 'use strict';
angular.module('ncsaas')
.constant('MODE', {
modeName: 'modePortal',
toBeFeatures: [
'localSignup',
'localSignin',
'password',
'team',
'monitoring',
'backups',
'templates',
'sizing',
'projectGroups',
'apps',
'premiumSupport'
... | Disable Azure, Gitlab, Application, Support providers (SAAS-1329) | Disable Azure, Gitlab, Application, Support providers (SAAS-1329)
| JavaScript | mit | opennode/waldur-homeport,opennode/waldur-homeport,opennode/waldur-homeport,opennode/waldur-homeport | ---
+++
@@ -6,15 +6,35 @@
toBeFeatures: [
'localSignup',
'localSignin',
+ 'password',
'team',
'monitoring',
'backups',
'templates',
'sizing',
- 'projectGroups'
+ 'projectGroups',
+ 'apps',
+ 'premiumSupport'
],
featuresVisible: f... |
3a5424c8966c899461191654e8b1de3e99dd2914 | mezzanine/core/media/js/collapse_inline.js | mezzanine/core/media/js/collapse_inline.js |
$(function() {
var grappelli = !!$('#bookmarks');
var parentSelector = grappelli ? 'div.items' : 'tbody';
// Hide the exta inlines.
$(parentSelector + ' > *:not(.has_original)').hide();
// Re-show inlines with errors, poetentially hidden by previous line.
var errors = $(parentSelector + ' ul[... |
$(function() {
var grappelli = !!$('#bookmarks');
var parentSelector = grappelli ? 'div.items' : 'tbody';
// Hide the exta inlines.
$(parentSelector + ' > *:not(.has_original)').hide();
// Re-show inlines with errors, poetentially hidden by previous line.
var errors = $(parentSelector + ' ul[... | Make class name unique for dynamic inlines. | Make class name unique for dynamic inlines.
| JavaScript | bsd-2-clause | dustinrb/mezzanine,tuxinhang1989/mezzanine,ZeroXn/mezzanine,scarcry/snm-mezzanine,nikolas/mezzanine,biomassives/mezzanine,gradel/mezzanine,adrian-the-git/mezzanine,damnfine/mezzanine,wbtuomela/mezzanine,guibernardino/mezzanine,wbtuomela/mezzanine,Cicero-Zhao/mezzanine,molokov/mezzanine,PegasusWang/mezzanine,cccs-web/me... | ---
+++
@@ -18,8 +18,9 @@
if (!grappelli) {
parent = parent.parent();
}
- parent.append('<p class="add-another"><a href="#">Add another</a></p>');
- $('.add-another').click(function() {
+ parent.append('<p class="add-another add-another-inline">' +
+ '<a href="#">Add another</a></p>... |
94d2f1a72a525e0a36cd247b299150a87445d2e4 | lib/nrouter/common.js | lib/nrouter/common.js | 'use strict';
var Common = module.exports = {};
// iterates through all object keys-value pairs calling iterator on each one
// example: $$.each(objOrArr, function (val, key) { /* ... */ });
Common.each = function each(obj, iterator, context) {
var keys, i, l;
if (null === obj || undefined === obj) {
retur... | 'use strict';
var Common = module.exports = {};
// iterates through all object keys-value pairs calling iterator on each one
// example: $$.each(objOrArr, function (val, key) { /* ... */ });
Common.each = function each(obj, iterator, context) {
var keys, i, l;
if (null === obj || undefined === obj) {
retur... | Remove forEach fallback in Common.each | Remove forEach fallback in Common.each
| JavaScript | mit | nodeca/pointer | ---
+++
@@ -14,16 +14,13 @@
}
context = context || iterator;
+ keys = Object.getOwnPropertyNames(obj);
- if (Array.prototype.forEach && obj.forEach === Array.prototype.forEach) {
- obj.forEach(iterator, context);
- } else {
- keys = Object.getOwnPropertyNames(obj);
- for (i = 0, l = keys.length;... |
c6578b2bb3652c65bcc5b0342efefde11aad034e | app.js | app.js | $(function(){
var yourSound = new Audio('notification.ogg');
yourSound.loop = true;
$('.start button').click(function(ev){
$('.start').toggleClass('hidden');
$(".example").TimeCircles({
"animation": "ticks",
"count_past_zero": false,
"circle_bg_color": "#f... | $(function(){
var yourSound = new Audio('notification.ogg');
yourSound.loop = true;
$('.start button').click(function(ev){
$('.start').toggleClass('hidden');
$('.stop').toggleClass('hidden');
$(".example").TimeCircles({
"animation": "ticks",
"count_past_zero":... | Stop button always visible when clock is running | Stop button always visible when clock is running
| JavaScript | mit | dplesca/getup | ---
+++
@@ -3,6 +3,7 @@
yourSound.loop = true;
$('.start button').click(function(ev){
$('.start').toggleClass('hidden');
+ $('.stop').toggleClass('hidden');
$(".example").TimeCircles({
"animation": "ticks",
"count_past_zero": false,
@@ -24,7 +25,6 @@
... |
32383c5d18a74120da107a708abfee60a601bb27 | app/scripts/main.js | app/scripts/main.js | 'use strict';
// Toogle asset images - zome in and out
$(function() {
var Snackbar = window.Snackbar;
Snackbar.init();
var AssetPage = window.AssetPage;
AssetPage.init();
// We only want zooming on asset's primary images.
$('.asset .zoomable').click(function() {
var $thisRow = $(this).closest('.imag... | 'use strict';
// Toogle asset images - zome in and out
$(function() {
var Snackbar = window.Snackbar;
Snackbar.init();
var AssetPage = window.AssetPage;
AssetPage.init();
// We only want zooming on asset's primary images.
$('.asset .zoomable').click(function() {
var $thisRow = $(this).closest('.imag... | Fix bug in dropdowns, where they didn’t disappear correctly | Fix bug in dropdowns, where they didn’t disappear correctly | JavaScript | mit | CopenhagenCityArchives/kbh-billeder,CopenhagenCityArchives/kbh-billeder,CopenhagenCityArchives/kbh-billeder | ---
+++
@@ -31,11 +31,15 @@
$('.dropdown__selected').on('click', function() {
var $this = $(this);
+ $('body').off('click', hideAllDropdowns);
+
+ $('.dropdown').removeClass('dropdown--active');
var $dropdown = $this.closest('.dropdown');
if ($dropdown.hasClass('dropdown--active') === false)... |
e7ed223545ffa3fea6d996eb2920908275a69cc9 | cli.js | cli.js | #!/usr/bin/env node
'use strict';
const fs = require('fs');
const minimist = require('minimist');
const pkg = require('./package.json');
const oust = require('.');
const argv = minimist(process.argv.slice(2));
function printHelp() {
console.log([
pkg.description,
'',
'Usage',
' ... | #!/usr/bin/env node
'use strict';
const fs = require('fs');
const minimist = require('minimist');
const pkg = require('./package.json');
const oust = require('.');
const argv = minimist(process.argv.slice(2));
function printHelp() {
console.log(`
${pkg.description}
Usage:
$ oust <filename> <type>
Example:
... | Switch to template literals for the help screen. | Switch to template literals for the help screen.
| JavaScript | apache-2.0 | addyosmani/oust,addyosmani/oust | ---
+++
@@ -10,15 +10,14 @@
const argv = minimist(process.argv.slice(2));
function printHelp() {
- console.log([
- pkg.description,
- '',
- 'Usage',
- ' $ oust <filename> <type>',
- '',
- 'Example',
- ' $ oust index.html scripts'
- ].join('\n'));
+ conso... |
421230533c619e98a5dca0ce8374b176bdc10663 | git.js | git.js | var exec = require('child_process').exec;
var temp = require('temp');
var fs = fs = require('fs');
var log = require('./logger');
exports.head = function (path, callback) {
exec('git --git-dir=' + path + ".git log -1 --pretty=format:'%H%n%an <%ae>%n%ad%n%s%n'", function(error, stdout, stderr) {
var str = stdout.s... | var exec = require('child_process').exec;
var temp = require('temp');
var fs = fs = require('fs');
var log = require('./logger');
exports.head = function (path, callback) {
exec('git --git-dir=' + path + ".git log -1 --pretty=format:'%H%n%an <%ae>%n%ad%n%s%n'", function(error, stdout, stderr) {
var str = stdout.s... | Fix path to commit.sh script | Fix path to commit.sh script
It should be relative to __dirname, not to cwd()
| JavaScript | mit | finik/bombastic,finik/bombastic,finik/bombastic | ---
+++
@@ -26,7 +26,7 @@
log.debug('Write commit message into temporary file ' + info.path);
fs.write(info.fd, message);
fs.close(info.fd, function(err) {
- var command = ['./scripts/commit.sh ',
+ var command = [__dirname + '/scripts/commit.sh ',
path,
' "',
author.name, |
88305e481396644d88a08605ba786bd1dce35af6 | src/scripts/json-minify.js | src/scripts/json-minify.js | function minifyJson(data) {
return JSON.stringify(JSON.parse(data));
}
export function minifyJsonFile(readFileFn, fileName) {
return minifyJson(readFileFn(fileName));
} | export function minifyJsonFile(readFileFn, fileName) {
const minifyJson = new MinifyJson(readFileFn);
return minifyJson.fromFile(fileName);
}
class MinifyJson {
constructor(readFileFunction) {
this.readFileFunction = readFileFunction;
}
fromFile(fileName) {
const fileContent = this.readFileFunc... | Refactor it out into a class. | Refactor it out into a class. | JavaScript | mit | cosmowiki/cosmowiki,cosmowiki/cosmowiki,cosmowiki/cosmowiki,cosmowiki/cosmowiki | ---
+++
@@ -1,7 +1,21 @@
-function minifyJson(data) {
- return JSON.stringify(JSON.parse(data));
+export function minifyJsonFile(readFileFn, fileName) {
+ const minifyJson = new MinifyJson(readFileFn);
+ return minifyJson.fromFile(fileName);
}
-export function minifyJsonFile(readFileFn, fileName) {
- return mi... |
084a1d1d7139d96540648a9938749a9d36d2efa4 | desktop/src/lib/database.js | desktop/src/lib/database.js | /* eslint-env browser */
const fs = window.require('fs');
const fetchInitialState = () => {
const data = fs.readFileSync('.config/db', 'utf-8');
if (data) {
return JSON.parse(data);
}
return {};
};
const update = (state) => {
fs.writeFileSync('.config/db', JSON.stringify(state), 'utf-8');
};
export { ... | /* eslint-env browser */
const fs = window.require('fs');
const fetchInitialState = () => {
let data = fs.readFileSync('.config/db', 'utf-8');
if (data) {
data = JSON.parse(data);
return {
tasks: {
past: [],
present: data.tasks,
future: [],
history: [],
},
... | Fix minor issue about making redux-undo state permanent | Fix minor issue about making redux-undo state permanent
| JavaScript | mit | mkermani144/wanna,mkermani144/wanna | ---
+++
@@ -3,14 +3,33 @@
const fs = window.require('fs');
const fetchInitialState = () => {
- const data = fs.readFileSync('.config/db', 'utf-8');
+ let data = fs.readFileSync('.config/db', 'utf-8');
if (data) {
- return JSON.parse(data);
+ data = JSON.parse(data);
+ return {
+ tasks: {
+ ... |
f5128b1e6c2581a5a1b33977914a23195ac4ad3d | scripts/entry.js | scripts/entry.js | #!/usr/bin/env node
import childProcess from 'child_process';
import fs from 'fs-extra';
import moment from 'moment';
const today = new Date();
const path = `pages/posts/${moment(today).format('YYYY-MM-DD')}.md`;
/**
* Set Weekdays Locale
*/
moment.locale('jp', {weekdays: ['日', '月', '火', '水', '木', '金', '土']});
/**... | #!/usr/bin/env node
import childProcess from 'child_process';
import fs from 'fs-extra';
import moment from 'moment';
const today = new Date();
const path = `pages/posts/${moment(today).format('YYYY-MM-DD')}.md`;
/**
* Set Weekdays Locale
*/
moment.locale('jp', {weekdays: ['日', '月', '火', '水', '木', '金', '土']});
/**... | Fix fs-extra breaking change :bread: | fix(scripts): Fix fs-extra breaking change :bread:
| JavaScript | mit | ideyuta/sofar | ---
+++
@@ -33,8 +33,7 @@
*/
fs.open(path, 'r+', err => {
if (err) {
- const ws = fs.createOutputStream(path);
- ws.write(getPostTmp());
+ fs.outputFile(path, getPostTmp());
}
childProcess.spawn('vim', [path], {stdio: 'inherit'});
}); |
80a6031cae11d28b7056ae9178e5f7d4ec9cea62 | server/config.js | server/config.js | // Copyright © 2013-2014 Esko Luontola <www.orfjackal.net>
// This software is released under the Apache License 2.0.
// The license text is at http://www.apache.org/licenses/LICENSE-2.0
'use strict';
var SECOND = 1000;
var MINUTE = 60 * SECOND;
var HOUR = 60 * MINUTE;
var DAY = 24 * HOUR;
var config = {
port: p... | // Copyright © 2013-2014 Esko Luontola <www.orfjackal.net>
// This software is released under the Apache License 2.0.
// The license text is at http://www.apache.org/licenses/LICENSE-2.0
'use strict';
var SECOND = 1000;
var MINUTE = 60 * SECOND;
var HOUR = 60 * MINUTE;
var DAY = 24 * HOUR;
var config = {
port: p... | Reduce default sampling period to make testing easier | Reduce default sampling period to make testing easier
| JavaScript | apache-2.0 | orfjackal/pa-mentor,orfjackal/pa-mentor,orfjackal/pa-mentor | ---
+++
@@ -14,7 +14,7 @@
dbUri: process.env.PA_MENTOR_DB_URI || 'mongodb://localhost:27017/pa-mentor-test',
updateInterval: Math.max(SECOND, process.env.PA_MENTOR_UPDATE_INTERVAL || HOUR),
retryInterval: Math.max(SECOND, process.env.PA_MENTOR_RETRY_INTERVAL || MINUTE),
- samplingPeriod: Math.max(SE... |
ba5f567a44a5d7325f894c42e48f696f6925907b | routes/user/index.js | routes/user/index.js | "use strict";
var db = require('../../models');
var config = require('../../config.js');
var authHelper = require('../../lib/auth-helper');
module.exports = function (app, options) {
app.get('/user/tokens', authHelper.ensureAuthenticated, function(req, res, next) {
db.ServiceAccessToken
.findA... | "use strict";
var config = require('../../config');
var db = require('../../models');
var authHelper = require('../../lib/auth-helper');
module.exports = function (app, options) {
app.get('/user/tokens', authHelper.ensureAuthenticated, function(req, res, next) {
db.ServiceAccessToken
.findAll(... | Remove .js extension in require() | Remove .js extension in require()
| JavaScript | bsd-3-clause | ebu/cpa-auth-provider | ---
+++
@@ -1,7 +1,7 @@
"use strict";
+var config = require('../../config');
var db = require('../../models');
-var config = require('../../config.js');
var authHelper = require('../../lib/auth-helper');
module.exports = function (app, options) { |
7788c984c07d81af3f819a93dac8f663f93063b8 | src/clincoded/static/libs/render_variant_title_explanation.js | src/clincoded/static/libs/render_variant_title_explanation.js | 'use strict';
import React from 'react';
import { ContextualHelp } from './bootstrap/contextual_help';
/**
* Method to render a mouseover explanation for the variant title
*/
export function renderVariantTitleExplanation() {
const explanation = 'The transcript with the longest translation with no stop codons. If... | 'use strict';
import React from 'react';
import { ContextualHelp } from './bootstrap/contextual_help';
/**
* Method to render a mouseover explanation for the variant title
*/
export function renderVariantTitleExplanation() {
const explanation = 'For ClinVar alleles, this represents the ClinVar Preferred Title. F... | Update variant title explanation text | Update variant title explanation text
| JavaScript | mit | ClinGen/clincoded,ClinGen/clincoded,ClinGen/clincoded,ClinGen/clincoded,ClinGen/clincoded | ---
+++
@@ -6,7 +6,7 @@
* Method to render a mouseover explanation for the variant title
*/
export function renderVariantTitleExplanation() {
- const explanation = 'The transcript with the longest translation with no stop codons. If no translation, then the longest non-protein-coding transcript.';
+ const ... |
00c45bc2e33b6c1236d87c6572cfee3610410bb5 | server/fake-users.js | server/fake-users.js | var faker = require('faker');
var _ = require('lodash');
/**
* Generate a list of random users.
* @return {Array<{
* name: string,
* email: string,
* phone: string
* }>}
*/
var getUsers = function() {
return _.times(3).map(function() {
return {
name: faker.name.findName(),
email: faker.i... | var faker = require('faker');
var _ = require('lodash');
/**
* Generate a list of random users.
* @return {Array<{
* name: string,
* email: string,
* phone: string
* }>}
*/
var getUsers = function() {
var chuckNorris = {
name: 'Chuck Norris',
email: 'chuck@gmail.com',
phone: '212-555-1234'
... | Add chuck norris and rambo | Add chuck norris and rambo
| JavaScript | mit | andresdominguez/protractor-codelab,andresdominguez/protractor-codelab | ---
+++
@@ -10,13 +10,34 @@
* }>}
*/
var getUsers = function() {
- return _.times(3).map(function() {
+ var chuckNorris = {
+ name: 'Chuck Norris',
+ email: 'chuck@gmail.com',
+ phone: '212-555-1234'
+ };
+ var rambo = {
+ name: 'John Rambo',
+ email: 'rambo@gmail.com',
+ phone: '415-555-98... |
85a1333dbd1382da6176352f35481e245c846a8e | src/.eslintrc.js | src/.eslintrc.js | module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"installedESLint": true,
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"s... | module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"installedESLint": true,
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"s... | Make linter know when JSX is using React variable | Make linter know when JSX is using React variable
| JavaScript | bsd-3-clause | rlorenzo/tmlpstats,rlorenzo/tmlpstats,rlorenzo/tmlpstats,rlorenzo/tmlpstats,tmlpstats/tmlpstats,tmlpstats/tmlpstats,tmlpstats/tmlpstats,rlorenzo/tmlpstats,tmlpstats/tmlpstats | ---
+++
@@ -18,6 +18,7 @@
],
"rules": {
"react/jsx-uses-vars": 1,
+ "react/jsx-uses-react": [1],
"indent": [
"error",
4 |
03d9bb448c252addcd98b3a0b0317fc2884c0c31 | share/spice/google_plus/google_plus.js | share/spice/google_plus/google_plus.js | function ddg_spice_google_plus (api_result) {
"use strict";
if(!api_result || !api_result.items || api_result.items.length === 0) {
return Spice.failed("googleplus");
}
Spice.add({
id: 'googleplus',
name: 'Google Plus',
data: api_result.items,
meta: {
... | function ddg_spice_google_plus (api_result) {
"use strict";
if(!api_result || !api_result.items || api_result.items.length === 0) {
return Spice.failed("googleplus");
}
Spice.add({
id: 'googleplus',
name: 'Google+',
data: api_result.items,
meta: {
so... | Change the name from "Google Plus" to "Google+" | Google+: Change the name from "Google Plus" to "Google+"
It's just not how it's styled.
| JavaScript | apache-2.0 | Kr1tya3/zeroclickinfo-spice,hshackathons/zeroclickinfo-spice,rubinovitz/zeroclickinfo-spice,stennie/zeroclickinfo-spice,Queeniebee/zeroclickinfo-spice,lw7360/zeroclickinfo-spice,AcriCAA/zeroclickinfo-spice,alexandernext/zeroclickinfo-spice,navjotahuja92/zeroclickinfo-spice,gautamkrishnar/zeroclickinfo-spice,echosa/zero... | ---
+++
@@ -7,7 +7,7 @@
Spice.add({
id: 'googleplus',
- name: 'Google Plus',
+ name: 'Google+',
data: api_result.items,
meta: {
sourceName : 'Google+', |
55d69b6528833130d4f1e0118368b9a5ed9f587a | src/TcpReader.js | src/TcpReader.js | function TcpReader(callback) {
this.callback = callback;
this.buffer = "";
};
TcpReader.prototype.read = function(data) {
this.buffer = this.buffer.concat(data);
size = this.payloadSize( this.buffer );
while ( size > 0 && this.buffer.length >= ( 6 + size ) ) {
this.consumeOne( size );
size = this.pay... | function TcpReader(callback) {
this.callback = callback;
this.buffer = "";
};
TcpReader.prototype.read = function(data) {
this.buffer = this.buffer.concat(data);
var size = this.payloadSize( this.buffer );
while ( size > 0 && this.buffer.length >= ( 6 + size ) ) {
this.consumeOne( size );
size = this... | Patch parseInt usage to specify radix explicitly | Patch parseInt usage to specify radix explicitly
My node install informed me that parseInt('000039') === 3, so: womp
womp. This commit also avoids a couple of globals.
| JavaScript | bsd-3-clause | noam-io/lemma-javascript,noam-io/lemma-javascript | ---
+++
@@ -5,7 +5,7 @@
TcpReader.prototype.read = function(data) {
this.buffer = this.buffer.concat(data);
- size = this.payloadSize( this.buffer );
+ var size = this.payloadSize( this.buffer );
while ( size > 0 && this.buffer.length >= ( 6 + size ) ) {
this.consumeOne( size );
size = this.paylo... |
3a02688886a40dbb922c034811bbdf5399c06929 | src/app/wegas.js | src/app/wegas.js | var ServiceURL = "/api/";
angular.module('Wegas', [
'ui.router',
'wegas.service.auth',
'wegas.behaviours.tools',
'public',
'private'
])
.config(function ($stateProvider, $urlRouterProvider) {
$stateProvider
.state('wegas', {
url: '/',
views: {
'mai... | var ServiceURL = "/api/";
angular.module('Wegas', [
'ui.router',
'ngAnimate',
'wegas.service.auth',
'wegas.behaviours.tools',
'public',
'private'
])
.config(function ($stateProvider, $urlRouterProvider) {
$stateProvider
.state('wegas', {
url: '/',
views: {
... | Resolve conflict - add module ngAnimate | Resolve conflict - add module ngAnimate
| JavaScript | mit | Heigvd/Wegas,ghiringh/Wegas,ghiringh/Wegas,Heigvd/Wegas,Heigvd/Wegas,Heigvd/Wegas,Heigvd/Wegas,ghiringh/Wegas | ---
+++
@@ -1,6 +1,7 @@
var ServiceURL = "/api/";
angular.module('Wegas', [
'ui.router',
+ 'ngAnimate',
'wegas.service.auth',
'wegas.behaviours.tools',
'public', |
22f07bfd0bd4c2928f6c641ccab91750b0c88f5b | client/lib/convert-to-print/convert-items/paragraphToReact.js | client/lib/convert-to-print/convert-items/paragraphToReact.js | import React from 'react';
function applyProperties(text, properties) {
// TODO: support more than 1 property
const property = properties[0];
return React.createElement('p', null, [
React.createElement('span', null, text.substring(0, property.offSets.start)),
React.createElement(property.type, null, text... | import React from 'react';
function applyProperties(text, properties) {
// TODO: support more than 1 property
const property = properties[0];
return React.createElement('p', null, [
React.createElement('span', null, text.substring(0, property.offsets.start)),
React.createElement(property.type, null, text... | Fix small property rename issue after rebase. | Fix small property rename issue after rebase.
| JavaScript | mit | OpenWebslides/OpenWebslides,OpenWebslides/OpenWebslides,OpenWebslides/OpenWebslides,OpenWebslides/OpenWebslides | ---
+++
@@ -4,9 +4,9 @@
// TODO: support more than 1 property
const property = properties[0];
return React.createElement('p', null, [
- React.createElement('span', null, text.substring(0, property.offSets.start)),
- React.createElement(property.type, null, text.substring(property.offSets.start, propert... |
139065ee61c1c1322879785fe546fc8374a671e2 | example/routes.js | example/routes.js | 'use strict';
/**
* Sets up the routes.
* @param {object} app - Express app
*/
module.exports.setup = function (app) {
/**
* @swagger
* /:
* get:
* responses:
* 200:
* description: hello world
*/
app.get('/', rootHandler);
... | 'use strict';
/**
* Sets up the routes.
* @param {object} app - Express app
*/
module.exports.setup = function (app) {
/**
* @swagger
* /:
* get:
* responses:
* 200:
* description: hello world
*/
app.get('/', rootHandler);
/**
* @swa... | Use 2 spaces for deeply nested objects | Use 2 spaces for deeply nested objects
| JavaScript | mit | zeornelas/jsdoc-express-with-swagger,zeornelas/jsdoc-express-with-swagger,devlouisc/jsdoc-express-with-swagger,devlouisc/jsdoc-express-with-swagger | ---
+++
@@ -9,22 +9,22 @@
/**
* @swagger
* /:
- * get:
- * responses:
- * 200:
- * description: hello world
+ * get:
+ * responses:
+ * 200:
+ * description: hello world
*/
app.get('/', ro... |
371b5cffd0e20c540b01d00076ec38ccc0bda504 | spec/leaflet_spec.js | spec/leaflet_spec.js |
describe('LeafletMap Ext Component', function() {
describe('Basics', function() {
var Map = vrs.ux.touch.LeafletMap;
it('provides new mapping events', function() {
var map = new Map();
expect(map.events.repPicked).toBeDefined();
});
it('provides new mapping events', func... | /* Disable Leaflet for now
describe('LeafletMap Ext Component', function() {
describe('Basics', function() {
var Map = vrs.ux.touch.LeafletMap;
it('provides new mapping events', function() {
var map = new Map();
expect(map.events.repPicked).toBeDefined();
});
it('provide... | Comment out leaflet test for now since it depends upon manually installing leaflet to a given directory path. | Comment out leaflet test for now since it depends upon manually installing leaflet to a given directory path.
| JavaScript | mit | vrsource/vrs.ux.touch,vrsource/vrs.ux.touch,vrsource/vrs.ux.touch,vrsource/vrs.ux.touch | ---
+++
@@ -1,4 +1,4 @@
-
+/* Disable Leaflet for now
describe('LeafletMap Ext Component', function() {
describe('Basics', function() {
var Map = vrs.ux.touch.LeafletMap;
@@ -17,3 +17,4 @@
});
});
+*/ |
9ab9b55982f39de1b9866ee9ba86e4bbd7d2050d | spec/main/program.js | spec/main/program.js | var test = require('test');
test.assert(require('dot-slash') === 10, 'main with "./"');
test.assert(require('js-ext') === 20, 'main with ".js" extension');
test.assert(require('no-ext') === 30, 'main with no extension');
test.assert(require('dot-js-ext') === 40, 'main with "." in module name and ".js" extension');
te... | var test = require('test');
test.assert(require('dot-slash') === 10, 'main with "./"');
test.assert(require('js-ext') === 20, 'main with ".js" extension');
test.assert(require('no-ext') === 30, 'main with no extension');
test.assert(require('dot-js-ext') === 40, 'main with "." in module name and ".js" extension');
te... | Add test for requiring a package's main module without .js extension | Add test for requiring a package's main module without .js extension
| JavaScript | bsd-3-clause | kriskowal/mr,kriskowal/mr | ---
+++
@@ -5,4 +5,6 @@
test.assert(require('no-ext') === 30, 'main with no extension');
test.assert(require('dot-js-ext') === 40, 'main with "." in module name and ".js" extension');
+test.assert(require('js-ext') === require("js-ext/a"), 'can require "main" without extension');
+
test.print('DONE', 'info'); |
92b65306960142124ca97a6816bd4ce8596714d3 | app/js/main.js | app/js/main.js | (function() {
'use strict';
var params = window.location.search.substring(1)
.split( '&' )
.reduce(function( object, param ) {
var pair = param.split( '=' ).map( decodeURIComponent );
object[ pair[0] ] = pair[1];
return object;
}, {} );
var port = params.port || 8080;
var host =... | (function() {
'use strict';
var params = window.location.search.substring(1)
.split( '&' )
.reduce(function( object, param ) {
var pair = param.split( '=' ).map( decodeURIComponent );
object[ pair[0] ] = pair[1];
return object;
}, {} );
var port = params.port || 8080;
var host =... | Add basic TouchOSC data structures. | Add basic TouchOSC data structures.
| JavaScript | mit | razh/osc-dev | ---
+++
@@ -15,7 +15,41 @@
var socket = new WebSocket( 'ws://' + host + ':' + port );
socket.addEventListener( 'message', function( event ) {
- console.log( event );
+ var data = JSON.parse( event.data );
+ console.log( data );
});
+ var types = [
+ 'push',
+ 'toggle',
+ 'xy',
+ 'fa... |
ee424745693facc1e23c5896e30a25253c99adab | app/js/tree.js | app/js/tree.js | 'use strict';
var MAX = 1000;
function Node( number ){
this.number = 0;
this.parent = null;
this.left = null;
this.right = null;
this.depth = 0;
if( number === undefined ){
this.number = Math.floor((Math.random() * MAX) + 1);
}
else{
this.number = number;
}
}
func... | 'use strict';
var MAX = 1000;
function Node( number ){
this.number = 0;
this.parent = null;
this.left = null;
this.right = null;
this.depth = 0;
if( number === undefined ){
this.number = Math.floor((Math.random() * MAX) + 1);
}
else{
this.number = number;
}
}
func... | Change left-right for test CI | Change left-right for test CI
| JavaScript | mit | takecode/SampleTree | ---
+++
@@ -30,7 +30,7 @@
else{
var parentNode = this.root;
while( true ){
- if( parentNode.number > node.number ){
+ if( parentNode.number < node.number ){
if( parentNode.left === null ){
parentNode.left = node;
n... |
3bfdcb7e7ab642d26498c7b08ec7d014a008c4a6 | application.js | application.js | define(['render',
'events',
'class'],
function(render, Emitter, clazz) {
function Application() {
Application.super_.call(this);
this.render = render;
this.controller = undefined;
}
clazz.inherits(Application, Emitter);
Application.prototype.run = function() {
this.willLaun... | define(['render',
'events',
'class'],
function(render, Emitter, clazz) {
function Application() {
Application.super_.call(this);
this.render = render;
this.controller = undefined;
}
clazz.inherits(Application, Emitter);
Application.prototype.run = function() {
this.willLaun... | Fix this context in ready callback. | Fix this context in ready callback.
| JavaScript | mit | sailjs/application | ---
+++
@@ -15,10 +15,11 @@
this.launch();
this.didLaunch();
+ var self = this;
render.$(document).ready(function() {
- this.willDisplay();
- this.display();
- this.didDisplay();
+ self.willDisplay();
+ self.display();
+ self.didDisplay();
});
};
|
c64492441b8bcac86b1dbc29d40fcb84fb31a51a | generators/reducer/index.js | generators/reducer/index.js | 'use strict';
let generator = require('yeoman-generator');
let utils = require('generator-react-webpack/utils/all');
let path = require('path');
module.exports = generator.NamedBase.extend({
constructor: function() {
generator.NamedBase.apply(this, arguments);
},
writing: function() {
let baseName = t... | 'use strict';
let esprima = require('esprima');
let walk = require('esprima-walk');
let escodegen = require('escodegen');
let generator = require('yeoman-generator');
//let utils = require('generator-react-webpack/utils/all');
let path = require('path');
let fs = require('fs');
module.exports = generator.NamedBase.ext... | Add reducer to root reducer | Add reducer to root reducer
| JavaScript | mit | stylesuxx/generator-react-webpack-redux,stylesuxx/generator-react-webpack-redux | ---
+++
@@ -1,7 +1,11 @@
'use strict';
+let esprima = require('esprima');
+let walk = require('esprima-walk');
+let escodegen = require('escodegen');
let generator = require('yeoman-generator');
-let utils = require('generator-react-webpack/utils/all');
+//let utils = require('generator-react-webpack/utils/all');
... |
f01b2067158e327eec89db536cc34b8976b0f0e8 | openfisca_web_ui/static/js/auth.js | openfisca_web_ui/static/js/auth.js | define([
'jquery'
], function($) {
var Auth = function () {};
Auth.prototype = {
init: function (authconfig) {
navigator.id.watch({
loggedInUser: authconfig.currentUser,
onlogin: function (assertion) {
$.ajax({
... | define([
'jquery'
], function($) {
var Auth = function () {};
Auth.prototype = {
init: function (authconfig) {
navigator.id.watch({
loggedInUser: authconfig.currentUser,
onlogin: function (assertion) {
$.ajax({
... | Use new jquery jqXHR API. | Use new jquery jqXHR API.
| JavaScript | agpl-3.0 | openfisca/openfisca-web-ui,openfisca/openfisca-web-ui,openfisca/openfisca-web-ui | ---
+++
@@ -13,15 +13,16 @@
url: '/login',
data: {
assertion: assertion
- },
- success: function(res, status, xhr) {
- window.location.href = res.accountUrl;
- ... |
8287ca26fd538a3bc9ec68d0dc6cd81a3ff1cda3 | node-server/config.js | node-server/config.js | // Don't commit this file to your public repos. This config is for first-run
exports.creds = {
mongoose_auth_local: 'mongodb://localhost/tasklist', // Your mongo auth uri goes here
audience: 'http://localhost:8888/', // the Audience is the App URL when you registered the application.
identityMetadata: ... | // Don't commit this file to your public repos. This config is for first-run
exports.creds = {
mongoose_auth_local: 'mongodb://localhost/tasklist', // Your mongo auth uri goes here
audience: 'http://localhost:8888/', // the Audience is the App URL when you registered the application.
identityMetadata: ... | Update back to business scenarios | Update back to business scenarios
| JavaScript | apache-2.0 | AzureADSamples/WebAPI-Nodejs | ---
+++
@@ -2,5 +2,5 @@
exports.creds = {
mongoose_auth_local: 'mongodb://localhost/tasklist', // Your mongo auth uri goes here
audience: 'http://localhost:8888/', // the Audience is the App URL when you registered the application.
- identityMetadata: 'https://login.microsoftonline.com/hypercubeb2c.... |
3b9144acc0031957a1e824d15597a8605cd0be86 | examples/index.js | examples/index.js | import 'bootstrap/dist/css/bootstrap.min.css';
import 'nvd3/build/nv.d3.min.css';
import 'react-select/dist/react-select.min.css';
import 'fixed-data-table/dist/fixed-data-table.min.css';
import ReactDOM from 'react-dom';
import React from 'react';
import customDataHandlers from './customDataHandlers';
import { setting... | import 'bootstrap/dist/css/bootstrap.min.css';
import 'nvd3/build/nv.d3.min.css';
import 'react-select/dist/react-select.min.css';
import 'fixed-data-table/dist/fixed-data-table.min.css';
import ReactDOM from 'react-dom';
import React from 'react';
import customDataHandlers from './customDataHandlers';
import { setting... | Test for jekyll env - 1.1 | Test for jekyll env - 1.1
| JavaScript | mit | NuCivic/react-dashboard,NuCivic/react-dash,NuCivic/react-dashboard,NuCivic/react-dashboard,NuCivic/react-dash,NuCivic/react-dash | ---
+++
@@ -9,6 +9,4 @@
import App from './App';
import { Router, Route, browserHistory } from 'react-router';
-console.log('JJ', jeckyll);
-
ReactDOM.render(<App />, document.getElementById('root')); |
bc97c558b40592bbec42753baf72911f59bc8da6 | src/DataProcessor.js | src/DataProcessor.js | export default class DataProcessor {
static dataToPoints(data, width, height, limit) {
if (limit && limit < data.length) {
data = data.slice(data.length - limit);
}
let max = this.max(data);
let min = this.min(data);
let vfactor = height / (max - min);
... | export default class DataProcessor {
static dataToPoints(data, width, height, limit) {
if (limit && limit < data.length) {
data = data.slice(data.length - limit);
}
let max = this.max(data);
let min = this.min(data);
let vfactor = height / (max - min);
... | Add calcualtion for standard deviation | Add calcualtion for standard deviation
| JavaScript | mit | timoxley/react-sparklines,codevlabs/react-sparklines,Jonekee/react-sparklines,okonet/react-sparklines,samsface/react-sparklines,goodeggs/react-sparklines,kidaa/react-sparklines,shaunstanislaus/react-sparklines,rkichenama/react-sparklines,DigitalCoder/react-sparklines,geminiyellow/react-sparklines,rkichenama/react-spark... | ---
+++
@@ -40,6 +40,19 @@
return data.sort()[Math.floor(data.length / 2)];
}
+ static variance(data) {
+ let mean = this.mean(data);
+ let sq = data.map(n => Math.pow(n - mean, 2));
+ return this.mean(sq);
+ }
+
+ static stddev(data) {
+ let avg = this.avg(data);
... |
4e2ac67d7fc85ec38bc9404a350fcb2126fb0511 | _config/task.local-server.js | _config/task.local-server.js | /* jshint node: true */
'use strict';
function getTaskConfig(projectConfig) {
var taskConfig = {
server: {
baseDir: taskConfig.baseDir
}
};
return taskConfig;
}
module.exports = getTaskConfig;
| /* jshint node: true */
'use strict';
function getTaskConfig(projectConfig) {
//Browser Sync options object
//https://www.browsersync.io/docs/options
var taskConfig = {
//Server config options
server: {
baseDir: projectConfig.dirs.build,
// directory: true, // directory listing
// index: "index.htm",... | Add base browser sync config options | feat: Add base browser sync config options
| JavaScript | mit | cartridge/cartridge-local-server | ---
+++
@@ -3,10 +3,21 @@
'use strict';
function getTaskConfig(projectConfig) {
+ //Browser Sync options object
+ //https://www.browsersync.io/docs/options
+
var taskConfig = {
+ //Server config options
server: {
- baseDir: taskConfig.baseDir
- }
+ baseDir: projectConfig.dirs.build,
+ // directory: t... |
53b5893362dfe65bb47e6824a171b9ede1c5f1da | src/Web/Firebase/Authentication/Eff.js | src/Web/Firebase/Authentication/Eff.js | 'use strict';
// module Web.Firebase.Authentication.Eff
exports._onAuth = function (callback, firebase) {
var cbEffect = function(data) {
return cbEffect(data)(); // ensure effect gets used
};
return function() {
return firebase.onAuth(cbEffect);
};
};
exports._authWithOAuthRedirect = function (prov... | 'use strict';
// module Web.Firebase.Authentication.Eff
exports._onAuth = function (callback, firebase) {
var cbEffect = function(data) {
return callback(data)(); // ensure effect gets used
};
return function() {
return firebase.onAuth(cbEffect);
};
};
exports._authWithOAuthRedirect = function (prov... | Fix infinite recursion in onAuth | Fix infinite recursion in onAuth
| JavaScript | mit | mostalive/purescript-firebase,mostalive/purescript-firebase,mostalive/purescript-firebase | ---
+++
@@ -5,7 +5,7 @@
exports._onAuth = function (callback, firebase) {
var cbEffect = function(data) {
- return cbEffect(data)(); // ensure effect gets used
+ return callback(data)(); // ensure effect gets used
};
return function() {
return firebase.onAuth(cbEffect); |
b575a80c0bf801a2b32c35f27cb71ca5fe7a71c6 | src/Whoops/Resources/js/whoops.base.js | src/Whoops/Resources/js/whoops.base.js | Zepto(function($) {
prettyPrint();
var $frameLines = $('[id^="frame-line-"]');
var $activeLine = $('.frames-container .active');
var $activeFrame = $('.active[id^="frame-code-"]').show();
var $container = $('.details-container');
var headerHeight = $('header').css('height');
var highlightCurrentLine... | Zepto(function($) {
prettyPrint();
var $frameLines = $('[id^="frame-line-"]');
var $activeLine = $('.frames-container .active');
var $activeFrame = $('.active[id^="frame-code-"]').show();
var $container = $('.details-container');
var headerHeight = $('header').height();
var highlightCurrentLine = fu... | Use correct header height for scrolling back up. | Use correct header height for scrolling back up.
| JavaScript | mit | UnderDogg/whoops,emilkje/whoops,oligriffiths/whoops,emilkje/whoops,stefen/whoops,michabbb-backup/whoops,staabm/whoops,staabm/whoops,michabbb-backup/whoops,UnderDogg/whoops,Vmak11/whoops,filp/whoops,stefen/whoops,Vmak11/whoops,oligriffiths/whoops,nonconforme/whoops,nonconforme/whoops,filp/whoops | ---
+++
@@ -5,7 +5,7 @@
var $activeLine = $('.frames-container .active');
var $activeFrame = $('.active[id^="frame-code-"]').show();
var $container = $('.details-container');
- var headerHeight = $('header').css('height');
+ var headerHeight = $('header').height();
var highlightCurrentLine = functi... |
894ac7126415d351ae03c93387bb96436d911044 | website/src/app/global.components/mc-show-sample.component.js | website/src/app/global.components/mc-show-sample.component.js | class MCShowSampleComponentController {
/*@ngInject*/
constructor($stateParams, samplesService, toast, $mdDialog) {
this.projectId = $stateParams.project_id;
this.samplesService = samplesService;
this.toast = toast;
this.$mdDialog = $mdDialog;
this.viewHeight = this.viewH... | class MCShowSampleComponentController {
/*@ngInject*/
constructor($stateParams, samplesService, toast, $mdDialog) {
this.projectId = $stateParams.project_id;
this.samplesService = samplesService;
this.toast = toast;
this.$mdDialog = $mdDialog;
this.viewHeight = this.viewH... | Remove if(this.viewHeight){} since block is empty. | Remove if(this.viewHeight){} since block is empty.
| JavaScript | mit | materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org | ---
+++
@@ -9,9 +9,6 @@
}
$onInit() {
- if (this.viewHeight) {
-
- }
this.samplesService.getProjectSample(this.projectId, this.sampleId)
.then(
(sample) => this.sample = sample, |
b948fe73af2929c0d8a8665eacdaf2de1a94637e | lib/createMockCouchAdapter.js | lib/createMockCouchAdapter.js | var express = require('express');
function createMethodWrapper(app, verb) {
var original = app[verb];
return function (route, handler) {
var hasSentResponse = false;
original.call(app, route, function (req, res, next) {
handler(req, {
setHeader: function () {
... | var express = require('express');
function createMethodWrapper(app, verb) {
var original = app[verb];
return function (route, handler) {
original.call(app, route, function (req, res, next) {
// must be places here in order that it is cleared on every request
var hasSentResponse... | Fix bug where hasSentResponse would not be reset stalling further requests. | Fix bug where hasSentResponse would not be reset stalling further requests.
| JavaScript | bsd-3-clause | alexjeffburke/unexpected-couchdb | ---
+++
@@ -4,9 +4,10 @@
var original = app[verb];
return function (route, handler) {
- var hasSentResponse = false;
+ original.call(app, route, function (req, res, next) {
+ // must be places here in order that it is cleared on every request
+ var hasSentResponse = fal... |
21e4abd8902165863e0d9acd49b4402f5341ed15 | src/client/gravatar-image-retriever.js | src/client/gravatar-image-retriever.js | import md5 from 'md5';
export default class GravatarImageRetriever {
constructor(picturePxSize) {
this.picturePxSize = picturePxSize;
}
getImageUrl(email) {
// https://en.gravatar.com/site/implement/hash/
if (email) {
// https://en.gravatar.com/site/implement/images/
// https://github.co... | import md5 from 'md5';
export default class GravatarImageRetriever {
constructor(picturePxSize) {
this.picturePxSize = picturePxSize;
}
getImageUrl(email) {
// https://en.gravatar.com/site/implement/hash/
if (email) {
// https://en.gravatar.com/site/implement/images/
return `https://www.... | Remove comment, project using md5 package not blueimp-md5 | Remove comment, project using md5 package not blueimp-md5
| JavaScript | mit | ritterim/star-orgs,ritterim/star-orgs | ---
+++
@@ -9,7 +9,6 @@
// https://en.gravatar.com/site/implement/hash/
if (email) {
// https://en.gravatar.com/site/implement/images/
- // https://github.com/blueimp/JavaScript-MD5
return `https://www.gravatar.com/avatar/${md5(email.trim().toLowerCase())}.jpg`
+ `?s=${this.pictu... |
4f8eee87a64f675a4f33ff006cf2f059a47d6267 | app/assets/javascripts/application.js | app/assets/javascripts/application.js | 'use strict';
$(document).ready(() => {
$('.new').click((event) => {
event.preventDefault();
});
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/j... | $(document).ready(function() {
$('.new').on('click', function(event) {
event.preventDefault();
var $link = $(this);
var route = $link.attr('href');
var ajaxRequest = $.ajax({
method: 'GET',
url: route
});
ajaxRequest.done(function(data) {
$('.posts').prepend(data);
});
});
});
// This is a... | Build ajax request for new snippet form | Build ajax request for new snippet form
| JavaScript | mit | dshaps10/snippet,dshaps10/snippet,dshaps10/snippet | ---
+++
@@ -1,10 +1,19 @@
-'use strict';
+$(document).ready(function() {
+ $('.new').on('click', function(event) {
+ event.preventDefault();
+ var $link = $(this);
+ var route = $link.attr('href');
-$(document).ready(() => {
- $('.new').click((event) => {
- event.preventDefault();
-
+ var ajaxRequest = $.aja... |
70f438378cbadf23f176d5d8bfc1272f1e06a1ad | app/components/SearchResults/index.js | app/components/SearchResults/index.js | import React, { PropTypes } from 'react';
import './index.css';
const SearchResults = React.createClass({
propTypes: {
displayOptions: PropTypes.object.isRequired,
},
render() {
const { options, selectionIndex, onOptionSelected } = this.props;
return (
<div className="SearchResults">
... | import React, { PropTypes } from 'react';
import './index.css';
const SearchResults = React.createClass({
propTypes: {
displayOptions: PropTypes.object.isRequired,
},
render() {
const { options, selectionIndex, onOptionSelected } = this.props;
return (
<div className="SearchResults">
... | Add key to list item | Add key to list item
| JavaScript | mit | waagsociety/tnl-relationizer,transparantnederland/relationizer,transparantnederland/browser,transparantnederland/relationizer,transparantnederland/browser,waagsociety/tnl-relationizer | ---
+++
@@ -19,7 +19,11 @@
classNames.push('SearchResults-listItem__active');
}
return (
- <li className={classNames.join(' ')} onClick={() => { onOptionSelected(option); }}>
+ <li
+ className={classNames.join(' ')}
+ key... |
248f547f7fe9c9cfab0d76088fb188ac379ab2fb | gulpfile.babel.js | gulpfile.babel.js | import gulp from 'gulp';
import requireDir from 'require-dir';
import runSequence from 'run-sequence';
// Require individual tasks
requireDir('./gulp/tasks', { recurse: true });
gulp.task('default', ['dev']);
gulp.task('dev', () =>
runSequence('clean', 'set-development', 'set-watch-js', [
'i18n',
'copy-sta... | import gulp from 'gulp';
import requireDir from 'require-dir';
import runSequence from 'run-sequence';
// Require individual tasks
requireDir('./gulp/tasks', { recurse: true });
gulp.task('default', ['dev']);
gulp.task('dev', () =>
runSequence('clean', 'set-development', 'set-watch-js', [
'i18n',
'copy-sta... | Fix styl/img watching in gulp tasks | Fix styl/img watching in gulp tasks
| JavaScript | mit | MusikAnimal/WikiEduDashboard,Wowu/WikiEduDashboard,MusikAnimal/WikiEduDashboard,KarmaHater/WikiEduDashboard,KarmaHater/WikiEduDashboard,alpha721/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,majakomel/WikiEduDashboard,Wowu/WikiEduDashboard,majakomel/WikiEduDashboard,Wowu/WikiEduDashboard,WikiEducationFounda... | ---
+++
@@ -13,9 +13,8 @@
'copy-static',
'bower',
'stylesheets',
- 'webpack',
'cached-lintjs-watch'
- ], 'watch')
+ ], ['webpack', 'watch'])
);
gulp.task('hot-dev', () => |
11329fe25bb2242ecd27745f7b712ce37c0030e4 | src/lib/timer.js | src/lib/timer.js | const moment = require('moment');
function Timer(element) {
this.element = element;
this.secondsElapsed = 0;
}
Timer.prototype = {
start: function() {
var self = this;
self.timerId = setInterval(function() {
self.secondsElapsed++;
self.displaySeconds();
}, 1000);
},
stop: function()... | const moment = require('moment');
function Timer(element) {
this.element = element;
this.secondsElapsed = 0;
}
Timer.prototype = {
start: function() {
var self = this;
self.timerId = setInterval(function() {
self.secondsElapsed++;
self.displaySeconds();
}, 1000);
},
stop: function()... | Add a reset method to the Timer class. | Add a reset method to the Timer class.
Refs #9.
| JavaScript | mpl-2.0 | jwir3/minuteman,jwir3/minuteman | ---
+++
@@ -23,6 +23,13 @@
var minutes = Math.floor(this.secondsElapsed / 60);
var seconds = this.secondsElapsed % 60;
this.element.text(String(minutes).padStart(2, "0") + ":" + String(seconds).padStart(2, "0"));
+ },
+
+ reset: function() {
+ var self = this;
+ clearInterval(self.timerId);
+ ... |
5f56c522c4d3b2981e6d10b99bbe065e85d37ac4 | client/src/js/files/components/File.js | client/src/js/files/components/File.js | import React from "react";
import PropTypes from "prop-types";
import { Col, Row } from "react-bootstrap";
import { byteSize } from "../../utils";
import { Icon, ListGroupItem, RelativeTime } from "../../base";
export default class File extends React.Component {
static propTypes = {
id: PropTypes.string,... | import React from "react";
import PropTypes from "prop-types";
import { Col, Row } from "react-bootstrap";
import { byteSize } from "../../utils";
import { Icon, ListGroupItem, RelativeTime } from "../../base";
export default class File extends React.Component {
static propTypes = {
id: PropTypes.string,... | Fix file size prop warning | Fix file size prop warning
| JavaScript | mit | virtool/virtool,igboyes/virtool,virtool/virtool,igboyes/virtool | ---
+++
@@ -10,7 +10,7 @@
static propTypes = {
id: PropTypes.string,
name: PropTypes.string,
- size: PropTypes.number,
+ size: PropTypes.object,
file: PropTypes.object,
uploaded_at: PropTypes.string,
user: PropTypes.object,
@@ -48,7 +48,7 @@
... |
5da4c6e6ad78987f74a073ba5316a299071c0006 | src/components/Time.js | src/components/Time.js | import React, { PropTypes, Component } from 'react'
import moment from 'moment'
import eventActions from '../actions/eventActionCreators'
const TIME_INIT = moment('2190-07-02').utc()
const DELAY = 250
class Time extends Component {
componentWillMount () {
this.setState({ time: TIME_INIT })
}
componentDidM... | import React, { PropTypes, Component } from 'react'
import moment from 'moment'
import eventActions from '../actions/eventActionCreators'
const TIME_INIT = moment('2190-07-02').utc()
const DELAY = 1000
class Time extends Component {
componentWillMount () {
this.setState({ time: TIME_INIT })
}
componentDid... | Change time frequency: one virtual day per second | Change time frequency: one virtual day per second
| JavaScript | mit | albertoblaz/lord-commander,albertoblaz/lord-commander | ---
+++
@@ -4,7 +4,7 @@
import eventActions from '../actions/eventActionCreators'
const TIME_INIT = moment('2190-07-02').utc()
-const DELAY = 250
+const DELAY = 1000
class Time extends Component {
componentWillMount () { |
65bfe55ca0448dc941739deea117347798807fc9 | app/assets/javascripts/patient_auto_complete.js | app/assets/javascripts/patient_auto_complete.js | $(document).ready(function() {
$("[data-autocomplete-source]").each(function() {
var url = $(this).data("autocomplete-source");
var target = $(this).data("autocomplete-rel");
$(this).autocomplete({
minLength: 2,
source: function(request,response) {
var path = url + "?term=" + request.t... | $(document).ready(function() {
$("[data-autocomplete-source]").each(function() {
var url = $(this).data("autocomplete-source");
var target = $(this).data("autocomplete-rel");
$(this).autocomplete({
minLength: 2,
source: function(request,response) {
$.ajax({
url: url,
... | Handle error if autocomplete query fails | Handle error if autocomplete query fails
| JavaScript | mit | airslie/renalware-core,airslie/renalware-core,airslie/renalware-core,airslie/renalware-core | ---
+++
@@ -5,17 +5,23 @@
$(this).autocomplete({
minLength: 2,
source: function(request,response) {
- var path = url + "?term=" + request.term
- $.getJSON(path, function(data) {
- var list = $.map(data, function(patient) {
- return {
- label: patient.u... |
cf3200a37bf58f26cf8ffe9f8650bd9d39bffbc5 | Gruntfile.js | Gruntfile.js | module.exports = function(grunt) {
grunt.loadNpmTasks("grunt-mocha-test");
grunt.loadNpmTasks("grunt-mocha-istanbul");
var testOutputLocation = process.env.CIRCLE_TEST_REPORTS || "test_output";
var artifactsLocation = process.env.CIRCLE_ARTIFACTS || "build_artifacts";
grunt.initConfig({
moc... | module.exports = function(grunt) {
grunt.loadNpmTasks("grunt-mocha-test");
grunt.loadNpmTasks("grunt-mocha-istanbul");
var testOutputLocation = process.env.CIRCLE_TEST_REPORTS || "test_output";
var artifactsLocation = process.env.CIRCLE_ARTIFACTS || "build_artifacts";
grunt.initConfig({
moc... | Change artifact location to suite CircleCI | Change artifact location to suite CircleCI
| JavaScript | mit | JMiknys/todo-grad-project-justas,JMiknys/todo-grad-project-justas | ---
+++
@@ -22,7 +22,7 @@
coverage: {
src: ["test/**/*.js"],
options: {
- coverageFolder: artifactsLocation + "/coverage",
+ coverageFolder: artifactsLocation,
check: {
lines: 100,
... |
a0aa49e9d906a644f8eae3ae85bb83a1d7bbcdde | packages/lesswrong/components/recommendations/withContinueReading.js | packages/lesswrong/components/recommendations/withContinueReading.js | import gql from 'graphql-tag';
import { graphql } from 'react-apollo';
import { getFragment } from 'meteor/vulcan:core';
export const withContinueReading = component => {
// FIXME: For some unclear reason, using a ...fragment in the 'sequence' part
// of this query doesn't work (leads to a 400 Bad Request), so thi... | import gql from 'graphql-tag';
import { graphql } from 'react-apollo';
import { getFragment } from 'meteor/vulcan:core';
export const withContinueReading = component => {
// FIXME: For some unclear reason, using a ...fragment in the 'sequence' part
// of this query doesn't work (leads to a 400 Bad Request), so thi... | Add gridImageId to continueReading fragments | Add gridImageId to continueReading fragments
| JavaScript | mit | Discordius/Telescope,Discordius/Telescope,Discordius/Lesswrong2,Discordius/Lesswrong2,Discordius/Lesswrong2,Discordius/Lesswrong2,Discordius/Telescope,Discordius/Telescope | ---
+++
@@ -19,6 +19,7 @@
_id
title
slug
+ gridImageId
}
lastReadPost {
...PostsList |
d48742aa5a3002b347cf284ea28777a91d300f1b | client/app/components/components.js | client/app/components/components.js | import angular from 'angular';
import Dogs from './dogs/dogs';
import DogProfile from './dog-profile/dog-profile';
import Users from './users/users';
import DogPost from './dog-post/dog-post';
import UserPost from './user-post/user-post';
let componentModule = angular.module('app.components', [
Dogs,
Users,
DogP... | import angular from 'angular';
import Auth from './auth/auth';
import Signup from './signup/signup';
import Dogs from './dogs/dogs';
import DogProfile from './dog-profile/dog-profile';
import Users from './users/users';
import DogPost from './dog-post/dog-post';
import UserPost from './user-post/user-post';
let compon... | Add to auth and signup component | Add to auth and signup component
| JavaScript | apache-2.0 | nickpeleh/dogs-book,nickpeleh/dogs-book | ---
+++
@@ -1,4 +1,6 @@
import angular from 'angular';
+import Auth from './auth/auth';
+import Signup from './signup/signup';
import Dogs from './dogs/dogs';
import DogProfile from './dog-profile/dog-profile';
import Users from './users/users';
@@ -6,6 +8,8 @@
import UserPost from './user-post/user-post';
le... |
c343c6ee7fb3c2f545b082c06c21f3fbb93a4585 | src/extension/index.js | src/extension/index.js | import {
setupTokenEditor,
setTokenEditorValue,
useDefaultToken
} from '../editor';
import { getParameterByName } from '../utils.js';
import { publicKeyTextArea } from './dom-elements.js';
/* For initialization, look at the end of this file */
function parseLocationQuery() {
const publicKey = getParameterByNa... | import {
setupTokenEditor,
setTokenEditorValue,
useDefaultToken
} from '../editor';
import { publicKeyTextArea } from './dom-elements.js';
/* For initialization, look at the end of this file */
function loadToken() {
const lastToken = localStorage.getItem('lastToken');
if(lastToken) {
setTokenEditorValu... | Remove unnecessary code for the extension. | Remove unnecessary code for the extension.
| JavaScript | mit | nov/jsonwebtoken.github.io,simo5/jsonwebtoken.github.io,simo5/jsonwebtoken.github.io,nov/jsonwebtoken.github.io | ---
+++
@@ -3,26 +3,9 @@
setTokenEditorValue,
useDefaultToken
} from '../editor';
-import { getParameterByName } from '../utils.js';
import { publicKeyTextArea } from './dom-elements.js';
/* For initialization, look at the end of this file */
-
-function parseLocationQuery() {
- const publicKey = getParam... |
8afb86988829ead1404efdfa4bccf77fb983a08e | Gruntfile.js | Gruntfile.js | module.exports = function(grunt) {
grunt.registerTask("default", ["test-server", "test-client"]);
grunt.registerTask("test-client", function() {
var done = this.async();
grunt.util.spawn({cmd: "node", opts: {stdio: 'inherit'}, args: ["test/testee/client"]});
grunt.util.spawn({cmd: "node"... | module.exports = function(grunt) {
grunt.registerTask("default", ["test-server", "test-client"]);
grunt.registerTask("test-client", function() {
var done = this.async();
grunt.util.spawn({cmd: "node", opts: {stdio: 'inherit'}, args: ["test/testee/client"]});
grunt.util.spawn({cmd: "node"... | Change mocha's reporter type to spec | Change mocha's reporter type to spec | JavaScript | apache-2.0 | vibe-project/vibe-protocol | ---
+++
@@ -3,14 +3,14 @@
grunt.registerTask("test-client", function() {
var done = this.async();
grunt.util.spawn({cmd: "node", opts: {stdio: 'inherit'}, args: ["test/testee/client"]});
- grunt.util.spawn({cmd: "node", opts: {stdio: 'inherit'}, args: ["./node_modules/mocha/bin/mocha", "... |
a8dc6903bbeb207b63fcde2f318501d27052ec07 | js/background.js | js/background.js | chrome.tabs.onCreated.addListener(function(tab) {
console.log("Tab Created", tab);
});
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
console.log("Tab changed: #" + tabId, changeInfo, tab );
});
chrome.browserAction.onClicked.addListener(function() {
console.log("Browser action clicked!");
})... | chrome.tabs.onCreated.addListener(function(tab) {
console.log("Tab Created", tab);
});
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
console.log("Tab changed: #" + tabId, changeInfo, tab );
});
chrome.storage.sync.get(null, function(items) {
console.log("All items in synced storage", items )... | Set of generic functions to test the chrome.* APIs | Set of generic functions to test the chrome.* APIs
| JavaScript | bsd-3-clause | rex/BANTP | ---
+++
@@ -6,6 +6,26 @@
console.log("Tab changed: #" + tabId, changeInfo, tab );
});
-chrome.browserAction.onClicked.addListener(function() {
- console.log("Browser action clicked!");
+chrome.storage.sync.get(null, function(items) {
+ console.log("All items in synced storage", items );
});
+
+chrome.storage.sy... |
d8a2c541823fad0a5d1458a08e991ca4cc7fd216 | Gruntfile.js | Gruntfile.js | 'use strict';
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
allFiles: ['gruntfile.js', 'lib/**/*.js', 'test/**/*.js'],
options: {
jshintrc: '.jshintrc',
}
},
mochacli: {
... | 'use strict';
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
allFiles: ['gruntfile.js', 'lib/**/*.js', 'test/**/*.js'],
options: {
jshintrc: '.jshintrc',
}
},
mochacli: {
... | Adjust limits to meet what we have currently | Adjust limits to meet what we have currently
| JavaScript | apache-2.0 | xmpp-ftw/xmpp-ftw | ---
+++
@@ -24,8 +24,8 @@
coverage: true,
legend: true,
check: {
- lines: 90,
- statements: 90
+ lines: 68,
+ statements: 70
},
... |
2c001cfd50d80bae25de6adce09a11926de9a991 | Gruntfile.js | Gruntfile.js | module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
clean: ['.tmp'],
babel: {
options: {
sourceMap: true
},
dist: {
files: {
'dist/index.js': 'src/index.js'
}
},
test: {... | module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
clean: ['.tmp'],
babel: {
options: {
sourceMap: true
},
dist: {
files: {
'dist/index.js': 'src/index.js'
}
},
test: {... | Add bail option to mochacli to halt on the first failed test. | Add bail option to mochacli to halt on the first failed test.
| JavaScript | mit | khornberg/simplenote | ---
+++
@@ -32,7 +32,8 @@
options: {
reporter: 'spec',
ui: 'tdd',
- timeout: 10000
+ timeout: 10000,
+ bail: 'true'
}
}
}); |
c8656f406dcefc83c8eec14a6607c7f334f37607 | Gruntfile.js | Gruntfile.js | /*
* generator-init
* https://github.com/use-init/generator-init
*
*/
'use strict';
module.exports = function (grunt) {
// Load all grunt tasks matching the `grunt-*` pattern.
require('load-grunt-tasks')(grunt);
// Project configuration.
grunt.initConfig({
jshint: {
all: [
'Gruntfile.js... | /*
* generator-init
* https://github.com/use-init/generator-init
*
*/
'use strict';
module.exports = function (grunt) {
// Load all grunt tasks matching the `grunt-*` pattern.
require('load-grunt-tasks')(grunt);
// Project configuration.
grunt.initConfig({
jshint: {
all: [
'Gruntfile.js... | Add all JS files to JSHint | Add all JS files to JSHint
| JavaScript | mit | use-init/generator-init,use-init/generator-init | ---
+++
@@ -16,6 +16,11 @@
all: [
'Gruntfile.js',
'app/index.js',
+ 'lib/*.js',
+ 'page/index.js',
+ 'module/index.js',
+ 'jqueryplugin/index.js',
+ 'page/index.js',
'<%= mochaTest.test.src%>'
],
options: { |
b3138e99e44b96027ed4d1d3ffdc146d49bb52d2 | Gruntfile.js | Gruntfile.js | module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'), // the package file to use
qunit: { // internal task or name of a plugin (like "qunit")
all: ['js/tests/*.html']
},
watch: {
files: [
'js/tests/*.j... | module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'), // the package file to use
qunit: { // internal task or name of a plugin (like "qunit")
all: ['js/tests/*.html']
},
watch: {
files: [
'js/tests/*.j... | Fix warning, add assignment operator | Fix warning, add assignment operator
| JavaScript | bsd-2-clause | rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog | ---
+++
@@ -20,7 +20,7 @@
command: function() {
var gitCmd = 'git rev-parse --short HEAD';
return 'go build -o build/rtfblog' +
- ' -ldflags "-X main.genVer $(' + gitCmd + ')"' +
+ ' -ldflags "-X main.genVer=$(' +... |
f0299893c99537b1d23c54fbdbd04b463a6eed26 | Gruntfile.js | Gruntfile.js | module.exports = function(grunt) {
'use strict';
grunt.initConfig({
benchmark: {
all: {
src: ['benchmarks/*.js'],
options: { times: 10 }
}
},
nodeunit: {
files: ['test/*_test.js'],
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
gruntf... | module.exports = function(grunt) {
'use strict';
grunt.initConfig({
benchmark: {
all: {
src: ['benchmarks/*.js'],
options: { times: 10 }
}
},
nodeunit: {
files: ['test/*_test.js'],
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
gruntf... | Add dynamic alias task for running individual tests | Add dynamic alias task for running individual tests
| JavaScript | mit | modulexcite/gaze,prodatakey/gaze,prodatakey/gaze,shama/gaze,modulexcite/gaze,chebum/gaze,bevacqua/gaze,bevacqua/gaze,modulexcite/gaze,bevacqua/gaze,prodatakey/gaze | ---
+++
@@ -23,8 +23,15 @@
test: {
src: ['test/**/*_test.js']
},
- }
+ },
});
+
+ // Dynamic alias task to nodeunit. Run individual tests with: grunt test:events
+ grunt.registerTask('test', function(file) {
+ grunt.config('nodeunit.files', String(grunt.config('nodeunit.files')).r... |
34080a9b4d3835b0cde39503ab2c1ab48e7c06ab | src/components/logger/logger.js | src/components/logger/logger.js | import intelLogger from 'intel'
import joi from 'joi'
import { validateObject } from '../../core'
/**
* Returns config data and its schema
* @param {Object} env
* @returns {SchemedData}
*/
function getConfig(env) {
/**
* Log level compatible with intel module
* Valid values: ALL, TRACE, VERBOSE, DEB... | import intelLogger from 'intel'
import joi from 'joi'
import { validateObject } from '../../core'
/**
* Returns config data and its schema
* @param {Object} env
* @returns {SchemedData}
*/
function getConfig(env) {
/**
* Log level compatible with intel module
* Valid values: ALL, TRACE, VERBOSE, DEB... | Align Logger component with new AppiComponent api | Align Logger component with new AppiComponent api
| JavaScript | apache-2.0 | labs42/appi | ---
+++
@@ -55,4 +55,4 @@
}
-logger.isAppiComponent = true
+logger.componentName = 'logger' |
26e8ca7ae9a2e4123886c5cbbb549c76219473d0 | src/popper/utils/findCommonOffsetParent.js | src/popper/utils/findCommonOffsetParent.js | import isOffsetContainer from './isOffsetContainer';
export default function findCommonOffsetParent(element1, element2) {
const range = document.createRange();
if (element1.compareDocumentPosition(element2) & Node.DOCUMENT_POSITION_FOLLOWING) {
range.setStart(element1, 0);
range.setEnd(element2... | import isOffsetContainer from './isOffsetContainer';
export default function findCommonOffsetParent(element1, element2) {
const range = document.createRange();
if (element1.compareDocumentPosition(element2) & Node.DOCUMENT_POSITION_FOLLOWING) {
range.setStart(element1, 0);
range.setEnd(element2... | Return document if offsetParent is null | Return document if offsetParent is null
This because `.offsetParent` null is returned by documentElement
| JavaScript | mit | imkremen/popper.js,imkremen/popper.js | ---
+++
@@ -22,5 +22,9 @@
const offsetParent = commonAncestorContainer.offsetParent;
- return offsetParent.nodeName === 'BODY' ? document.documentElement : offsetParent;
+ if (!offsetParent || offsetParent && offsetParent.nodeName === 'BODY') {
+ return document.documentElement;
+ }
+
+ re... |
795bdb81899bff86df89174ceeaa5173999a7de2 | hypem-resolver.js | hypem-resolver.js | // Copyright 2015 Fabian Dietenberger
'use-strict'
var q = require('q'),
request = require('request');
var hypemResolver = {};
hypemResolver.getUrl = function (hypemUrl) {
var resultUrl = "";
return resultUrl;
};
module.exports = hypemResolver; | // Copyright 2015 Fabian Dietenberger
'use-strict'
var q = require('q'),
request = require('request');
var hypemResolver = {};
hypemResolver.getByUrl = function (hypemUrl) {
var resultUrl = "";
return resultUrl;
};
hypemResolver.getById = function (hypemId) {
return this.getByUrl("http://hypem.com... | Split get method into 2 single methods for url and id | Split get method into 2 single methods for url and id
| JavaScript | mit | feedm3/hypem-resolver | ---
+++
@@ -7,9 +7,13 @@
var hypemResolver = {};
-hypemResolver.getUrl = function (hypemUrl) {
+hypemResolver.getByUrl = function (hypemUrl) {
var resultUrl = "";
return resultUrl;
};
+hypemResolver.getById = function (hypemId) {
+ return this.getByUrl("http://hypem.com/track/" + hypemId);
+};
+
... |
fe74c923958c21f8706fbca6e4da8a9cfb1b6a1d | src/server/migrations/0.3.0-0.4.0/index.js | src/server/migrations/0.3.0-0.4.0/index.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/. */
const database = require('../../models/database');
const sqlFile = database.sqlFile;
module.exports = {
fromVers... | /* 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/. */
const database = require('../../models/database');
const sqlFile = database.sqlFile;
module.exports = {
fromVers... | Set migration for compare_readings/group_compare_readings sql functions | Set migration for compare_readings/group_compare_readings sql functions
| JavaScript | mpl-2.0 | OpenEnergyDashboard/OED,OpenEnergyDashboard/OED,OpenEnergyDashboard/OED,OpenEnergyDashboard/OED | ---
+++
@@ -15,6 +15,7 @@
await db.none(sqlFile('../migrations/0.3.0-0.4.0/sql/logemail/create_log_table.sql'));
await db.none(sqlFile('../migrations/0.3.0-0.4.0/sql/baseline/create_baseline_table.sql'));
await db.none(sqlFile('../migrations/0.3.0-0.4.0/sql/baseline/create_function_get_average_reading.sql... |
1f71f06920d43c2c8ff3b670e9355033eaed7f11 | src/telemetry.js | src/telemetry.js | // Copyright (c) Martin Costello, 2017. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
"use strict";
var appInsights = require("applicationinsights");
const telemetry = {
appInsights: appInsights,
trackEvent: function () {
}... | // Copyright (c) Martin Costello, 2017. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
"use strict";
var appInsights = require("applicationinsights");
const telemetry = {
appInsights: appInsights,
trackEvent: function () {
}... | Set ApplicationInsights batch size to 1 | Set ApplicationInsights batch size to 1
Set the batch size for ApplicationInsights to 1 to try and prevent setTimeout() ever being called and causing the lambda function to timeout from hanging.
Relates to #45.
| JavaScript | apache-2.0 | martincostello/alexa-london-travel | ---
+++
@@ -17,7 +17,12 @@
telemetry.createClient = function () {
var client = new appInsights.TelemetryClient(telemetry.instrumentationKey);
+
+ // Prevent Lambda function from hanging and timing out.
+ // See https://github.com/martincostello/alexa-london-travel/issues/45.
client.config.maxBatchIntervalM... |
9ba3095bdc0a81a1546634160f2a20c3a0196d51 | src/time_slot.js | src/time_slot.js | Occasion.Modules.push(function(library) {
library.TimeSlot = class TimeSlot extends library.Base {};
library.TimeSlot.className = 'TimeSlot';
library.TimeSlot.queryName = 'time_slots';
library.TimeSlot.belongsTo('product');
library.TimeSlot.belongsTo('venue');
library.TimeSlot.afterRequest(function() {
... | Occasion.Modules.push(function(library) {
library.TimeSlot = class TimeSlot extends library.Base {};
library.TimeSlot.className = 'TimeSlot';
library.TimeSlot.queryName = 'time_slots';
library.TimeSlot.belongsTo('order');
library.TimeSlot.belongsTo('product');
library.TimeSlot.belongsTo('venue');
libra... | Add TimeSlot belongsTo order relationship | Add TimeSlot belongsTo order relationship
| JavaScript | mit | nicklandgrebe/occasion-sdk-js | ---
+++
@@ -4,6 +4,7 @@
library.TimeSlot.className = 'TimeSlot';
library.TimeSlot.queryName = 'time_slots';
+ library.TimeSlot.belongsTo('order');
library.TimeSlot.belongsTo('product');
library.TimeSlot.belongsTo('venue');
|
b447e585b0c77739315677deb367140184d24a17 | src/models/reminder.js | src/models/reminder.js | const mongoose = require('mongoose');
const reminderSchema = new mongoose.Schema({
user_address: { type: Object, required: true, index: true },
value: { type: String, required: true },
expiration: { type: Date, required: true }
});
module.exports = mongoose.model('Reminder', reminderSchema); | const mongoose = require('mongoose');
const reminderSchema = new mongoose.Schema({
user_address: {
useAuth: Boolean,
serviceUrl: String,
bot: {
name: String,
id: String
},
conversation: {
id: String,
isGroup: Boolean
... | Improve mongoose schema, index user.name | Improve mongoose schema, index user.name
| JavaScript | mit | sebsylvester/reminder-bot | ---
+++
@@ -1,7 +1,24 @@
const mongoose = require('mongoose');
const reminderSchema = new mongoose.Schema({
- user_address: { type: Object, required: true, index: true },
+ user_address: {
+ useAuth: Boolean,
+ serviceUrl: String,
+ bot: {
+ name: String,
+ id: S... |
26fa40b50deee67a1ce8711ef5f35a7cd977c18d | src/openpoliticians.js | src/openpoliticians.js | "use strict";
var cors = require('cors');
var originWhitelist = [
'http://openpoliticians.org',
'http://localhost:4000',
];
var openPoliticiansCors = cors({
origin: function(origin, callback) {
var originIsWhitelisted = originWhitelist.indexOf(origin) !== -1;
callback(null, originIsWhitelisted);
},
... | "use strict";
var cors = require('cors');
var originWhitelist = [
'http://openpoliticians.org',
'http://everypolitician.org',
'http://localhost:4000',
];
var openPoliticiansCors = cors({
origin: function(origin, callback) {
var originIsWhitelisted = originWhitelist.indexOf(origin) !== -1;
callback(nu... | Add everypolitician.org to allowed CORS addresses | Add everypolitician.org to allowed CORS addresses
| JavaScript | agpl-3.0 | Sinar/popit-api,mysociety/popit-api,mysociety/popit-api,Sinar/popit-api | ---
+++
@@ -4,6 +4,7 @@
var originWhitelist = [
'http://openpoliticians.org',
+ 'http://everypolitician.org',
'http://localhost:4000',
];
|
9fad0a8e69069226f4d7efeec98410e453044ba8 | realtime/index.js | realtime/index.js | const io = require('socket.io'),
winston = require('winston');
winston.remove(winston.transports.Console);
winston.add(winston.transports.Console, {'timestamp': true});
const PORT = 3031;
winston.info('Rupture real-time service starting');
winston.info('Listening on port ' + PORT);
var socket = io.listen(PORT... | const io = require('socket.io'),
winston = require('winston');
winston.remove(winston.transports.Console);
winston.add(winston.transports.Console, {'timestamp': true});
const PORT = 3031;
winston.info('Rupture real-time service starting');
winston.info('Listening on port ' + PORT);
var socket = io.listen(PORT... | Switch experiment to performing 1000 parallel requests | Switch experiment to performing 1000 parallel requests
| JavaScript | mit | dimriou/rupture,esarafianou/rupture,dionyziz/rupture,dimriou/rupture,dionyziz/rupture,dimriou/rupture,esarafianou/rupture,esarafianou/rupture,dimkarakostas/rupture,dionyziz/rupture,esarafianou/rupture,dionyziz/rupture,dimriou/rupture,dimkarakostas/rupture,dimkarakostas/rupture,dimkarakostas/rupture,dimkarakostas/ruptur... | ---
+++
@@ -18,7 +18,7 @@
winston.info('get-work from client ' + client.id);
client.emit('do-work', {
url: 'https://facebook.com/?breach-test',
- amount: 3,
+ amount: 1000,
timeout: 0
});
}); |
0edf973af2efff8614ddae037eb28d5f2b178599 | ext/codecast/7.1/codecast-loader.js | ext/codecast/7.1/codecast-loader.js | $(document).ready(function() {
if (window.taskData) {
var taskInstructionsHtml = $('#taskIntro').html();
var hints = $('#taskHints > div').toArray().map(elm => {
return {
content: elm.innerHTML.trim()
};
});
var additionalOptions = window.taskData.codecastParameters ? window.task... | $(document).ready(function() {
if (window.taskData) {
var taskInstructionsHtml = $('#taskIntro').html();
var hints = $('#taskHints > div').toArray().map(elm => {
return {
content: elm.innerHTML.trim()
};
});
var additionalOptions = window.taskData.codecastParameters ? window.task... | Revert "Revert "Use window.stringsLanguage by default if fulfilled"" | Revert "Revert "Use window.stringsLanguage by default if fulfilled""
This reverts commit 6c738f09b3c930a90847440c564d65179417c469.
| JavaScript | mit | France-ioi/bebras-modules,France-ioi/bebras-modules | ---
+++
@@ -11,6 +11,9 @@
var additionalOptions = window.taskData.codecastParameters ? window.taskData.codecastParameters : {};
if (window.codecastPreload) {
additionalOptions.preload = true;
+ }
+ if (!additionalOptions.language && window.stringsLanguage) {
+ additionalOptions.language = ... |
09bff03f5f74939ef6551625f2c453419f845c61 | request-logger.js | request-logger.js | var util = require('util');
var log = require('minilog')('http');
module.exports = function requestLogger(req, res, next) {
//
// Pretty much copypasta from
// https://github.com/senchalabs/connect/blob/master/lib/middleware/logger.js#L168-L174
//
// Monkey punching res.end. It's dirty but, maan I wanna lo... | var util = require('util');
var log = require('minilog')('http');
module.exports = function requestLogger(req, res, next) {
//
// Pretty much copypasta from
// https://github.com/senchalabs/connect/blob/master/lib/middleware/logger.js#L135-L158
//
// Monkey punching res.end. It's dirty but, maan I wanna lo... | Correct link in code comment | [minor] Correct link in code comment
| JavaScript | mit | chrismoulton/wzrd.in,rstr74/wzrd.in,jfhbrook/wzrd.in,jfhbrook/browserify-cdn,rstr74/wzrd.in,jfhbrook/wzrd.in,jfhbrook/browserify-cdn,tsatse/browserify-cdn,wraithgar/wzrd.in,tsatse/browserify-cdn,chrismoulton/wzrd.in,wraithgar/wzrd.in | ---
+++
@@ -6,7 +6,7 @@
//
// Pretty much copypasta from
- // https://github.com/senchalabs/connect/blob/master/lib/middleware/logger.js#L168-L174
+ // https://github.com/senchalabs/connect/blob/master/lib/middleware/logger.js#L135-L158
//
// Monkey punching res.end. It's dirty but, maan I wanna log m... |
f3f2ed4622828fdce9ca809e32939548267cf406 | lib/node_modules/@stdlib/types/ndarray/ctor/lib/get2d.js | lib/node_modules/@stdlib/types/ndarray/ctor/lib/get2d.js | 'use strict';
// MODULES //
var isInteger = require( '@stdlib/assert/is-integer' ).isPrimitive;
// FUNCTIONS //
/**
* Returns an array element.
*
* @private
* @param {integer} i - index for first dimension
* @param {integer} j - index for second dimension
* @throws {TypeError} index for first dimension must be an ... | 'use strict';
// MODULES //
var isInteger = require( '@stdlib/assert/is-integer' ).isPrimitive;
var getIndex = require( './get_index.js' );
// FUNCTIONS //
/**
* Returns an array element.
*
* @private
* @param {integer} i - index for first dimension
* @param {integer} j - index for second dimension
* @throws {Type... | Add support for an index mode | Add support for an index mode
| JavaScript | apache-2.0 | stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib,stdlib-js/stdlib | ---
+++
@@ -3,6 +3,7 @@
// MODULES //
var isInteger = require( '@stdlib/assert/is-integer' ).isPrimitive;
+var getIndex = require( './get_index.js' );
// FUNCTIONS //
@@ -26,8 +27,8 @@
if ( !isInteger( j ) ) {
throw new TypeError( 'invalid input argument. Index for second dimension must be an integer va... |
5620dd2921b534e1328c9305c66c254d04131797 | app/index.js | app/index.js | 'use strict';
var util = require('util');
var yeoman = require('yeoman-generator');
var Generator = module.exports = function () {
var cb = this.async();
var ignores = [
'.git',
'CHANGELOG.md',
'CONTRIBUTING.md',
'LICENSE.md',
'README.md'
];
this.prompt([{
type: 'confirm',
name: 'docs',
message: ... | 'use strict';
var util = require('util');
var yeoman = require('yeoman-generator');
var Generator = module.exports = function Generator () {
yeoman.generators.Base.apply(this, arguments);
};
util.inherits(Generator, yeoman.generators.NamedBase);
Generator.prototype.copyFiles = function () {
var cb = this.async()... | Make generator work with `yo` v1.0.5 | Make generator work with `yo` v1.0.5
Ref #12.
Fix #11.
| JavaScript | mit | h5bp/generator-h5bp | ---
+++
@@ -3,7 +3,14 @@
var util = require('util');
var yeoman = require('yeoman-generator');
-var Generator = module.exports = function () {
+var Generator = module.exports = function Generator () {
+ yeoman.generators.Base.apply(this, arguments);
+};
+
+util.inherits(Generator, yeoman.generators.NamedBase);
+
... |
7aee442d3b12698bb027c747a11719a075d9c586 | lib/autoprefix-processor.js | lib/autoprefix-processor.js | var autoprefixer = require('autoprefixer-core');
module.exports = function(less) {
function AutoprefixProcessor(options) {
this.options = options || {};
};
AutoprefixProcessor.prototype = {
process: function (css, extra) {
var options = this.options;
var sourceMap =... | var autoprefixer = require('autoprefixer-core');
module.exports = function(less) {
function AutoprefixProcessor(options) {
this.options = options || {};
};
AutoprefixProcessor.prototype = {
process: function (css, extra) {
var options = this.options;
var sourceMap =... | Fix sourcemaps when in a directory | Fix sourcemaps when in a directory
| JavaScript | apache-2.0 | less/less-plugin-autoprefix,PixnBits/less-plugin-autoprefix | ---
+++
@@ -14,7 +14,11 @@
if (sourceMap) {
processOptions.map = {};
processOptions.to = sourceMap.getOutputFilename();
- processOptions.from = sourceMap.getInputFilename();
+ // setting from = input filename works unless there is a director... |
7df02298180fcd94019506f363392c48e0fe21cf | app.js | app.js | function Person(name)
{
this.name = name;
this.parent = null;
this.children = [];
this.siblings = [];
this.getChildren = function ()
{
return this.children;
}
};
var Nancy = new Person("Nancy")
var Adam = new Person("Adam")
var Jill = new Person("Jill")
var Carl = new Person("Carl")
Nancy.children.push(A... | var familyTree = [];
function Person(name)
{
this.name = name;
this.parent = null;
this.children = [];
this.siblings = [];
this.addChild = function(name)
{
var child = new Person(name)
child.parent = this
this.children.push(child);
};
this.init();
};
Person.prototype.init = function(){
familyTree.... | Restructure Person prototype and add family array | Restructure Person prototype and add family array
| JavaScript | mit | Nilaco/Family-Tree,Nilaco/Family-Tree | ---
+++
@@ -1,3 +1,5 @@
+var familyTree = [];
+
function Person(name)
{
this.name = name;
@@ -5,17 +7,22 @@
this.children = [];
this.siblings = [];
- this.getChildren = function ()
+ this.addChild = function(name)
{
- return this.children;
- }
+ var child = new Person(name)
+ child.parent = this
+ ... |
cf73385957d54ef0c808aa69e261fe57b87cb7f9 | ukelonn.web.frontend/src/main/frontend/reducers/passwordReducer.js | ukelonn.web.frontend/src/main/frontend/reducers/passwordReducer.js | import { createReducer } from 'redux-starter-kit';
import {
UPDATE,
} from '../actiontypes';
const passwordReducer = createReducer(null, {
[UPDATE]: (state, action) => {
if (!(action.payload && action.payload.password)) {
return state;
}
return action.payload.password;
}... | import { createReducer } from 'redux-starter-kit';
import {
UPDATE,
LOGIN_RECEIVE,
INITIAL_LOGIN_STATE_RECEIVE,
} from '../actiontypes';
const passwordReducer = createReducer(null, {
[UPDATE]: (state, action) => {
if (!(action.payload && action.payload.password)) {
return state;
... | Set password in redux to empty string on successful login | Set password in redux to empty string on successful login
| JavaScript | apache-2.0 | steinarb/ukelonn,steinarb/ukelonn,steinarb/ukelonn | ---
+++
@@ -1,6 +1,8 @@
import { createReducer } from 'redux-starter-kit';
import {
UPDATE,
+ LOGIN_RECEIVE,
+ INITIAL_LOGIN_STATE_RECEIVE,
} from '../actiontypes';
const passwordReducer = createReducer(null, {
@@ -10,6 +12,8 @@
}
return action.payload.password;
},
+ [LOGIN_... |
2eb63b132d4ecd0c78998c716139298862319460 | public/js/identify.js | public/js/identify.js | (function(){
function close() {
$('.md-show .md-close').click();
}
function clean() {
$('.md-show input[name="name"]').val(''),
$('.md-show input[name="email"]').val(''),
$('.md-show input[name="phone"]').val('');
}
$('.btn-modal').click(function() {
var name = $('.md-show input[name="n... | (function(){
function close() {
$('.md-show .md-close').click();
}
function clean() {
$('.md-show input[name="name"]').val(''),
$('.md-show input[name="email"]').val(''),
$('.md-show input[name="phone"]').val('');
}
$('.btn-modal').click(function() {
var name = $('.md-show input[name="n... | Modify key "phone" to "telefone" | Modify key "phone" to "telefone"
| JavaScript | apache-2.0 | arthurbailao/gama-demo,arthurbailao/gama-demo | ---
+++
@@ -24,7 +24,7 @@
name: name,
email: email,
data: {
- phone: phone,
+ telefone: phone
}
});
|
ea015fcb266ab4287e583bed76bf5fbbb62205e5 | database/index.js | database/index.js | let pgp = require('pg-promise')({ssl: true});
// let databaseUrl = process.env.DATABASE_URL || require('./config');
// module.exports = pgp(databaseUrl);
| let pgp = require('pg-promise')(); // initialization option was {ssl: true}, sorry for deleting, but wasn't working for me with it
let connection = process.env.DATABASE_URL || require('./config');
module.exports = pgp(connection);
| Delete initialization options and change variable name | Delete initialization options and change variable name
| JavaScript | mit | SentinelsOfMagic/SentinelsOfMagic | ---
+++
@@ -1,5 +1,6 @@
-let pgp = require('pg-promise')({ssl: true});
-// let databaseUrl = process.env.DATABASE_URL || require('./config');
+let pgp = require('pg-promise')(); // initialization option was {ssl: true}, sorry for deleting, but wasn't working for me with it
-// module.exports = pgp(databaseUrl);
+le... |
62188e803684cb8b7cf965a895da23bc583b83a5 | postcss.config.js | postcss.config.js | "use strict";
const {media_breakpoints} = require("./static/js/css_variables");
module.exports = {
plugins: {
// Warning: despite appearances, order is significant
"postcss-nested": {},
"postcss-extend-rule": {},
"postcss-simple-vars": {
variables: media_breakpoints,
... | "use strict";
const {media_breakpoints} = require("./static/js/css_variables");
module.exports = {
plugins: [
require("postcss-nested"),
require("postcss-extend-rule"),
require("postcss-simple-vars")({variables: media_breakpoints}),
require("postcss-calc"),
require("postcss... | Convert plugins object to an array. | postcss: Convert plugins object to an array.
Since order matters for plugins, its better to use the Array syntax
to pass plugins to the PostCSS instead of Object.
This also allows us to reliably add more plugins programatically if
we so choose.
[dfdb7392591db597bc41cf266a9c3bc12a2706e5@zulip.com: Adjust to work with... | JavaScript | apache-2.0 | eeshangarg/zulip,kou/zulip,kou/zulip,kou/zulip,andersk/zulip,zulip/zulip,rht/zulip,kou/zulip,andersk/zulip,eeshangarg/zulip,rht/zulip,rht/zulip,rht/zulip,zulip/zulip,zulip/zulip,eeshangarg/zulip,eeshangarg/zulip,rht/zulip,zulip/zulip,andersk/zulip,rht/zulip,andersk/zulip,zulip/zulip,rht/zulip,zulip/zulip,zulip/zulip,ko... | ---
+++
@@ -3,15 +3,12 @@
const {media_breakpoints} = require("./static/js/css_variables");
module.exports = {
- plugins: {
- // Warning: despite appearances, order is significant
- "postcss-nested": {},
- "postcss-extend-rule": {},
- "postcss-simple-vars": {
- variables:... |
55a531708dfcf895433ce9abaf2c11fe9635df14 | public/js/read.js | public/js/read.js |
var imgWidth = new Array();
function imageWidth()
{
var width = $(window).width() - fixedPadding;
$(".img_flex").each(function(index)
{
if (width != $(this).width())
{
if (width < imgWidth[index])
{
$(this).width(width);
}
els... |
var imgWidth = new Array();
var imagePadding = 100;
function imageWidth()
{
var width = $(window).width() - imagePadding;
$(".img_flex").each(function(index)
{
if (width != $(this).width())
{
if (width < imgWidth[index])
{
$(this).width(width);
... | Change padding depend on window width (the bigger the more big the width is) | Change padding depend on window width (the bigger the more big the width is)
| JavaScript | mit | hernantas/MangaReader,hernantas/MangaReader,hernantas/MangaReader | ---
+++
@@ -1,9 +1,10 @@
var imgWidth = new Array();
+var imagePadding = 100;
function imageWidth()
{
- var width = $(window).width() - fixedPadding;
+ var width = $(window).width() - imagePadding;
$(".img_flex").each(function(index)
{
if (width != $(this).width()) |
8be4bc9543ba1f23019d619c822bc7e4769e22da | stories/Autocomplete.stories.js | stories/Autocomplete.stories.js | import React from 'react';
import { storiesOf } from '@storybook/react';
import Autocomplete from '../src/Autocomplete';
const stories = storiesOf('javascript/Autocomplete', module);
stories.addParameters({
info: {
text: `Add an autocomplete dropdown below your input
to suggest possible values in your form... | import React from 'react';
import { storiesOf } from '@storybook/react';
import Autocomplete from '../src/Autocomplete';
const stories = storiesOf('javascript/Autocomplete', module);
stories.addParameters({
info: {
text: `Add an autocomplete dropdown below your input
to suggest possible values in your form... | Add autocomplete with icon story | Add autocomplete with icon story
| JavaScript | mit | react-materialize/react-materialize,react-materialize/react-materialize,react-materialize/react-materialize | ---
+++
@@ -24,3 +24,17 @@
placeholder="Insert here"
/>
));
+
+stories.add('With icon', () => (
+ <Autocomplete
+ options={{
+ data: {
+ ['Gus Fring']: null,
+ ['Saul Goodman']: null,
+ ['Tuco Salamanca']: 'https://placehold.it/250x250'
+ }
+ }}
+ placeholder="Insert ... |
ef090c4c1b819b2df89ec50a855260decdf5ace0 | app/tradeapi/tradeapi.js | app/tradeapi/tradeapi.js | /**
This Angular module provide interface to VNDIRECT API, include:
- Auth API
- Trade API
*/
angular.module('myApp.tradeapi', [])
.factory('tradeapi', ['$http', function($http) {
var AUTH_URL = 'https://auth-api.vndirect.com.vn/auth';
var token = null;
return {
login: function(username, passwor... | /**
This Angular module provide interface to VNDIRECT API, include:
- Auth API
- Trade API
*/
angular.module('myApp.tradeapi', [])
.factory('tradeapi', ['$http', '$q', function($http, $q) {
var AUTH_URL = 'https://auth-api.vndirect.com.vn/auth';
var CUSOMTER_URL = 'https://trade-api.vndirect.com.vn/customer';... | Integrate login & retrieve customer with Trade API | Integrate login & retrieve customer with Trade API
| JavaScript | mit | VNDIRECT/SmartP,VNDIRECT/SmartP | ---
+++
@@ -6,13 +6,15 @@
angular.module('myApp.tradeapi', [])
-.factory('tradeapi', ['$http', function($http) {
+.factory('tradeapi', ['$http', '$q', function($http, $q) {
var AUTH_URL = 'https://auth-api.vndirect.com.vn/auth';
+ var CUSOMTER_URL = 'https://trade-api.vndirect.com.vn/customer';
va... |
b5a460ecc35dc5609339317337d467368d7593bb | frontend/src/utils/createWebSocketConnection.js | frontend/src/utils/createWebSocketConnection.js | import SockJS from 'sockjs-client'
import Stomp from 'webstomp-client'
const wsURL = 'http://localhost:8080/seven-wonders-websocket'
const createConnection = (headers = {}) => new Promise((resolve, reject) => {
let socket = Stomp.over(new SockJS(wsURL), {
debug: process.env.NODE_ENV !== "production"
})
... | import SockJS from 'sockjs-client'
import Stomp from 'webstomp-client'
const wsURL = '/seven-wonders-websocket'
const createConnection = (headers = {}) => new Promise((resolve, reject) => {
let socket = Stomp.over(new SockJS(wsURL), {
debug: process.env.NODE_ENV !== "production"
})
socket.connect(hea... | Remove absolute ws link in frontend | Remove absolute ws link in frontend
| JavaScript | mit | luxons/seven-wonders,luxons/seven-wonders,luxons/seven-wonders | ---
+++
@@ -1,6 +1,6 @@
import SockJS from 'sockjs-client'
import Stomp from 'webstomp-client'
-const wsURL = 'http://localhost:8080/seven-wonders-websocket'
+const wsURL = '/seven-wonders-websocket'
const createConnection = (headers = {}) => new Promise((resolve, reject) => {
let socket = Stomp.over(new So... |
d299ceac7d3d115266a8f45a14f1fd9f42cea883 | tests/test-simple.js | tests/test-simple.js | /*
* Copyright 2011 Rackspace
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed... | /*
* Copyright 2011 Rackspace
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed... | Add simple attributes test case | Add simple attributes test case
| JavaScript | apache-2.0 | racker/node-elementtree | ---
+++
@@ -17,7 +17,7 @@
var et = require('elementtree');
-exports['test_error_type'] = function(test, assert) {
+exports['test_simplest'] = function(test, assert) {
/* Ported from <https://github.com/lxml/lxml/blob/master/src/lxml/tests/test_elementtree.py> */
var Element = et.Element
var root = Eleme... |
f8c3893888e1cd5d8b31e4621fe6c04b3343bfce | src/app/UI/lib/managers/statistics/client/components/routes.js | src/app/UI/lib/managers/statistics/client/components/routes.js |
import React from "react";
import { Route } from "react-router";
import {
View as TAView
} from "ui-components/type_admin";
import Item from "./Item";
import List from "./List";
const routes = [
<Route
key="charts"
path="charts"
component={TAView}
List={List}
type="stat... |
import React from "react";
import { Route } from "react-router";
import {
View as TAView,
EditTags as TAEditTags
} from "ui-components/type_admin";
import Item from "./Item";
import List from "./List";
const routes = [
<Route
key="charts"
path="charts"
component={TAView}
Li... | Add edit tags to statistics chart | UI: Add edit tags to statistics chart
| JavaScript | mit | Combitech/codefarm,Combitech/codefarm,Combitech/codefarm | ---
+++
@@ -2,7 +2,8 @@
import React from "react";
import { Route } from "react-router";
import {
- View as TAView
+ View as TAView,
+ EditTags as TAEditTags
} from "ui-components/type_admin";
import Item from "./Item";
import List from "./List";
@@ -17,12 +18,18 @@
label="Statistics"
>
... |
2162a6463b14f8cf4f78c964aca248828bed5faf | packages/components/containers/labels/FoldersSection.js | packages/components/containers/labels/FoldersSection.js | import React from 'react';
import { c } from 'ttag';
import { Loader, Alert, PrimaryButton, useFolders, useModals } from 'react-components';
import FolderTreeViewList from './FolderTreeViewList';
import EditLabelModal from './modals/Edit';
function LabelsSection() {
const [folders, loadingFolders] = useFolders();... | import React from 'react';
import { c } from 'ttag';
import { Loader, Alert, PrimaryButton, useFolders, useModals } from 'react-components';
import FolderTreeViewList from './FolderTreeViewList';
import EditLabelModal from './modals/Edit';
function LabelsSection() {
const [folders, loadingFolders] = useFolders();... | Fix translation typo message info folders | Fix translation typo message info folders
| JavaScript | mit | ProtonMail/WebClient,ProtonMail/WebClient,ProtonMail/WebClient | ---
+++
@@ -20,7 +20,7 @@
className="mt1 mb1"
learnMore="https://protonmail.com/support/knowledge-base/creating-folders/"
>
- {c('LabelSettings').t`A message can only be in filed in a single Folder at a time.`}
+ {c('LabelSettings').t`A mess... |
6e72bc8a412b0ba8dc648d80a6d433c282496f16 | client/app/common/navbar/navbar.controller.js | client/app/common/navbar/navbar.controller.js | import moment from 'moment';
class NavbarController {
constructor() {
this.name = 'navbar';
}
$onInit(){
this.moment = moment().format('dddd HH:mm');
this.updateDate();
this.user =
{
name: 'Jesus Garcia',
mail: 'ctw@ctwhome.com',
picture: '//icons.iconarchive.com/i... | import moment from 'moment';
class NavbarController {
constructor() {
this.name = 'navbar';
}
$onInit(){
this.moment = moment().format('dddd HH:mm');
this.updateDate();
this.user =
{
name: 'Jesus Garcia',
mail: 'ctw@ctwhome.com',
picture: '//icons.iconarchive.com/i... | Update local Date automatically each 60s | Update local Date automatically each 60s
| JavaScript | apache-2.0 | ctwhome/studylist,ctwhome/studylist | ---
+++
@@ -53,7 +53,7 @@
setTimeout(() => {
this.moment = moment().format('dddd HH:mm');
this.updateDate();
- }, 1000);
+ }, 60000);
}
} |
33450086e8ada4f7d73e93da99a61b1b007e7c75 | client/scripts/controllers/UsersController.js | client/scripts/controllers/UsersController.js | /**
* Created by groupsky on 18.11.15.
*/
require('../app').controller('UsersController', /* @ngInject */function ($filter, $scope, User) {
var controller = this
var filter = $filter('filter')
$scope.rows = User.query({
limit: 1000
})
controller.filterRows = function (config) {
return function (r... | /**
* Created by groupsky on 18.11.15.
*/
require('../app').controller('UsersController', /* @ngInject */function ($filter, $scope, User) {
var controller = this
var filter = $filter('filter')
$scope.rows = User.query({
limit: 5000
})
controller.filterRows = function (config) {
return function (r... | Increase limit for fetching users in UI | Increase limit for fetching users in UI
| JavaScript | agpl-3.0 | BspbOrg/smartbirds-server,BspbOrg/smartbirds-server,BspbOrg/smartbirds-server | ---
+++
@@ -7,7 +7,7 @@
var filter = $filter('filter')
$scope.rows = User.query({
- limit: 1000
+ limit: 5000
})
controller.filterRows = function (config) { |
be284e8f6e0a72ae58d861a26f8bd748dfbad156 | tasks/register/cron.js | tasks/register/cron.js | "use strict";
const path = require('path');
const Sails = require('sails');
const _ = require('lodash');
module.exports = function (grunt) {
grunt.registerTask('cron', async function (...args) {
const done = this.async();
Sails.load({ hooks: { grunt: false } }, async () => {
try {
... | "use strict";
const Sails = require('sails');
const _ = require('lodash');
module.exports = function (grunt) {
grunt.registerTask('cron', async function (...args) {
const done = this.async();
Sails.load({ hooks: { grunt: false } }, async () => {
try {
const crons = sail... | Remove reading config from file | Remove reading config from file
| JavaScript | mit | scientilla/scientilla,scientilla/scientilla,scientilla/scientilla | ---
+++
@@ -1,6 +1,5 @@
"use strict";
-const path = require('path');
const Sails = require('sails');
const _ = require('lodash');
@@ -9,9 +8,7 @@
const done = this.async();
Sails.load({ hooks: { grunt: false } }, async () => {
try {
- const filePath = path.resolve(... |
16ae1fcedba350a023ed866413cea05d2a3cd8c5 | src/js/middle_level/elements/gizmos/M_DirectionalLightGizmo.js | src/js/middle_level/elements/gizmos/M_DirectionalLightGizmo.js | import M_Gizmo from './M_Gizmo';
import Arrow from '../../../low_level/primitives/Arrow';
import ClassicMaterial from '../../../low_level/materials/ClassicMaterial';
import M_Mesh from '../meshes/M_Mesh';
import Vector4 from '../../../low_level/math/Vector4';
export default class M_DirectionalLightGizmo extends M_Gizm... | import M_Gizmo from './M_Gizmo';
import Arrow from '../../../low_level/primitives/Arrow';
import ClassicMaterial from '../../../low_level/materials/ClassicMaterial';
import M_Mesh from '../meshes/M_Mesh';
import Vector4 from '../../../low_level/math/Vector4';
export default class M_DirectionalLightGizmo extends M_Gizm... | Make directional light gizmo invisible | Make directional light gizmo invisible
| JavaScript | mit | emadurandal/GLBoost,emadurandal/GLBoost,cx20/GLBoost,cx20/GLBoost,emadurandal/GLBoost,cx20/GLBoost | ---
+++
@@ -9,7 +9,7 @@
super(glBoostContext, null, null);
this._init(glBoostContext, length);
-// this.isVisible = false;
+ this.isVisible = false;
this.baseColor = new Vector4(0.8, 0.8, 0, 1);
} |
d6ab81e3e201e08004aee6ec30d4cf0d85678886 | src/D3TopoJson.js | src/D3TopoJson.js | po.d3TopoJson = function(fetch) {
if (!arguments.length) fetch = po.queue.json;
var topoToGeo = function(url, callback) {
function convert(topology, object, layer, features) {
if (object.type == "GeometryCollection" && !object.properties) {
object.geometries.forEach(function(g) {
conver... | po.d3TopoJson = function(fetch) {
if (!arguments.length) fetch = po.queue.json;
var topologyFeatures = function(topology) {
function convert(topology, object, layer, features) {
if (object.type == "GeometryCollection" && !object.properties) {
object.geometries.forEach(function(g) {
conv... | Allow changing the function used to extract GeoJSON features from TopoJSON. | Allow changing the function used to extract GeoJSON features from TopoJSON.
| JavaScript | bsd-3-clause | dillan/mapsense.js,RavishankarDuMCA10/mapsense.js,sfchronicle/mapsense.js,manueltimita/mapsense.js,cksachdev/mapsense.js,mapsense/mapsense.js,shkfnly/mapsense.js,Laurian/mapsense.js,gimlids/mapsense.js | ---
+++
@@ -1,7 +1,7 @@
po.d3TopoJson = function(fetch) {
if (!arguments.length) fetch = po.queue.json;
- var topoToGeo = function(url, callback) {
+ var topologyFeatures = function(topology) {
function convert(topology, object, layer, features) {
if (object.type == "GeometryCollection" && !object... |
97e1d783d9a09dca204dff19bf046fc0af198643 | test/js/thumbs_test.js | test/js/thumbs_test.js | window.addEventListener('load', function(){
// touchstart
module('touchstart', environment);
test('should respond to touchstart', 1, function() {
listen('touchstart').trigger('mousedown');
});
// touchend
module('touchend', environment);
test('should respond to touchend', 1, fu... | window.addEventListener('load', function(){
// mousedown
module('mousedown', environment);
test('should respond to mousedown', 1, function() {
listen('mousedown').trigger('mousedown');
});
// mouseup
module('mouseup', environment);
test('should respond to mouseup', 1, function(... | Add mousedown/mouseup/mousemove to test suite. | Add mousedown/mouseup/mousemove to test suite.
To make sure that we do not clobber those events.
| JavaScript | mit | mwbrooks/thumbs.js,pyrinelaw/thumbs.js,pyrinelaw/thumbs.js | ---
+++
@@ -1,4 +1,28 @@
window.addEventListener('load', function(){
+
+ // mousedown
+
+ module('mousedown', environment);
+
+ test('should respond to mousedown', 1, function() {
+ listen('mousedown').trigger('mousedown');
+ });
+
+ // mouseup
+
+ module('mouseup', environment);
+
+ test... |
fbc38523508db2201e6f1c136640f560a77b7282 | lib/utils/copy.js | lib/utils/copy.js | 'use strict';
const Promise = require('bluebird');
const glob = Promise.promisify(require('glob'));
const mkdirp = Promise.promisify(require('mkdirp'));
const path = require('path');
const fs = require('fs');
const mu = require('mu2');
function compile(src, dest, settings) {
settings = settings || {};
return mkd... | 'use strict';
const Promise = require('bluebird');
const glob = Promise.promisify(require('glob'));
const mkdirp = Promise.promisify(require('mkdirp'));
const path = require('path');
const fs = require('fs');
const mu = require('mu2');
function compile(src, dest, settings) {
settings = settings || {};
return mkd... | Fix regex for template files | Fix regex for template files
The regex wasn't matching dotfiles with no file extension so modify it to also include .tpl files with no additional extension.
| JavaScript | mit | UKHomeOfficeForms/hof-generator,UKHomeOfficeForms/hof-generator | ---
+++
@@ -14,7 +14,7 @@
.then(() => {
return new Promise((resolve, reject) => {
let stream;
- if (path.basename(src).match(/\.tpl\./)) {
+ if (path.basename(src).match(/\.tpl(\.|$)/)) {
dest = dest.replace('.tpl', '');
stream = mu.compileAndRender(src, settin... |
5f3d0240de0f8dcc5abfc8962e4a1ce9ab629b83 | lib/and.js | lib/and.js | 'use strict';
var R = require('ramda');
/**
* Output a block (or its inverse) based on whether or not both of the suppied
* arguments are truthy.
*
* @since v0.0.1
* @param {*} left
* @param {*} right
* @param {Object} options
* @throws {Error} An error is thrown when the `right` argument is missing.
* @retu... | 'use strict';
var R = require('ramda');
/**
* Output a block (or its inverse) based on whether or not both of the suppied
* arguments are truthy.
*
* @since v0.0.1
* @param {*} left
* @param {*} right
* @param {Object} options
* @throws {Error} An error is thrown when the `right` argument is missing.
* @retu... | Fix typo in error message | Fix typo in error message
| JavaScript | mit | cloudfour/core-hbs-helpers | ---
+++
@@ -24,7 +24,7 @@
module.exports = function and (left, right, options) {
if (arguments.length < 3) {
- throw new Error('The "or" helper needs two arguments.');
+ throw new Error('The "and" helper needs two arguments.');
}
return R.and(left, right) ?
options.fn(this) : options.inverse(th... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.