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 |
|---|---|---|---|---|---|---|---|---|---|---|
150f734f4aae7a73a9fd3a6e6dd6017fc07cdd4d | imports/server/seed-data/seed-posts.js | imports/server/seed-data/seed-posts.js | import moment from 'moment';
import { Posts } from '../../api/collections';
const seedPosts = () => {
const postCount = Posts.find().count();
if (postCount === 0) {
for (let i = 0; i < 50; i++) {
Posts.insert({
createdAt: moment().utc().toDate(),
userId: 'QBgyG7MsqswQmvm7J',
mes... | import moment from 'moment';
import { Posts } from '../../api/collections';
const seedPosts = () => {
const post = Posts.findOne();
if (!post) {
for (let i = 0; i < 50; i++) {
Posts.insert({
userId: 'QBgyG7MsqswQmvm7J',
username: 'evancorl',
createdAt: moment().utc().toDate(),
... | Reformat posts in seed data | Reformat posts in seed data
| JavaScript | apache-2.0 | evancorl/portfolio,evancorl/skate-scenes,evancorl/portfolio,evancorl/skate-scenes,evancorl/skate-scenes,evancorl/portfolio | ---
+++
@@ -3,44 +3,41 @@
import { Posts } from '../../api/collections';
const seedPosts = () => {
- const postCount = Posts.find().count();
+ const post = Posts.findOne();
- if (postCount === 0) {
+ if (!post) {
for (let i = 0; i < 50; i++) {
Posts.insert({
+ userId: 'QBgyG7MsqswQmvm7J',... |
00d756fce1fc1f4baa3a0698fcba18421027b119 | vue.config.js | vue.config.js | const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const { NewLineKind } = require('typescript');
module.exports = {
transpileDependencies: ['vuetify'],
outputDir: './nest_desktop/app',
// https://stackoverflow.com/questions/55258355/vue-clis-type-checking-service-ignores-memory-limits... | const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const { NewLineKind } = require('typescript');
module.exports = {
productionSourceMap: false,
transpileDependencies: ['vuetify'],
outputDir: './nest_desktop/app',
// https://stackoverflow.com/questions/55258355/vue-clis-type-checking... | Disable source map for production | Disable source map for production
| JavaScript | mit | babsey/nest-desktop,babsey/nest-desktop,babsey/nest-desktop,babsey/nest-desktop,babsey/nest-desktop | ---
+++
@@ -2,6 +2,7 @@
const { NewLineKind } = require('typescript');
module.exports = {
+ productionSourceMap: false,
transpileDependencies: ['vuetify'],
outputDir: './nest_desktop/app',
// https://stackoverflow.com/questions/55258355/vue-clis-type-checking-service-ignores-memory-limits#55810460 |
f93e268e7b5a809b28061ff2815121950c896cb4 | src/models/comment.es6.js | src/models/comment.es6.js | import Base from './base';
import process from 'reddit-text-js';
class Comment extends Base {
_type = 'Comment';
constructor(props) {
super(props);
var comment = this;
this.validators = {
body: function() {
return Base.validators.minLength(this.get('body'), 1);
}.bind(comment),
... | import Base from './base';
import process from 'reddit-text-js';
class Comment extends Base {
_type = 'Comment';
constructor(props) {
super(props);
var comment = this;
this.validators = {
body: function() {
return Base.validators.minLength(this.get('body'), 1);
}.bind(comment),
... | Fix missing underscore in comment type | Fix missing underscore in comment type
| JavaScript | mit | reddit/node-api-client,curioussavage/snoode,reddit/snoode,schwers/snoode,curioussavage/snoode | ---
+++
@@ -27,7 +27,7 @@
toJSON () {
var props = this.props;
- props._type = this.type;
+ props._type = this._type;
props.bodyHtml = this.bodyHtml;
|
53990bb3625947fc37c643b33842e7f3ba8340f7 | lib/urlresolver.js | lib/urlresolver.js | var standardPageTypes = {
'event': /^(19|20)[0-9]{2}\//
};
var resolveUrl = function(urlFragment) {
return (/^http:\/\//).test(urlFragment) ? urlFragment : 'http://lanyrd.com/' + urlFragment.replace(/^\//, '');
};
var shortenUrl = function(url) {
return url.replace(/^(http:\/\/){1}(www\.)?(lanyrd\.com\/){1}|\//, '... | var standardPageTypes = {
'event': /^(19|20)[0-9]{2}\//
};
var resolveUrl = function(urlFragment) {
return (/^http:\/\//).test(urlFragment) ? urlFragment : 'http://lanyrd.com/' + urlFragment.replace(/^\//, '');
};
var shortenUrl = function(url) {
return url.replace(/^(http:\/\/.*?)?\//, '');
};
var resolvePageTyp... | Make URL shortener more forgiving | Make URL shortener more forgiving
| JavaScript | mit | markdalgleish/node-lanyrd-scraper | ---
+++
@@ -7,7 +7,7 @@
};
var shortenUrl = function(url) {
- return url.replace(/^(http:\/\/){1}(www\.)?(lanyrd\.com\/){1}|\//, '');
+ return url.replace(/^(http:\/\/.*?)?\//, '');
};
var resolvePageType = function(url, types) { |
b3d6d0ea244499c44eb0d3f8c50b1b4ddc3625f8 | src/controllers/SpotifyController.js | src/controllers/SpotifyController.js | controller = new BasicController({
supports: {
playpause: true,
next: true,
previous: true
},
useLazyObserving: true,
frameSelector: '#main, #app-player',
playStateSelector: '#play, #play-pause',
playStateClass: 'playing',
playPauseSelector: '#play, #play-pause',
nextSelector: '#next',
pre... | if (!!document.querySelector('#app-player')) { // Old Player
controller = new BasicController({
supports: {
playpause: true,
next: true,
previous: true
},
useLazyObserving: true,
frameSelector: '#app-player',
playStateSelector: '#play-pause',
playStateClass: 'playing',
playPaus... | Support New and Old Spotify | Support New and Old Spotify
| JavaScript | agpl-3.0 | cwal/chrome-media-keys,ahmedalsudani/chrome-media-keys,msfeldstein/chrome-media-keys,PeterMinin/chrome-media-keys,ahmedalsudani/chrome-media-keys,PeterMinin/chrome-media-keys,cwal/chrome-media-keys | ---
+++
@@ -1,20 +1,43 @@
-controller = new BasicController({
- supports: {
+if (!!document.querySelector('#app-player')) { // Old Player
+ controller = new BasicController({
+ supports: {
playpause: true,
next: true,
previous: true
- },
- useLazyObserving: true,
- frameSelector: '#main, #app-p... |
9b5908c0bd5bd35a092b7a3b6400f90a73ff38b7 | app/assets/javascripts/forest/admin/partials/forest_tables.js | app/assets/javascripts/forest/admin/partials/forest_tables.js | // Forest tables
$(document).on('mouseenter', '.forest-table tbody tr', function() {
var $row = $(this);
$row.addClass('active');
$(document).one('turbolinks:before-cache.forestTables', function() {
$row.removeClass('active');
});
});
$(document).on('mouseleave', '.forest-table tbody tr', function() {
... | // Forest tables
$(document).on('mouseenter', '.forest-table tbody tr', function() {
var $row = $(this);
$row.addClass('active');
$(document).one('turbolinks:before-cache.forestTables', function() {
$row.removeClass('active');
});
});
$(document).on('mouseleave', '.forest-table tbody tr', function() {
... | Allow inputs inside forest tables | Allow inputs inside forest tables
| JavaScript | mit | dylanfisher/forest,dylanfisher/forest,dylanfisher/forest | ---
+++
@@ -19,7 +19,7 @@
$(document).on('click', '.forest-table tbody tr', function(e) {
var $row = $(this);
- if ( !$(e.target).closest('a').length ) {
+ if ( !$(e.target).closest('a, input').length ) {
var $button = $row.find('a.forest-table__link:first');
if ( !$button.length ) { |
cb906f55fa6f5ad491d0828a343a6d407cdd8e80 | client/src/app.js | client/src/app.js | import createLogger from 'redux-logger';
import thunk from 'redux-thunk';
import transactionReducer from './reducers'
import { applyMiddleware, createStore } from 'redux';
import { render } from 'react-dom';
import React from 'react';
import Main from './components/Main';
import { Provider } from 'react-redux';
const... | import createLogger from 'redux-logger';
import thunk from 'redux-thunk';
import transactionReducer from './reducers'
import { applyMiddleware, createStore } from 'redux';
import { render } from 'react-dom';
import React from 'react';
import Main from './components/Main';
import { Provider } from 'react-redux';
const... | Fix middlewares order for proper thunk logging | Fix middlewares order for proper thunk logging
| JavaScript | mit | Nauktis/inab,Nauktis/inab,Nauktis/inab | ---
+++
@@ -10,8 +10,7 @@
const store = createStore(
transactionReducer,
- applyMiddleware(thunk),
- applyMiddleware(createLogger())
+ applyMiddleware(thunk, createLogger())
);
render( |
10fd21e05457f0225d39102002565cff2fff264f | src/util/filters.js | src/util/filters.js | export function filterByText(data, textFilter) {
if (textFilter === '') {
return data;
}
// case-insensitive
textFilter = textFilter.toLowerCase();
const exactMatches = [];
const substringMatches = [];
data.forEach(i => {
const name = i.name.toLowerCase();
if (name.split(' ').includes(textFil... | export function filterByText(data, textFilter) {
if (textFilter === '') {
return data;
}
// case-insensitive
textFilter = textFilter.toLowerCase();
const exactMatches = [];
const substringMatches = [];
data.forEach(i => {
const name = i.name.toLowerCase();
if (name.split(' ').includes(textFil... | Return exact results by default | Return exact results by default
| JavaScript | agpl-3.0 | Johj/cqdb,Johj/cqdb | ---
+++
@@ -16,7 +16,8 @@
}
});
- return exactMatches.concat(substringMatches);
+ // return in ascending order
+ return substringMatches.concat(exactMatches);
}
export function filterByCheckbox(data, checkboxFilters) { |
c0a1c31d1b49fddcdb790897176d9e5802da117e | client/config/bootstrap.js | client/config/bootstrap.js | /**
* Client entry point
*/
// Polyfills
import 'babel-polyfill'
// Styles
import 'components/styles/resets.css'
// Modules
import { browserHistory } from 'react-router'
import React from 'react'
import ReactDOM from 'react-dom'
import Relay from 'react-relay'
import { RelayRouter } from 'react-router-relay'
// R... | /**
* Client entry point
*/
// Polyfills
import 'babel-polyfill'
// Styles
import 'components/styles/resets.css'
// Modules
import { browserHistory } from 'react-router'
import React from 'react'
import ReactDOM from 'react-dom'
import Relay from 'react-relay'
import { RelayRouter } from 'react-router-relay'
// R... | Use raf for Relay's task scheduler | Use raf for Relay's task scheduler
| JavaScript | apache-2.0 | cesarandreu/bshed,cesarandreu/bshed | ---
+++
@@ -25,6 +25,10 @@
})
)
+// Configure Relay's task scheduler to spread out task execution
+import raf from 'raf'
+Relay.injectTaskScheduler(task => raf(task))
+
// Create the app node appended to the body
const app = document.body.appendChild(document.createElement('div'))
|
88a806cb56dadead5f48eb1a7cdec6a26fc4d166 | www/submit.js | www/submit.js | $('#task').on('change', function() {
if ( $(this).val() == 'custom') {
$('#custom_videos').removeClass('hidden');
} else {
$('#custom_videos').addClass('hidden');
}
});
| $('#task').on('change', function() {
if ( $(this).val() == 'custom') {
$('#custom_videos').removeClass('hidden');
} else {
$('#custom_videos').addClass('hidden');
}
});
$('#task').trigger('change');
| Make sure UI is consistent on load | Make sure UI is consistent on load
| JavaScript | mit | mdinger/awcy,tdaede/awcy,tdaede/awcy,mdinger/awcy,mdinger/awcy,mdinger/awcy,tdaede/awcy,tdaede/awcy,mdinger/awcy,tdaede/awcy,tdaede/awcy | ---
+++
@@ -5,3 +5,5 @@
$('#custom_videos').addClass('hidden');
}
});
+
+$('#task').trigger('change'); |
af2827c0ce2fdca4c095fb160d3fa1437fb400a6 | webpack.config.babel.js | webpack.config.babel.js | /* eslint-disable import/no-commonjs */
const webpack = require('webpack')
const baseConfig = {
entry: './src/index.js',
module: {
rules: [
{
test: /\.js$/,
use: 'babel-loader',
exclude: /node_modules/,
},
],
},
output: {
library: 'ReduxMost',
libraryTarget:... | /* eslint-disable import/no-commonjs */
const webpack = require('webpack')
const baseConfig = {
entry: './src/index.js',
module: {
rules: [
{
test: /\.js$/,
use: 'babel-loader',
exclude: /node_modules/,
},
],
},
output: {
library: 'ReduxMost',
libraryTarget:... | Add missing trailing commas in new webpack config | Add missing trailing commas in new webpack config
| JavaScript | mit | joshburgess/redux-most | ---
+++
@@ -45,7 +45,7 @@
},
plugins: [
new webpack.EnvironmentPlugin({
- 'NODE_ENV': 'development'
+ 'NODE_ENV': 'development',
}),
],
}
@@ -58,7 +58,7 @@
},
plugins: [
new webpack.EnvironmentPlugin({
- 'NODE_ENV': 'production'
+ 'NODE_ENV': 'production',
}),
... |
66037a236a0f1b099c8e06f094a7070ab37be363 | src/users/usersActions.js | src/users/usersActions.js | /* @flow strict-local */
import differenceInSeconds from 'date-fns/difference_in_seconds';
import type { Dispatch, GetState, Narrow } from '../types';
import * as api from '../api';
import { PRESENCE_RESPONSE } from '../actionConstants';
import { getAuth, tryGetAuth } from '../selectors';
import { isPrivateOrGroupNarr... | /* @flow strict-local */
import differenceInSeconds from 'date-fns/difference_in_seconds';
import type { Dispatch, GetState, Narrow } from '../types';
import * as api from '../api';
import { PRESENCE_RESPONSE } from '../actionConstants';
import { getAuth, tryGetAuth } from '../selectors';
import { isPrivateOrGroupNarr... | Initialize lastReportPresence as "long ago", not "now". | presence: Initialize lastReportPresence as "long ago", not "now".
Before we were setting it as `new Date()`. So when app was opened, this
variable was initialized as `new Date()` and we call `reportPresence`
from `fetchActions`. As diff is not >= 60, so `reportPresence` returns
without reporting to the server. And one... | JavaScript | apache-2.0 | vishwesh3/zulip-mobile,vishwesh3/zulip-mobile,vishwesh3/zulip-mobile,vishwesh3/zulip-mobile | ---
+++
@@ -7,7 +7,7 @@
import { getAuth, tryGetAuth } from '../selectors';
import { isPrivateOrGroupNarrow } from '../utils/narrow';
-let lastReportPresence = new Date();
+let lastReportPresence = new Date(0);
let lastTypingStart = new Date();
export const reportPresence = (hasFocus: boolean = true, newUserI... |
df21faead2b427c56152eca744f12ce8fcc1e0ca | package/index.js | package/index.js | /* eslint global-require: 0 */
/* eslint import/no-dynamic-require: 0 */
const Environment = require('./environment')
const { existsSync } = require('fs')
function createEnvironment() {
const path = `./environments/${process.env.NODE_ENV}`
const constructor = existsSync(path) ? require(path) : Environment
retur... | /* eslint global-require: 0 */
/* eslint import/no-dynamic-require: 0 */
const Environment = require('./environment')
const { resolve } = require('path')
const { existsSync } = require('fs')
function createEnvironment() {
const path = resolve(__dirname, 'environments', `${process.env.NODE_ENV}.js`)
const construc... | Resolve full file path + name to fix existsSync check | Resolve full file path + name to fix existsSync check
| JavaScript | mit | gauravtiwari/webpacker,gauravtiwari/webpacker,usertesting/webpacker,rossta/webpacker,rossta/webpacker,rails/webpacker,usertesting/webpacker,rails/webpacker,rossta/webpacker,rossta/webpacker,usertesting/webpacker,gauravtiwari/webpacker | ---
+++
@@ -2,10 +2,11 @@
/* eslint import/no-dynamic-require: 0 */
const Environment = require('./environment')
+const { resolve } = require('path')
const { existsSync } = require('fs')
function createEnvironment() {
- const path = `./environments/${process.env.NODE_ENV}`
+ const path = resolve(__dirname, ... |
be877f2c612fa5a4049e563193feed3f349dca75 | static/js/pedido.js | static/js/pedido.js | $(document).ready(function () {
$("#id_type_1").click(function () {
$("#id_inbound_date").parents('.row').hide();
$("#id_inbound_date_preference").parents('.row').hide();
});
$("#id_type_0").click(function () {
$("#id_inbound_date").parents('.row').show();
$("#id_inbound_date... | $(document).ready(function () {
$("#id_type_1").click(function () {
$("#id_inbound_date").parents('.row').hide();
$("#id_inbound_date_preference").parents('.row').hide();
});
$("#id_type_0").click(function () {
$("#id_inbound_date").parents('.row').show();
$("#id_inbound_date... | Hide or show inbound date according with type of trip selected | Hide or show inbound date according with type of trip selected
| JavaScript | mpl-2.0 | neuromat/nira,neuromat/nira,neuromat/nira | ---
+++
@@ -7,4 +7,8 @@
$("#id_inbound_date").parents('.row').show();
$("#id_inbound_date_preference").parents('.row').show();
});
+ if (id_type_1.checked){
+ $("#id_inbound_date").parents('.row').hide();
+ $("#id_inbound_date_preference").parents('.row').hide();
+ }
}); |
a8ad29163c1021ccc7055f06745d8b1a43623f3e | helper_functions/price_discount.js | helper_functions/price_discount.js | // priceDiscount function
// Discounts sale price by 15% is price is > $8,000
module.exports.priceDiscount = (price) => {
if (price > 8000) {
return price * .15
}
return price;
}; | // priceDiscount function
// Discounts sale price by 15% is price is > $8,000
module.exports.priceDiscount = (price) => {
if (price > 8000) {
return price / 1.15
}
return price;
}; | Fix function so it properly deducts 15% from price | Fix function so it properly deducts 15% from price
| JavaScript | mit | dshaps10/full-stack-demo-site,dshaps10/full-stack-demo-site | ---
+++
@@ -2,7 +2,7 @@
// Discounts sale price by 15% is price is > $8,000
module.exports.priceDiscount = (price) => {
if (price > 8000) {
- return price * .15
+ return price / 1.15
}
return price;
}; |
86b19d7030564176a56d2c1ab20ebe16df33066f | src/countdown/countdown.js | src/countdown/countdown.js | angular.module('ngIdle.countdown', ['ngIdle.idle'])
.directive('idleCountdown', ['Idle', function(Idle) {
return {
restrict: 'A',
scope: {
value: '=idleCountdown'
},
link: function($scope) {
// Initialize the scope's value to the configured timeout.
$scope.value = I... | angular.module('ngIdle.countdown', ['ngIdle.idle'])
.directive('idleCountdown', ['Idle', function(Idle) {
return {
restrict: 'A',
scope: {
value: '=idleCountdown'
},
link: function($scope) {
// Initialize the scope's value to the configured timeout.
$scope.value = I... | Use Idle.getTimeout() instead of internal _options() | Use Idle.getTimeout() instead of internal _options()
| JavaScript | mit | dgoncalves1/ng-idle,JCherryhomes/ng-idle,HackedByChinese/ng-idle,koitoer/ng-idle,MasterFacilityList/ng-idle,JCherryhomes/ng-idle,koitoer/ng-idle,karthilxg/ng-idle,MasterFacilityList/ng-idle,karthilxg/ng-idle,msuresu/ng-idle,seegno-forks/ng-idle,jpribesh/ng-idle,dgoncalves1/ng-idle,seegno-forks/ng-idle,msuresu/ng-idle,j... | ---
+++
@@ -7,7 +7,7 @@
},
link: function($scope) {
// Initialize the scope's value to the configured timeout.
- $scope.value = Idle._options().timeout;
+ $scope.value = Idle.getTimeout();
$scope.$on('IdleWarn', function(e, countdown) {
$scope.$apply(function... |
d36c1654f985684fc798cb703f1c5b24f10f102d | gulpfile.babel.js | gulpfile.babel.js | import WebpackDevServer from 'webpack-dev-server';
import config from './webpack.config.js';
import gulp from 'gulp';
import gutil from 'gulp-util';
import webpack from 'webpack';
gulp.task('default', ['webpack-dev-server']);
gulp.task('build', ['webpack:build']);
gulp.task('webpack:build', callback => {
const myC... | import WebpackDevServer from 'webpack-dev-server';
import config from './webpack.config.js';
import gulp from 'gulp';
import gutil from 'gulp-util';
import webpack from 'webpack';
gulp.task('default', ['webpack-dev-server']);
gulp.task('build', ['webpack:build']);
gulp.task('webpack:build', callback => {
const myC... | Use the right port number | Use the right port number
I find this makes all the difference...
| JavaScript | mit | wincent/hextrapolate,cpojer/hextrapolate,wincent/hextrapolate,cpojer/hextrapolate,cpojer/hextrapolate,wincent/hextrapolate | ---
+++
@@ -46,7 +46,7 @@
stats: {
colors: true,
},
- }).listen(8080, 'localhost', err => {
+ }).listen(3000, 'localhost', err => {
if (err) {
throw new gutil.PluginError('webpack-dev-server', err);
} |
d377b7d8bfaf88408fdf3ef3182fb15df4689924 | src/configs/webpack/project-config.js | src/configs/webpack/project-config.js | 'use strict';
var tmpl = require('blueimp-tmpl').tmpl;
var path = require('path');
var readTemplate = require('../../utils/read-template');
var projectName = require('project-name');
function buildProjectWebpackConfig(options) {
var params = options || {};
var config = {};
if (params.env !== 'development' && ... | 'use strict';
var tmpl = require('blueimp-tmpl').tmpl;
var path = require('path');
var readTemplate = require('../../utils/read-template');
var projectName = require('project-name');
function buildProjectWebpackConfig(options) {
var params = options || {};
var config = {};
if (params.env !== 'development' && ... | Update webpack project config path | Update webpack project config path
| JavaScript | mit | mikechau/js-config-gen,mikechau/js-config-gen | ---
+++
@@ -18,7 +18,7 @@
env: params.env
};
- config.webpackConfigPath = './' + path.join('node_modules', projectName(process.cwd()), 'dist', params.group);
+ config.webpackConfigPath = './' + path.join('node_modules', projectName(process.cwd()), 'dist', params.group, 'project-webpack.config.' + options.... |
8fd75333771f1fd3170c0796740c730b2f0eb807 | test/graphics/iconSpec.js | test/graphics/iconSpec.js | define(["sugar-web/graphics/icon"], function (icon) {
describe("icon", function () {
var wasLoaded;
var iconUrlResult;
it("should be able to change icon more than once", function () {
var elem = document.createElement('div');
var iconUrl;
function callba... | define(["sugar-web/graphics/icon"], function (icon) {
describe("icon", function () {
var wasLoaded;
var iconUrlResult;
it("should be able to change icon more than once", function () {
var elem = document.createElement('div');
var iconUrl;
function callba... | Use /base in the SVG path | Use /base in the SVG path
Unfortunatly we need that.
| JavaScript | apache-2.0 | godiard/sugar-web,sugarlabs/sugar-web | ---
+++
@@ -14,7 +14,7 @@
runs(function () {
wasLoaded = false;
- iconUrl = "graphics/icons/actions/dialog-ok-active.svg";
+ iconUrl = "/base/graphics/icons/actions/dialog-ok-active.svg";
iconInfo = {
"uri": iconUrl,
... |
55474b5c3cb32f1cc53fe56b82d21c04a98a560e | app/assets/javascripts/evZoom.js | app/assets/javascripts/evZoom.js | $(function() {
$('#zoom_01').elevateZoom();
});
| $(function() {
$('#zoom_01').elevateZoom();
$('.zoom').each(function(element) {
$(this).elevateZoom()
});
});
| Update ElevateZoom uses class .zoom | Update ElevateZoom uses class .zoom | JavaScript | mit | gouf/test_elevate_zoom,gouf/test_elevate_zoom | ---
+++
@@ -1,3 +1,7 @@
$(function() {
$('#zoom_01').elevateZoom();
+
+ $('.zoom').each(function(element) {
+ $(this).elevateZoom()
+ });
}); |
37a73986d3d36353a30e661b3989dcd8a646bc39 | 04/jjhampton-ch4-list.js | 04/jjhampton-ch4-list.js | // Write a function arrayToList that builds up a data structure like the previous one when given [1, 2, 3] as argument, and write a listToArray function that produces an array from a list. Also write the helper functions prepend, which takes an element and a list and creates a new list that adds the element to the fron... | // Write a function arrayToList that builds up a data structure like the previous one when given [1, 2, 3] as argument, and write a listToArray function that produces an array from a list. Also write the helper functions prepend, which takes an element and a list and creates a new list that adds the element to the fron... | Refactor listToArray to work with list parameters of dynamic sizes | Refactor listToArray to work with list parameters of dynamic sizes
| JavaScript | mit | OperationCode/eloquent-js | ---
+++
@@ -16,17 +16,15 @@
console.log(arrayToList(theArray));
function listToArray(list) {
- console.log(list);
- const array = [
- list.value,
- list.rest.value,
- list.rest.rest.value
- ];
+ let array = [];
+ for (let currentNode = list; currentNode; currentNode = current... |
338634c1d6baeb464d3f723452427a8cd0d60929 | test/smoke-tests.js | test/smoke-tests.js | var assert = require('assert')
// , expresso = require('expresso')
, dustx = require('dust-x')
module.exports = {
'test 1': function(end) {
assert.ok(true, 'pre-test')
end(function() {
assert.ok(false, 'post-test')
})
}
}
| var assert = require('assert')
, app = require('../example/app')
module.exports = {
'GET /': function() {
assert.response(app,
{ url: '/' },
{ status: 200, headers: { 'Content-Type': 'text/html; charset=utf-8' }},
function(res) {
assert.includes(res.bod... | Fix smoke-test to do something useful. | Fix smoke-test to do something useful.
| JavaScript | mit | laurie71/dust-x | ---
+++
@@ -1,13 +1,14 @@
var assert = require('assert')
- // , expresso = require('expresso')
- , dustx = require('dust-x')
-
+ , app = require('../example/app')
+
module.exports = {
- 'test 1': function(end) {
- assert.ok(true, 'pre-test')
-
- end(function() {
- assert.ok(... |
4a189c3a3dd1f0304a788c280d1839d94c40dc47 | tests/acceptance.js | tests/acceptance.js | var assert = require('chai').assert;
var http = require('http');
var mathServer = require('../lib/mathServer.js');
var request = require('supertest');
process.env.NODE_ENV = 'test';
describe('Acceptance test', function () {
var port = 8006;
var server;
before(function () {
process.on('stdout', fu... | var assert = require('chai').assert;
var http = require('http');
var mathServer = require('../lib/mathServer.js');
var request = require('supertest');
process.env.NODE_ENV = 'test';
describe.only('Acceptance test', function () {
var port = 8006;
var server;
before(function () {
server = mathServe... | Fix supertest to not overwrite request | Fix supertest to not overwrite request
| JavaScript | mit | antonleykin/InteractiveShell,fhinkel/InteractiveShell,fhinkel/InteractiveShell,antonleykin/InteractiveShell,fhinkel/InteractiveShell,antonleykin/InteractiveShell,fhinkel/InteractiveShell | ---
+++
@@ -5,22 +5,17 @@
process.env.NODE_ENV = 'test';
-describe('Acceptance test', function () {
+describe.only('Acceptance test', function () {
var port = 8006;
var server;
before(function () {
- process.on('stdout', function(data) {
- console.log('**' + data);
- });... |
15eb9523a92822b762a6e2c1cdc2a3d1f8426a8e | tests/test-utils.js | tests/test-utils.js | import { underscore } from '@ember/string';
export function serializer(payload) {
const serializedPayload = {};
Object.keys(payload.attrs).map((_key) => {
serializedPayload[underscore(_key)] = payload[_key];
});
return serializedPayload;
}
| import { underscore } from '@ember/string';
function _serialize_object(payload) {
const serializedPayload = {};
Object.keys(payload.attrs).map((_key) => {
serializedPayload[underscore(_key)] = payload[_key];
});
return serializedPayload;
}
export function serializer(data, many = false) {
if (many == tru... | Refactor serializer to support list | Refactor serializer to support list
| JavaScript | agpl-3.0 | appknox/irene,appknox/irene,appknox/irene | ---
+++
@@ -1,9 +1,24 @@
import { underscore } from '@ember/string';
-export function serializer(payload) {
+function _serialize_object(payload) {
const serializedPayload = {};
Object.keys(payload.attrs).map((_key) => {
serializedPayload[underscore(_key)] = payload[_key];
});
return serializedPayl... |
61f824798c65b00721bda812228c5357e83bbcd7 | karma.conf.js | karma.conf.js | // Karma configuration
// base path, that will be used to resolve files and exclude
basePath = '';
// list of files / patterns to load in the browser
files = [
JASMINE,
JASMINE_ADAPTER,
'test/components/angular/angular.js',
'test/components/angular-mocks/angular-mocks.js',
'src/scripts/*.js',
'src/script... | // Karma configuration
// base path, that will be used to resolve files and exclude
basePath = '';
// list of files / patterns to load in the browser
files = [
JASMINE,
JASMINE_ADAPTER,
'test/components/angular/angular.js',
'test/components/angular-mocks/angular-mocks.js',
'src/scripts/*.js',
'src/script... | Use log level of INFO for karma | test: Use log level of INFO for karma
| JavaScript | mit | Malkiat-Singh/angular-snap.js,kzganesan/angular-snap.js,jtrussell/angular-snap.js,Malkiat-Singh/angular-snap.js,kzganesan/angular-snap.js,jtrussell/angular-snap.js | ---
+++
@@ -34,7 +34,7 @@
// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
-logLevel = LOG_DEBUG;
+logLevel = LOG_INFO;
// enable / disable watching file and executing tests whenever any file changes
autoWatch = true; |
1060df09e87e63a0a14e5cfa9d206721fa6d14cf | katas/tags.js | katas/tags.js | export const SPECIFICATION = 'spec';
export const MDN = 'mdn';
export const VIDEO = 'video';
export const ARTICLE = 'article';
export const DOCS = 'docs';
export const ANNOUNCEMENT = 'announcement';
export const BOOK = 'book';
export const QUOTE = 'quote';
export const DISCUSSION = 'discussion';
| export const SPECIFICATION = 'spec';
export const MDN = 'mdn';
export const VIDEO = 'video';
export const ARTICLE = 'article';
export const DOCS = 'docs';
export const ANNOUNCEMENT = 'announcement';
export const BOOK = 'book';
export const QUOTE = 'quote';
export const DISCUSSION = 'discussion';
export const WIKIPEDIA ... | Add wikipedia as a tag. | Add wikipedia as a tag. | JavaScript | mit | tddbin/katas,tddbin/katas,tddbin/katas | ---
+++
@@ -7,3 +7,4 @@
export const BOOK = 'book';
export const QUOTE = 'quote';
export const DISCUSSION = 'discussion';
+export const WIKIPEDIA = 'wikipedia'; |
9fe0c1a5abd33fdbf4e2c90dd60874ec56b1e58c | src/js/xhr.js | src/js/xhr.js | var Q = require("../vendor/q/q");
exports.post = function (url, data) {
console.log('posting to', url);
var defer = Q.defer();
var xhr = new XMLHttpRequest();
xhr.onerror = function(err) {
console.log('XMLHttpRequest error: ' + err);
defer.reject(err);
};
xhr.onreadystatechange = function () {
... | var Q = require("../vendor/q/q");
exports.post = function (url, data) {
console.log('posting to', url);
var defer = Q.defer();
var xhr = new XMLHttpRequest();
xhr.onerror = function(err) {
console.log('XMLHttpRequest error: ' + err);
defer.reject(err);
};
xhr.onreadystatechange = function () {
... | Make XHR compatible with new Kitt implementation | Make XHR compatible with new Kitt implementation | JavaScript | apache-2.0 | kitt-browser/pocket,kitt-browser/pocket | ---
+++
@@ -13,7 +13,12 @@
xhr.onreadystatechange = function () {
console.log('ready state change, state:' + xhr.readyState + ' ' + xhr.status);
if (xhr.readyState === 4 && xhr.status === 200) {
- defer.resolve(JSON.parse(xhr.responseText));
+ if(xhr.responseType === 'json') {
+ defer.re... |
3f1b7263c9f33ff205ac5ca3fa1466532906b3d1 | client/common/actions/index.js | client/common/actions/index.js | import types from '../constants/ActionTypes'
import utils from '../../shared/utils'
function replaceUserInfo(userInfo) {
return {
type: types.REPLACE_USER_INFO,
userInfo
}
}
function fetchUserInfo() {
return dispatch => {
utils.ajax({url: '/api/user/getUserInfo'}).then(res => {
... | import types from '../constants/ActionTypes'
import utils from '../../shared/utils'
function replaceUserInfo(userInfo) {
return {
type: types.REPLACE_USER_INFO,
userInfo
}
}
function clearUserInfo() {
return {type: types.CLEAR_USER_INFO}
}
function fetchUserInfo() {
return dispatch =>... | Add plain object action clearUserInfo | Add plain object action clearUserInfo
| JavaScript | mit | chikara-chan/react-isomorphic-boilerplate,qiuye1027/screenInteraction,qiuye1027/screenInteraction,chikara-chan/react-isomorphic-boilerplate | ---
+++
@@ -6,6 +6,10 @@
type: types.REPLACE_USER_INFO,
userInfo
}
+}
+
+function clearUserInfo() {
+ return {type: types.CLEAR_USER_INFO}
}
function fetchUserInfo() { |
e5ce6180efaea8382a8514501ebb7bae88c3b541 | views/crud-model.js | views/crud-model.js | var app = require('ridge');
module.exports = require('ridge/view').extend({
events: {
'click button': function(e) {
e.preventDefault();
e.stopPropagation();
},
'click button[data-command="publish"]': 'publish',
'click button[data-command="unpublish"]': 'unpublish',
'click button[data-command="delete"]... | var app = require('ridge');
module.exports = require('ridge/view').extend({
events: {
'click button,select,input': function(e) {
e.stopPropagation();
},
'click button': function(e) {
e.preventDefault();
},
'click button[data-command="publish"]': 'publish',
'click button[data-command="unpublish"]': '... | Stop propagation for clicks (since a click on model view can toggle more information. | Stop propagation for clicks (since a click on model view can toggle more information.
| JavaScript | mit | thecodebureau/ridge | ---
+++
@@ -2,9 +2,11 @@
module.exports = require('ridge/view').extend({
events: {
+ 'click button,select,input': function(e) {
+ e.stopPropagation();
+ },
'click button': function(e) {
e.preventDefault();
- e.stopPropagation();
},
'click button[data-command="publish"]': 'publish',
'click b... |
e033d945329bb146ee82fc9d51f04665b950aa6b | src/server.js | src/server.js | let Path = require('path');
let Hapi = require('hapi');
var Good = require('good');
let server = new Hapi.Server({
connections: {
routes: {
files: {
relativeTo: Path.join(__dirname, 'public')
}
}
}
});
server.connection({ port: 3000 });
server.route({
method: 'GET',
path: '/',
ha... | let Path = require('path');
let Hapi = require('hapi');
var Good = require('good');
let server = new Hapi.Server({
connections: {
routes: {
files: {
relativeTo: Path.join(__dirname, 'public')
}
}
}
});
server.connection({ port: 3000 });
server.route({
method: 'GET',
path: '/',
ha... | Add handler for blog path | Add handler for blog path
| JavaScript | mit | bbondy/brianbondy.node,bbondy/brianbondy.node,bbondy/brianbondy.node | ---
+++
@@ -24,6 +24,14 @@
server.route({
method: 'GET',
path: '/{name}',
+ handler: function (request, reply) {
+ reply.file('index.html');
+ }
+});
+
+server.route({
+ method: 'GET',
+ path: '/blog/{name}',
handler: function (request, reply) {
reply.file('index.html');
} |
fa60bd7e2d0eec674595bff231c05d364f4d4aa1 | lib/helper.js | lib/helper.js | var helper = exports;
var copyDir = helper.copyDir = function (source, target) {
var fs = require('fs');
var dir = fs.readdirSync(source);
dir.forEach(function(item){
var s = fs.statSync(source + '/' + item);
if(s.isDirectory()) {
try {
fs.mkdirSync(target + '/' + item);
} catch (err) ... | var helper = exports;
var copyDir = helper.copyDir = function (source, target) {
var fs = require('fs');
var dir = fs.readdirSync(source);
dir.forEach(function(item){
var s = fs.statSync(source + '/' + item);
if(s.isDirectory()) {
try {
fs.mkdirSync(target + '/' + item);
} catch (err) ... | Remove references to "big" in resource installing code. Resources should now install to the correct application directory. | [fix] Remove references to "big" in resource installing code. Resources should now install to the correct application directory. | JavaScript | mit | bigcompany/resource | ---
+++
@@ -18,33 +18,32 @@
};
//
-// Ascertain the root folder of the user's application.
+// Determine the root folder of the user's application
//
var appDir = helper.appDir = (function () {
- var path = require('path'),
+ var path = require('path'),
fs = require('fs'),
- p;
+ p = process.c... |
3dcafb57bbc59709e5722fbdac07ad9493db4949 | CalcuMan/src/classes/SoundsManager.js | CalcuMan/src/classes/SoundsManager.js | /**
* @flow
*/
import {default as Sound} from 'react-native-sound'
export default class SoundsManager {
constructor (onChangeCallback) {
this.muted = false
this.sounds = {}
this.onChangeCallback = onChangeCallback
this.loadSound('toggle_on')
this.loadSound('toggle_off')
this.loadSound('ti... | /**
* @flow
*/
import {default as Sound} from 'react-native-sound'
export default class SoundsManager {
constructor (onChangeCallback) {
this.muted = false
this.sounds = {}
this.onChangeCallback = onChangeCallback
this.lastPlayed = null
this.loadSound('toggle_on')
this.loadSound('toggle_o... | Stop previous sound before play new one | Stop previous sound before play new one
| JavaScript | mit | antonfisher/game-calcuman,antonfisher/game-calcuman,antonfisher/game-calcuman | ---
+++
@@ -9,6 +9,7 @@
this.muted = false
this.sounds = {}
this.onChangeCallback = onChangeCallback
+ this.lastPlayed = null
this.loadSound('toggle_on')
this.loadSound('toggle_off')
@@ -21,6 +22,10 @@
play (key) {
if (!this.muted) {
+ if (this.lastPlayed && this.lastPlaye... |
185e50fb0d94bbde6abb94c47e36046746912306 | .gificiency/.gificiency.js | .gificiency/.gificiency.js | var Gificiency = (function() {
'use strict';
var search = function(filter) {
$('a').each(function() {
var elem = $(this);
if (elem.text().search( new RegExp(filter, 'i') ) < 0) {
elem.hide();
} else {
elem.show();
}
});
};
var getHash = function() {
var filt... | var Gificiency = (function() {
'use strict';
var searchField = $('.search');
var items = $('li');
var links = $('a');
var search = function(filter) {
links.each(function() {
var elem = $(this);
if (elem.text().search( new RegExp(filter, 'i') ) < 0) {
elem.hide();
} else {
... | Set private vars, move events to public function | Set private vars, move events to public function
| JavaScript | mit | drewbarontini/gificiency,drewbarontini/gificiency,drewbarontini/gificiency | ---
+++
@@ -1,8 +1,12 @@
var Gificiency = (function() {
'use strict';
+ var searchField = $('.search');
+ var items = $('li');
+ var links = $('a');
+
var search = function(filter) {
- $('a').each(function() {
+ links.each(function() {
var elem = $(this);
if (elem.text().search( new Re... |
a29a99b9a2bfedd5528be677ff24c4db2b19115a | backend/app/assets/javascripts/spree/backend/product_picker.js | backend/app/assets/javascripts/spree/backend/product_picker.js | $.fn.productAutocomplete = function (options) {
'use strict';
// Default options
options = options || {};
var multiple = typeof(options.multiple) !== 'undefined' ? options.multiple : true;
this.select2({
minimumInputLength: 3,
multiple: multiple,
initSelection: function (element, callback) {
... | $.fn.productAutocomplete = function (options) {
'use strict';
// Default options
options = options || {};
var multiple = typeof(options.multiple) !== 'undefined' ? options.multiple : true;
this.select2({
minimumInputLength: 3,
multiple: multiple,
initSelection: function (element, callback) {
... | Add missing api key in product picker. | Add missing api key in product picker.
Fixes #6185
| JavaScript | bsd-3-clause | jasonfb/spree,mindvolt/spree,alvinjean/spree,adaddeo/spree,jspizziri/spree,sfcgeorge/spree,gregoryrikson/spree-sample,beni55/spree,JDutil/spree,rajeevriitm/spree,radarseesradar/spree,jparr/spree,JuandGirald/spree,useiichi/spree,CJMrozek/spree,ayb/spree,priyank-gupta/spree,builtbybuffalo/spree,Engeltj/spree,tancnle/spre... | ---
+++
@@ -10,7 +10,8 @@
multiple: multiple,
initSelection: function (element, callback) {
$.get(Spree.routes.product_search, {
- ids: element.val().split(',')
+ ids: element.val().split(','),
+ token: Spree.api_key
}, function (data) {
callback(multiple ? data.p... |
90dd6b7b21c519c7c8fffd9833992e9de4cf8d95 | web/editor.js | web/editor.js | import { getQueryStringParam, substanceGlobals, platform } from 'substance'
import { TextureWebApp } from 'substance-texture'
window.addEventListener('load', () => {
substanceGlobals.DEBUG_RENDERING = platform.devtools
let app = TextureWebApp.mount({
archiveId: getQueryStringParam('archive') || 'kitchen-sink',... | import {
getQueryStringParam, substanceGlobals, platform, VfsStorageClient, HttpStorageClient, InMemoryDarBuffer
} from 'substance'
import { TextureWebApp, TextureArchive } from 'substance-texture'
window.addEventListener('load', () => {
substanceGlobals.DEBUG_RENDERING = platform.devtools
let app = DevTextureWe... | Add a hook to the web version that checks on save if the archive can be loaded again. | Add a hook to the web version that checks on save if the archive can be loaded again.
| JavaScript | mit | substance/texture,substance/texture | ---
+++
@@ -1,9 +1,11 @@
-import { getQueryStringParam, substanceGlobals, platform } from 'substance'
-import { TextureWebApp } from 'substance-texture'
+import {
+ getQueryStringParam, substanceGlobals, platform, VfsStorageClient, HttpStorageClient, InMemoryDarBuffer
+} from 'substance'
+import { TextureWebApp, Tex... |
cc5aa2d5902750420cb9dfde1acec0893e22df40 | test/spec/react-loader-test.js | test/spec/react-loader-test.js | /** @jsx React.DOM */
var React = require('react');
var Loader = require('../../lib/react-loader');
var expect = require('chai').expect;
var loader;
describe('Loader', function () {
describe('before loaded', function () {
beforeEach(function () {
loader = <Loader loaded={false}>Welcome</Loader>;
Re... | /** @jsx React.DOM */
var React = require('react');
var Loader = require('../../lib/react-loader');
var expect = require('chai').expect;
describe('Loader', function () {
var testCases = [{
description: 'loading is in progress',
options: { loaded: false },
expectedOutput: /<div class="loader".*<div class... | Update test suite to ensure spinner and spinner options are rendered as expected | Update test suite to ensure spinner and spinner options are rendered as expected
| JavaScript | mit | CarLingo/react-loader,gokulkrishh/react-loader,alengel/react-loader,aparticka/react-loader,CarLingo/react-loader,quickleft/react-loader,CognizantStudio/react-loader,CognizantStudio/react-loader,aparticka/react-loader,quickleft/react-loader,gokulkrishh/react-loader,dallonf/react-loader,insekkei/react-loader,dallonf/reac... | ---
+++
@@ -4,36 +4,33 @@
var Loader = require('../../lib/react-loader');
var expect = require('chai').expect;
-var loader;
+describe('Loader', function () {
+ var testCases = [{
+ description: 'loading is in progress',
+ options: { loaded: false },
+ expectedOutput: /<div class="loader".*<div class="sp... |
64038fb9752955742180bc734fb8686dede22662 | app/index.js | app/index.js | import React from 'react'
import ReactDOM from 'react-dom'
import getRoutes from './config/routes'
import { createStore, applyMiddleware } from 'redux'
import { Provider } from 'react-redux'
import users from 'redux/modules/users'
import thunk from 'redux-thunk'
import { checkIfAuthed } from 'helpers/auth'
const store... | import React from 'react'
import ReactDOM from 'react-dom'
import getRoutes from './config/routes'
import { createStore, applyMiddleware, compose } from 'redux'
import { Provider } from 'react-redux'
import users from 'redux/modules/users'
import thunk from 'redux-thunk'
import { checkIfAuthed } from 'helpers/auth'
co... | Include redux devtools through compose | Include redux devtools through compose
| JavaScript | mit | StuartPearlman/duckr,StuartPearlman/duckr | ---
+++
@@ -1,13 +1,16 @@
import React from 'react'
import ReactDOM from 'react-dom'
import getRoutes from './config/routes'
-import { createStore, applyMiddleware } from 'redux'
+import { createStore, applyMiddleware, compose } from 'redux'
import { Provider } from 'react-redux'
import users from 'redux/modules... |
bf669b035df93e5e27b5683ad59c3b68e0ac5fdb | client/partials/mybilltable.js | client/partials/mybilltable.js | Template.mybilltable.created = function(){
Session.set('message', '');
};
Template.mybilltable.helpers({
onReady: function(){
//Meteor.subscribe("mybills");
},
bill: function(){
return bills.find({ registeredby: Meteor.userId() });
},
nobills: function(){
var thebills = bills.find({ registere... | Template.mybilltable.created = function(){
Session.set('message', '');
};
Template.mybilltable.helpers({
onReady: function(){
//Meteor.subscribe("mybills");
},
bill: function(){
return bills.find({ registeredby: Meteor.userId() });
},
nobills: function(){
var thebills = bills.find({ registere... | Fix link in Profile error message. | Fix link in Profile error message.
| JavaScript | mit | celsom3/undocumoney,celsom3/undocumoney | ---
+++
@@ -14,7 +14,7 @@
nobills: function(){
var thebills = bills.find({ registeredby: Meteor.userId() }).fetch();
if (thebills.length === 0){
- Session.set('message','<div class="no-data alert alert-danger">You haven\'t registered any bills! <a href="{{ pathFor "newbill" }}">Register your first b... |
09e3525e15e891760bcb737c9948d774aa12f061 | frontend/src/sub-components/translate.js | frontend/src/sub-components/translate.js | import privateInfo from "../../../../../credentials/token.json";
/**
* Fetches translated text using the Google Translate API
*/
export function getTranslation(term, fromLang, toLang) {
const response = fetch("/translation", {
method: "POST",
headers: {
Accept: "application/json",
"Content-Type... | import privateInfo from "../../../../../credentials/token.json";
/**
* Fetches translated text using the Google Translate API
*/
export function getTranslation(term, fromLang, toLang) {
const response = fetch("/translation", {
method: "POST",
headers: {
Accept: "application/json",
"Content-Type... | Remove console.log from all files | Remove console.log from all files
| JavaScript | apache-2.0 | google/step197-2020,google/step197-2020,google/step197-2020,google/step197-2020 | ---
+++
@@ -18,7 +18,6 @@
})
.then((res) => res.json())
.then((result) => {
- console.log(result);
return result.translation;
})
.catch((error) => { |
89180adaf71fda52a3879cace74c66a7fb8677fd | __tests__/e2e/01_StarRating.test.js | __tests__/e2e/01_StarRating.test.js | import test from 'tape-async'
import helper from 'tipsi-appium-helper'
const { driver, select, idFromXPath } = helper
test('<StarRating />', async (t) => {
const starsAndTextId = select({
ios: idFromXPath(`//
XCUIElementTypeScrollView/*/*/XCUIElementTypeOther[2]/
XCUIElementTypeOther/XCUIElementType... | import test from 'tape-async'
import helper from 'tipsi-appium-helper'
const { driver, select, idFromXPath } = helper
test('<StarRating />', async (t) => {
const starsAndTextId = select({
ios: idFromXPath(`//
XCUIElementTypeScrollView/*/*/XCUIElementTypeOther[2]/
XCUIElementTypeOther/XCUIElementType... | Update timer for star rating | Update timer for star rating
| JavaScript | mit | tipsi/tipsi-ui-kit,tipsi/tipsi-ui-kit,tipsi/tipsi-ui-kit,tipsi/tipsi-ui-kit | ---
+++
@@ -18,7 +18,7 @@
try {
await helper.openExampleFor('<StarRating />')
const elements = await driver
- .waitForVisible(starsAndTextId, 5000)
+ .waitForVisible(starsAndTextId, 20000)
.elements(starsAndTextId)
t.same( |
959ab8d9aa78c7fc931a25d94c3721585368d6f5 | addon/-private/ember-environment.js | addon/-private/ember-environment.js | import Ember from 'ember';
import { defer } from 'rsvp';
import { Environment } from './external/environment';
import { assert } from '@ember/debug';
import { join, next, once } from '@ember/runloop';
export class EmberEnvironment extends Environment {
assert(...args) {
assert(...args);
}
async(callback) {
... | import Ember from 'ember';
import { defer } from 'rsvp';
import { Environment } from './external/environment';
import { assert } from '@ember/debug';
import { join, next, schedule } from '@ember/runloop';
export class EmberEnvironment extends Environment {
assert(...args) {
assert(...args);
}
async(callback... | Fix inefficient use of run.once by EmberEnvironment.async | Fix inefficient use of run.once by EmberEnvironment.async
| JavaScript | mit | machty/ember-concurrency,machty/ember-concurrency,machty/ember-concurrency,machty/ember-concurrency | ---
+++
@@ -2,7 +2,7 @@
import { defer } from 'rsvp';
import { Environment } from './external/environment';
import { assert } from '@ember/debug';
-import { join, next, once } from '@ember/runloop';
+import { join, next, schedule } from '@ember/runloop';
export class EmberEnvironment extends Environment {
as... |
30f098e5baab15c95a111050d02ec4e9a16ffcbe | test/postgres-sql-loader.js | test/postgres-sql-loader.js | // Test that loading SQL files for PostgreSQL works.
'use strict';
var Code = require('code');
var Lab = require('lab');
var Querious = require('../index');
var path = require('path');
var lab = module.exports.lab = Lab.script();
lab.experiment('PostgreSQL sql file loading', function () {
lab.test('it works with ... | // Test that loading SQL files for PostgreSQL works.
'use strict';
var Code = require('code');
var Lab = require('lab');
var Querious = require('../index');
var path = require('path');
var lab = module.exports.lab = Lab.script();
lab.experiment('PostgreSQL sql file loading', function () {
lab.test('it works with ... | Test for ambigous file loading. | Test for ambigous file loading.
| JavaScript | isc | mikl/querious | ---
+++
@@ -38,4 +38,18 @@
done();
});
});
+
+ lab.test('it fails when loading a non-existing file', function (done) {
+ var instance = new Querious({
+ dialect: 'postgresql',
+ sql_folder: path.resolve(__dirname, 'sql/postgresql')
+ });
+
+ instance.loadSql('does-not-exist', functi... |
42a38b012ae01477845ef926d4620b12f0a418f6 | prime/index.test.js | prime/index.test.js | /* eslint-env node, jest */
const shogi = require('./index.js');
const Slack = require('../lib/slackMock.js');
jest.mock('../achievements/index.ts');
let slack = null;
beforeEach(() => {
slack = new Slack();
process.env.CHANNEL_SANDBOX = slack.fakeChannel;
shogi(slack);
});
describe('shogi', () => {
it('respon... | /* eslint-env node, jest */
jest.mock('../achievements/index.ts');
const shogi = require('./index.js');
const Slack = require('../lib/slackMock.js');
let slack = null;
beforeEach(() => {
slack = new Slack();
process.env.CHANNEL_SANDBOX = slack.fakeChannel;
shogi(slack);
});
describe('shogi', () => {
it('respon... | Fix order of invokation of achievement mocking | Fix order of invokation of achievement mocking
| JavaScript | mit | tsg-ut/slackbot,tsg-ut/slackbot,tsg-ut/slackbot,tsg-ut/slackbot,tsg-ut/slackbot,tsg-ut/slackbot | ---
+++
@@ -1,9 +1,9 @@
/* eslint-env node, jest */
+
+jest.mock('../achievements/index.ts');
const shogi = require('./index.js');
const Slack = require('../lib/slackMock.js');
-
-jest.mock('../achievements/index.ts');
let slack = null;
|
5b9aca9656e2456b7060d5cdbb62226d7b8d1ea0 | lib/generators/jasmine/examples/templates/spec/javascripts/helpers/SpecHelper.js | lib/generators/jasmine/examples/templates/spec/javascripts/helpers/SpecHelper.js | beforeEach(function() {
this.addMatchers({
toBePlaying: function(expectedSong) {
var player = this.actual;
return player.currentlyPlayingSong === expectedSong
&& player.isPlaying;
}
})
});
| beforeEach(function() {
addMatchers({
toBePlaying: function(expectedSong) {
var player = this.actual;
return player.currentlyPlayingSong === expectedSong
&& player.isPlaying;
}
})
});
| Update spechelper in the rails 2 generator to reflect that addMatchers is exposed on the global namespace | Update spechelper in the rails 2 generator to reflect that addMatchers is exposed on the global namespace
| JavaScript | mit | mavenlink/jasmine-gem,tjgrathwell/jasmine-gem,mavenlink/jasmine-gem,kapost/jasmine-gem,brigade/jasmine-gem,amandamholl/jasmine-gem,amandamholl/jasmine-gem,brigade/jasmine-gem,mavenlink/jasmine-gem,kapost/jasmine-gem,amandamholl/jasmine-gem,brigade/jasmine-gem,tjgrathwell/jasmine-gem | ---
+++
@@ -1,5 +1,5 @@
beforeEach(function() {
- this.addMatchers({
+ addMatchers({
toBePlaying: function(expectedSong) {
var player = this.actual;
return player.currentlyPlayingSong === expectedSong |
c690ddf5bbcbc0fd9bedfe547d924f1621dcd76c | app/assets/javascripts/letter_opener_web/application.js | app/assets/javascripts/letter_opener_web/application.js | //= require jquery-1.8.3.min
//= require_tree .
jQuery(function($) {
$('.letter-opener').on('click', 'tr', function() {
var $this = $(this);
$('iframe').attr('src', $this.find('a').attr('href'));
$this.parent().find('.active').removeClass('active');
$this.addClass('active');
});
$('.refresh').cl... | //= require jquery-1.8.3.min
//= require_tree .
jQuery(function($) {
$('.letter-opener').on('click', 'tr', function() {
var $this = $(this);
$('iframe').attr('src', $this.find('a').attr('href'));
$this.parent().find('.active').removeClass('active');
$this.addClass('active');
});
$('.refresh').cl... | Refresh letters content on <iframe> when reloading letters list | Refresh letters content on <iframe> when reloading letters list
| JavaScript | mit | ProctorU/letter_opener_web,sergey-verevkin/letter_opener_web,fgrehm/letter_opener_web,sergey-verevkin/letter_opener_web,fgrehm/letter_opener_web,fgrehm/letter_opener_web,ProctorU/letter_opener_web,fgrehm/letter_opener_web,sergey-verevkin/letter_opener_web,ProctorU/letter_opener_web,ProctorU/letter_opener_web | ---
+++
@@ -14,6 +14,8 @@
var table = $('.letter-opener');
table.find('tbody').empty().append('<tr><td colspan="2">Loading...</td></tr>');
- table.load(table.data('letters-path') + ' .letter-opener');
+ table.load(table.data('letters-path') + ' .letter-opener', function() {
+ $('iframe').attr('... |
5443aa9f1a393557af8dc833d10a051b631c7e79 | dilute.js | dilute.js | module.exports = function (paginator, filter) {
const iterator = paginator[Symbol.asyncIterator]()
let done = false
return {
[Symbol.asyncIterator]: function () {
return this
},
next: async function () {
if (done) {
return { done: true }
... | module.exports = function (paginator, filter) {
const iterator = paginator[Symbol.asyncIterator]()
let done = false
return {
[Symbol.asyncIterator]: function () {
return this
},
next: async function () {
if (done) {
return { done: true }
... | Add missing `await` to outer iterator `next` call. | Add missing `await` to outer iterator `next` call.
Closes #73.
| JavaScript | mit | bigeasy/dilute,bigeasy/dilute | ---
+++
@@ -11,7 +11,7 @@
if (done) {
return { done: true }
}
- const next = iterator.next()
+ const next = await iterator.next()
if (next.done) {
return { done: true }
} |
920d357a257d13cec80f227d1637a437070d7557 | app/scripts/components/experts/requests/create/expert-contract-form.js | app/scripts/components/experts/requests/create/expert-contract-form.js | import template from './expert-contract-form.html';
const expertContract = {
template,
bindings: {
model: '=',
form: '<',
contractTemplate: '<',
expert: '<',
errors: '<',
},
controller: class ExpertContractController {
$onInit() {
this.loading = true;
let sortedOptions = {}... | import template from './expert-contract-form.html';
const expertContract = {
template,
bindings: {
model: '=',
form: '<',
contractTemplate: '<',
expert: '<',
errors: '<',
},
controller: class ExpertContractController {
$onInit() {
this.loading = true;
let sortedOptions = {}... | Allow to override specific contract template values | Allow to override specific contract template values
- CS-208
| JavaScript | mit | opennode/waldur-homeport,opennode/waldur-homeport,opennode/waldur-homeport,opennode/waldur-homeport | ---
+++
@@ -27,7 +27,10 @@
angular.forEach(tab.options, (option, name) => {
option.name = name;
- if (option.default) {
+ if (this.expert.options_overrides[name] && this.expert.options_overrides[name].default_value !== undefined) {
+ this.model[name] = this.expert.op... |
a52733b4a7396ac1f8da75abd3ce0a49e4f89f8a | NodeJS/HttpJsonApi/httpjsonapi.js | NodeJS/HttpJsonApi/httpjsonapi.js | var http = require('http');
var url = require('url');
// return a JSON object with the hour minute and second
function parseTime(time){
return {
hour: time.getHours,
minute: time.getMinutes(),
second: time.getSeconds(),
}
}
// returns a JSON response with time in unix
function unixTime... | Add HTTP json api logic | Add HTTP json api logic
| JavaScript | mit | BrianLusina/JS-Snippets | ---
+++
@@ -0,0 +1,38 @@
+var http = require('http');
+var url = require('url');
+
+// return a JSON object with the hour minute and second
+function parseTime(time){
+ return {
+ hour: time.getHours,
+ minute: time.getMinutes(),
+ second: time.getSeconds(),
+ }
+}
+
+// returns a JSON resp... | |
62c0a2cde5383d927fa8d45a26b04f5237030818 | push-clients/service-worker.js | push-clients/service-worker.js | self.addEventListener('push', function(event) {
event.waitUntil(clients.matchAll().then(function(clientList) {
var focused = false;
for (var i = 0; i < clientList.length; i++) {
if (clientList[i].focused) {
focused = true;
break;
}
}
return self.registration.showNotificati... | self.addEventListener('push', function(event) {
event.waitUntil(clients.matchAll().then(function(clientList) {
var focused = false;
for (var i = 0; i < clientList.length; i++) {
if (clientList[i].focused) {
focused = true;
break;
}
}
var notificationMessage;
if (focuse... | Use different notification messages when the tab is focused, unfocused, closed | Use different notification messages when the tab is focused, unfocused, closed
| JavaScript | mit | TimAbraldes/serviceworker-cookbook,mozilla/serviceworker-cookbook,mozilla/serviceworker-cookbook,TimAbraldes/serviceworker-cookbook | ---
+++
@@ -8,8 +8,17 @@
}
}
+ var notificationMessage;
+ if (focused) {
+ notificationMessage = 'You\'re still here, thanks!';
+ } else if (clientList.length > 0) {
+ notificationMessage = 'You haven\'t closed the page, click here to focus it!';
+ } else {
+ notificationMessa... |
bed927e07e502c94127a2e2646294bb5bb64f5ca | src/index.js | src/index.js | import { createActions, handleActions } from 'redux-actions'
import { takeEvery } from 'redux-saga/effects'
export const createModule = (moduleName, definitions, defaultState) => {
const identityActions = []
const actionMap = {}
const reducerMap = {}
const sagas = []
for (const [type, definition] of Object... | import { createActions, handleActions } from 'redux-actions'
import { takeEvery } from 'redux-saga/effects'
export const createModule = (moduleName, definitions, defaultState) => {
const identityActions = []
const actionMap = {}
const reducerMap = {}
const sagas = []
for (const [type, definition] of Object... | Fix bug: Action name should be split into 2 elements (not 1) | Fix bug: Action name should be split into 2 elements (not 1)
| JavaScript | mit | moducks/moducks | ---
+++
@@ -24,6 +24,6 @@
...sagas.length && { sagas },
...Object
.entries(createActions(actionMap, ...identityActions))
- .reduce((prev, [key, value]) => ({ ...prev, [key.split('/', 1)[1]]: value }), {}),
+ .reduce((prev, [key, value]) => ({ ...prev, [key.split('/', 2)[1]]: value }), {}),
... |
ea1907a5efc980997dde8b34bff7557a106ad9cd | src/index.js | src/index.js | // @flow
/* Transform a Promise-returning function into a function that can optionally
* take a callback as the last parameter instead.
*
* @param {Function} fn a function that returns a Promise
* @param {Object} self (optional) `this` to be used when applying fn
* @return {Function} ... | // @flow
/* Transform a Promise-returning function into a function that can optionally
* take a callback as the last parameter instead.
*
* @param {Function} fn a function that returns a Promise
* @param {Object} self (optional) `this` to be used when applying fn
* @return {Function} ... | Resolve the value of self later | Resolve the value of self later
| JavaScript | mit | DimensionSoftware/optional-callback | ---
+++
@@ -8,10 +8,10 @@
* @return {Function} a function that can take callbacks as well.
*/
function optionalCallback(fn, self) {
- if (!self) {
- self = this;
- }
return function() {
+ if (!self) {
+ self = this;
+ }
var last = arguments[arguments.length - 1];
if (... |
6b01912d1aea129a28262435ff1d1700a257a4d8 | configs/fast-config.js | configs/fast-config.js | anyware_config = {
DEBUG: {
status: true, // Persistent status icons
debugView: true, // Show game debug view
console: false, // Javascript console debug output
},
// The sequence of the games to be run. The first game is run on startup
GAMES_SEQUENCE: [ "mole", "disk", "simon", ],
MOL... | anyware_config = {
DEBUG: {
status: true, // Persistent status icons
debugView: true, // Show game debug view
console: false, // Javascript console debug output
},
// The sequence of the games to be run. The first game is run on startup
GAMES_SEQUENCE: [ "mole", "disk", "simon", ],
SPA... | Make fast config have less space between games | Make fast config have less space between games
| JavaScript | mit | anyWareSculpture/sculpture-client,anyWareSculpture/sculpture-client,anyWareSculpture/sculpture-client | ---
+++
@@ -7,6 +7,8 @@
// The sequence of the games to be run. The first game is run on startup
GAMES_SEQUENCE: [ "mole", "disk", "simon", ],
+
+ SPACE_BETWEEN_GAMES_SECONDS: 2,
MOLE_GAME: {
GAME_END: 3, |
9246a44a065a046293492edeccafc376a9aa628f | src/utils.js | src/utils.js | import fs from "fs";
import InputStream from "./InputStream";
export function isGreyspace(string) {
if (string === "" ||
string === " " ||
string === "\n" ||
/^\s*$/.test(string)) {
return true;
}
if (string === undefined || string === null)
throw new Error("passed ... | import fs from "fs";
import InputStream from "./InputStream";
const whitespaceRe = /\s+/;
const shebangRe = /#!.*\n/;
const lineCommentRe = /\/\/[^\n]*/;
const blockCommentRe = /\/\*[\W\S]*?\*\//;
export function isGreyspace(string) {
if (string === "" ||
string === " " ||
string === "\n" ||
... | Create greyspace parser function to allow for splitting greyspace by type. | Create greyspace parser function to allow for splitting greyspace
by type.
| JavaScript | mit | Mark-Simulacrum/pretty-generator,Mark-Simulacrum/attractifier | ---
+++
@@ -1,5 +1,10 @@
import fs from "fs";
import InputStream from "./InputStream";
+
+const whitespaceRe = /\s+/;
+const shebangRe = /#!.*\n/;
+const lineCommentRe = /\/\/[^\n]*/;
+const blockCommentRe = /\/\*[\W\S]*?\*\//;
export function isGreyspace(string) {
if (string === "" ||
@@ -15,16 +20,42 @@
... |
62081fa8127cce340675fb462a83ee9c457e13a3 | src/utils.js | src/utils.js | // @flow
// Recursively remove undefined, null, empty objects and empty arrays
export const compact = (obj: any): any => {
if (obj === null) {
return undefined;
}
if (Array.isArray(obj)) {
const compacted = obj.map(v => compact(v)).filter(
v => typeof v !== 'undefined'
);
return compacted... | // @flow
// Recursively remove undefined, null, empty objects and empty arrays
export const compact = (value: any): any => {
if (value === null) {
return undefined;
}
if (Array.isArray(value)) {
const compacted = value.map(v => compact(v)).filter(
v => typeof v !== 'undefined'
);
return c... | Rename 'obj' to 'value' for clarity | Rename 'obj' to 'value' for clarity
| JavaScript | apache-2.0 | contactlab/contacthub-sdk-nodejs | ---
+++
@@ -1,22 +1,22 @@
// @flow
// Recursively remove undefined, null, empty objects and empty arrays
-export const compact = (obj: any): any => {
- if (obj === null) {
+export const compact = (value: any): any => {
+ if (value === null) {
return undefined;
}
- if (Array.isArray(obj)) {
- const... |
00f48eb9ab3f99883fea421afab2ddd875f32cf3 | node_modules/c9/manifest.js | node_modules/c9/manifest.js | var git = require("./git");
var hostname = require("./hostname");
exports.load = function(root) {
var manifest = require(root + "/package.json");
manifest.revision =
manifest.revision ||
git.getHeadRevisionSync(root);
manifest.hostname = hostname.get();
return manifest;
};
| var git = require("./git");
var hostname = require("./hostname");
var os = require("os");
exports.load = function(root) {
var manifest = require(root + "/package.json");
manifest.revision =
manifest.revision ||
git.getHeadRevisionSync(root);
manifest.hostname = hostname.get();
manifes... | Store internal IP in docker host | Store internal IP in docker host
| JavaScript | bsd-3-clause | humberto-garza/VideoJuegos,humberto-garza/VideoJuegos | ---
+++
@@ -1,5 +1,6 @@
var git = require("./git");
var hostname = require("./hostname");
+var os = require("os");
exports.load = function(root) {
var manifest = require(root + "/package.json");
@@ -8,6 +9,7 @@
git.getHeadRevisionSync(root);
manifest.hostname = hostname.get();
+ manifest.... |
15c69f68a85e0bffca04e8c67b81b7260198f1c8 | app/assets/javascripts/application.js | app/assets/javascripts/application.js | // 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/javascripts,
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative ... | // 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/javascripts,
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative ... | Update js for sticky content | Update js for sticky content
| JavaScript | mit | bdisney/eShop,bdisney/eShop,bdisney/eShop | ---
+++
@@ -17,12 +17,13 @@
//= require toastr
//= require_tree .
+document.addEventListener("turbolinks:load", function() {
+ $(function () {
+ $(".sticky").sticky({
+ topSpacing: 90
+ , zIndex: -0
+ , stopper: "#you_shall_not_pass"
+ });
+ });
+})
-$(function () {
- $... |
de7309b150f877e59c8303748f84fd9a9e96c472 | app/assets/javascripts/application.js | app/assets/javascripts/application.js | //= require libs/jquery/jquery-ui-1.8.16.custom.min
//= require libs/jquery/plugins/jquery.base64
//= require libs/jquery/plugins/jquery.mustache.js
//= require core
//= require devolution
//= require popup
//= require geo-locator
//= require welcome
//= require browse
//= require search
//= require jquery.history
//= ... | //= require libs/jquery/jquery-ui-1.8.16.custom.min
//= require libs/jquery/plugins/jquery.base64
//= require libs/jquery/plugins/jquery.mustache.js
//= require core
//= require devolution
//= require popup
//= require geo-locator
//= require welcome
//= require browse
//= require search
//= require jquery.history
//= ... | Remove unused javascript requirements and add frontend toolkit | Remove unused javascript requirements and add frontend toolkit | JavaScript | mit | alphagov/static,tadast/static,tadast/static,kalleth/static,robinwhittleton/static,kalleth/static,tadast/static,robinwhittleton/static,alphagov/static,tadast/static,alphagov/static,robinwhittleton/static,kalleth/static,robinwhittleton/static,kalleth/static | ---
+++
@@ -11,5 +11,4 @@
//= require jquery.history
//= require jquery.tabs
//= require mobile
-//= require js-stick-at-top-when-scrolling
-//= require stop-related-scrolling
+//= require govuk_toolkit |
b1e3644c1eb0f68ec02325fca257198a276c4133 | generators/template-engine/modules/nunjucks/nunjucks-express.js | generators/template-engine/modules/nunjucks/nunjucks-express.js | // view engine setup
nunjucks.configure('views', {
autoescape: true,
express: app
});
|
// view engine setup
nunjucks.configure('views', {
autoescape: true,
express: app
});
app.set('view engine', 'html');
| Set default extension (html) for nunjucks | Set default extension (html) for nunjucks
| JavaScript | mit | sahat/boilerplate,sahat/megaboilerplate,sahat/megaboilerplate,sahat/megaboilerplate,sahat/boilerplate | ---
+++
@@ -1,5 +1,7 @@
+
// view engine setup
nunjucks.configure('views', {
autoescape: true,
express: app
});
+app.set('view engine', 'html'); |
ea82d61def4d3e9be56cc4a3c8f2b01c5ff4c3e1 | server/app.js | server/app.js | export default {};
var Twitter = require('twit-stream');
var keys =require('./authentication.js');
var stream = new Twitter(keys).stream('statuses/sample');
/// connection configuration for stream object to connect to API
stream.on('connected', function(msg) {
console.log('Connection successful.');
});
stream... | export default {};
var Twitter = require('twit-stream');
var keys =require('./authentication.js');
var stream = new Twitter(keys).stream('statuses/sample');
/// connection configuration for stream object to connect to API
stream.on('connected', function(msg) {
console.log('Connection successful.');
});
stream... | Add event return listeners for Twitter warning,limit and discnct | Add event return listeners for Twitter warning,limit and discnct
considering the amount of information you will be processing it
is more imperative for you to take into account and work on being
able to keep track of what twitters feedback is going to be. Thus
created a series of event listeners for message feedback f... | JavaScript | isc | edwardpark/d3withtwitterstream,edwardpark/d3withtwitterstream | ---
+++
@@ -20,3 +20,20 @@
console.log('Twitter disconnection message');
console.log(msg);
});
+
+
+// connection returns if twitter cuts off connection and why
+stream.on('warning', function(message) {
+ console.warning('Yikes! a Warning message:');
+ console.warning(message);
+});
+
+stream.on('lim... |
d02e4db2e4ab9e359f04c4d5315d01e55679e471 | routes/index.js | routes/index.js | /**
* Basic route controller
*/
var pages = require('./pages');
var formidable = require('formidable');
module.exports = function(app, io) {
app.get('/', pages.index);
app.post('/', function(req, res, next){
var form = new formidable.IncomingForm();
form.uploadDir = "./images";
form... | /**
* Basic route controller
*/
var pages = require('./pages');
var formidable = require('formidable');
var fs = require('fs');
var Parse = require('csv-parse');
function parseFile(filePath, res){
var output = [];
function onNewRecord(record){
output.push(record);
}
function onError(error... | Handle parsing errors on parse completion. Stream file and parse the list into JSON objs and dump onto the res | Handle parsing errors on parse completion.
Stream file and parse the list into JSON objs and dump onto the res
| JavaScript | mit | Midnight-Coder/DerangedCSVs,Midnight-Coder/DerangedCSVs | ---
+++
@@ -3,7 +3,55 @@
*/
var pages = require('./pages');
var formidable = require('formidable');
+var fs = require('fs');
+var Parse = require('csv-parse');
+function parseFile(filePath, res){
+
+
+ var output = [];
+ function onNewRecord(record){
+ output.push(record);
+ }
+
+ function o... |
589e86a2a94e05f30cd8b39bbdb8c2c109a56427 | js/console-save.js | js/console-save.js | //Source:
//https://plus.google.com/+AddyOsmani/posts/jBS8CiNTESM
//http://bgrins.github.io/devtools-snippets/#console-save
(function(console){
console.save = function(data, filename){
if(!data) {
console.error('Console.save: No data');
return;
}
if(!filename) file... | //Source:
//https://plus.google.com/+AddyOsmani/posts/jBS8CiNTESM
//http://bgrins.github.io/devtools-snippets/#console-save
//A simple way to save objects as .json files from the console
(function(console){
console.save = function(data, filename){
if(!data) {
console.error('Console.save: No da... | Add import and export buttons | Add import and export buttons
| JavaScript | mit | sjbuysse/sessions-map,sjbuysse/sessions-map | ---
+++
@@ -1,6 +1,7 @@
//Source:
//https://plus.google.com/+AddyOsmani/posts/jBS8CiNTESM
//http://bgrins.github.io/devtools-snippets/#console-save
+//A simple way to save objects as .json files from the console
(function(console){
console.save = function(data, filename){ |
c2957291d4db4a30fc1fa427fb179cd0c30c6001 | server/app.js | server/app.js | var log = require("./log.js");
var app =
{
// io: null
};
app.init = function init(httpServer)
{
// TODO: add WebSocket (socket.io) endpoints or other light non-HTTP backend connections here as necessary (or move to a real app framework for Node like Express)
// app.io = require("socket.io")(httpServer);
// ...
... | // var io = require("socket.io")();
var log = require("./log.js");
function init(httpServer)
{
// TODO: add WebSocket (socket.io) endpoints or other light non-HTTP backend connections here as necessary (or move to a real app framework for Node like Express)
// io.attach(httpServer);
log("Web application initializ... | Update to proper Node module scope conventions | Update to proper Node module scope conventions
| JavaScript | mit | frog/packaged-node-web-server,frog/packaged-node-web-server,frog/packaged-node-web-server | ---
+++
@@ -1,17 +1,20 @@
+// var io = require("socket.io")();
+
var log = require("./log.js");
-var app =
-{
- // io: null
-};
-
-app.init = function init(httpServer)
+function init(httpServer)
{
// TODO: add WebSocket (socket.io) endpoints or other light non-HTTP backend connections here as necessary (or mov... |
6a1098ef55e3723447d336384d0273f7f0a8dc00 | misc/chrome_plugins/clean_concourse_pipeline/src/inject.user.js | misc/chrome_plugins/clean_concourse_pipeline/src/inject.user.js | // ==UserScript==
// @name Remove concourse elements
// @namespace cloudpipeline.digital
// @description Strips away some of the cruft from the concourse pipeline view when showing it on monitoring screens.
// @include https://deployer.*.cloudpipeline.digital/*
// @include https://deployer.cloud.servic... | // ==UserScript==
// @name Remove concourse elements
// @namespace cloudpipeline.digital
// @description Strips away some of the cruft from the concourse pipeline view when showing it on monitoring screens.
// @include https://deployer.*.cloudpipeline.digital/*
// @include https://deployer.cloud.servic... | Update chrome clean pipelines plugin to work with concourse 5 | Update chrome clean pipelines plugin to work with concourse 5
This commit updates the divs that we wish to remove from the pipeline view.
| JavaScript | mit | alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf | ---
+++
@@ -13,7 +13,7 @@
clearInterval(readyStateCheckInterval);
console.log('Monitor mode is go');
- const $legend = document.querySelector('.legend');
+ const $legend = document.querySelector('#legend');
$legend.style.display = 'none';
const $infoBox = document.querySelector('.lower-r... |
7d792bb25af6236a0fa53c561c7aa416129561b7 | client/widgets/sharing/sharing.js | client/widgets/sharing/sharing.js | import Shariff from '/imports/ui/lib/shariff/shariff';
Template.sharing.onRendered(function() {
this.autorun(() => {
this.shariff = new Shariff(this.find('.shariff'), {
lang: Session.get('locale'),
services: [
'twitter',
'facebook',
'whatsapp',
'googleplus',
'diaspora',
'mail',
'in... | import Shariff from '/imports/ui/lib/shariff/shariff';
Template.sharing.onRendered(function() {
this.autorun(() => {
this.shariff = new Shariff(this.find('.shariff'), {
lang: Session.get('locale'),
mailtoUrl: 'mailto:',
services: [
'twitter',
'facebook',
'whatsapp',
'googleplus',
'diasp... | Use mailto: for the moment | Use mailto: for the moment
| JavaScript | agpl-3.0 | schuel/hmmm,schuel/hmmm,Openki/Openki,schuel/hmmm,Openki/Openki,Openki/Openki | ---
+++
@@ -4,6 +4,7 @@
this.autorun(() => {
this.shariff = new Shariff(this.find('.shariff'), {
lang: Session.get('locale'),
+ mailtoUrl: 'mailto:',
services: [
'twitter',
'facebook',
@@ -14,20 +15,5 @@
'info',
]
});
-
- // Remove href and target from mail button. Instead instal... |
f569688bc7ce880a1339697d3b775d67528d1eb8 | static/scripts/helpers/form_bug_text.js | static/scripts/helpers/form_bug_text.js | /* eslint-disable max-len */
export default `Ich als [Nutzerrolle]
habe auf der Seite [???]
die Funktion [???]
aufgrund des Fehlers/der Fehlermeldung "[???]"
nicht benutzen können.
Tritt der Fehler auch bei anderen/ ähnlichen Bereichen (z.B. andere Kurse oder Nutzer) auf?
Wie genau äußert sich das Problem?
Wenn mehre... | /* eslint-disable max-len */
export default `Ich als [Nutzerrolle]
habe auf der Seite [???]
die Funktion [???]
aufgrund des Fehlers/der Fehlermeldung "[???]"
nicht benutzen können.
Tritt der Fehler auch bei anderen/ ähnlichen Bereichen (z.B. andere Kurse oder Nutzer) auf?
Wie genau äußert sich das Problem?
Wann trat ... | Add a new question regarding datetime | Add a new question regarding datetime
| JavaScript | agpl-3.0 | schul-cloud/schulcloud-client,schul-cloud/schulcloud-client,schul-cloud/schulcloud-client | ---
+++
@@ -7,5 +7,6 @@
Tritt der Fehler auch bei anderen/ ähnlichen Bereichen (z.B. andere Kurse oder Nutzer) auf?
Wie genau äußert sich das Problem?
+Wann trat der Fehler genau auf (Datum, Uhrzeit), damit wir gezielt in den Logs schauen können?
Wenn mehrere Schritte notwendig sind, um das Problem nachzuvollzie... |
25b2d06fe260f734ef6944062f410a74c3100bb5 | sound-wave.js | sound-wave.js | const fs = require('fs');
const sampleRate = 44100,
resolution = 16;
const maxLevel = Math.pow(2, resolution - 1) - 1,
BinaryArray = {
8: Int8Array,
16: Int16Array,
32: Int32Array
}[resolution];
function sineWave(frequency, duration) {
var samplesCount = duration *... | const fs = require('fs');
const sampleRate = 44100,
resolution = 16;
const maxLevel = Math.pow(2, resolution - 1) - 1,
BinaryArray = {
8: Int8Array,
16: Int16Array,
32: Int32Array
}[resolution];
function sineWave(frequency, duration) {
var samplesCount = Math.floor... | Use array.buffer so that TypedArray and Buffer share the same memory | Use array.buffer so that TypedArray and Buffer share the same memory
| JavaScript | mit | aqrln/sound-wave | ---
+++
@@ -11,7 +11,7 @@
}[resolution];
function sineWave(frequency, duration) {
- var samplesCount = duration * sampleRate,
+ var samplesCount = Math.floor(duration * sampleRate),
array = new BinaryArray(samplesCount);
for (var sampleNumber = 0; sampleNumber < samplesCount; sampl... |
4080e7daa4b5a9e7e37273036ac9e489bea226b9 | spec/support/fixtures/stripejs-mock.js | spec/support/fixtures/stripejs-mock.js | class Element {
mount(el) {
if (typeof el === "string") {
el = document.querySelector(el);
}
el.classList.add('StripeElement');
el.innerHTML = `
<input id="stripe-cardnumber" name="cardnumber" placeholder="Card number" size="16" type="text">
<input name="exp-date" placeholder="MM /... | // StripeJS fixture for using Stripe in feature specs. Mimics credit card form and Element objects.
// Based on: https://github.com/thoughtbot/fake_stripe/blob/v0.3.0/lib/fake_stripe/assets/v3.js
// The original has been adapted to work with OFN (see commit history for details).
class Element {
mount(el) {
if (t... | Add comments in StripeJS mock | Add comments in StripeJS mock
| JavaScript | agpl-3.0 | lin-d-hop/openfoodnetwork,openfoodfoundation/openfoodnetwork,lin-d-hop/openfoodnetwork,Matt-Yorkley/openfoodnetwork,mkllnk/openfoodnetwork,lin-d-hop/openfoodnetwork,Matt-Yorkley/openfoodnetwork,Matt-Yorkley/openfoodnetwork,mkllnk/openfoodnetwork,openfoodfoundation/openfoodnetwork,mkllnk/openfoodnetwork,openfoodfoundati... | ---
+++
@@ -1,3 +1,7 @@
+// StripeJS fixture for using Stripe in feature specs. Mimics credit card form and Element objects.
+// Based on: https://github.com/thoughtbot/fake_stripe/blob/v0.3.0/lib/fake_stripe/assets/v3.js
+// The original has been adapted to work with OFN (see commit history for details).
+
class El... |
6f83ef247f86a8581c9b66841cdea826a6fd90ed | server/config/db.js | server/config/db.js | var connection = {
client: 'mysql',
connection: {
host: process.env.HOST,
database: process.env.APP_NAME,
user: process.env.DB_USER,
password: process.env.DB_PASSWORD,
charset: 'utf8'
}
};
var knex = require('knex')(connection);
connection.database = process.env.APP_NAME;
var db = require('b... | var connection = {
client: 'mysql',
connection: {
host: 'localhost',
database: process.env.APP_NAME,
user: process.env.DB_USER,
password: process.env.DB_PASSWORD,
charset: 'utf8'
}
};
var knex = require('knex')(connection);
connection.database = process.env.APP_NAME;
var db = require('booksh... | Adjust database host to always be localhost | Adjust database host to always be localhost
| JavaScript | mit | chkakaja/sentimize,formidable-coffee/masterfully,formidable-coffee/masterfully,chkakaja/sentimize | ---
+++
@@ -1,7 +1,7 @@
var connection = {
client: 'mysql',
connection: {
- host: process.env.HOST,
+ host: 'localhost',
database: process.env.APP_NAME,
user: process.env.DB_USER,
password: process.env.DB_PASSWORD, |
7f6e9e09e064c6d8b51960a579375684d660ecc9 | src/client.js | src/client.js | import React from 'react'
import ReactDOM from 'react-dom'
/* Create a simple component without JSX
<div>
React Tutorial
</div>
*/
const App = function() {
return React.createElement('div', null, 'React Tutorial');
}
ReactDOM.render(<App />, document.getElementById('app')) | import React from 'react'
import ReactDOM from 'react-dom'
/* Create a simple component without JSX
<div>
React Tutorial
</div>
*/
const App = function() {
// return React.createElement('div', null, 'React Tutorial');
return <div>React Tutorial</div>;
}
ReactDOM.render(<App />, document.getElementById('app')) | Create a simple component with JSX | Create a simple component with JSX
| JavaScript | mit | suranartnc/react-tutorial | ---
+++
@@ -7,7 +7,8 @@
</div>
*/
const App = function() {
- return React.createElement('div', null, 'React Tutorial');
+ // return React.createElement('div', null, 'React Tutorial');
+ return <div>React Tutorial</div>;
}
ReactDOM.render(<App />, document.getElementById('app')) |
27e809275ab1132260bf0327b6134d60e095844c | src/dollrs.js | src/dollrs.js | import create from './create';
export default function $$(ufo, context) {
if (typeof ufo === 'string') {
// if it seems to be HTML, create an elements
if (/^\s*</.test(ufo)) {
return create(ufo);
}
if (context) {
return $$(context)
.reduce((result, element) => result.concat($$(el... | import create from './create';
export default function $$(ufo, context) {
if (typeof ufo === 'string') {
// if it seems to be HTML, create an elements
if (/^\s*</.test(ufo)) {
return $$(create(ufo));
}
if (context) {
return $$(context)
.reduce((result, element) => result.concat($... | Return array when creating from string and better conversion to array | Return array when creating from string and better conversion to array
| JavaScript | mit | lohfu/dollr | ---
+++
@@ -4,7 +4,7 @@
if (typeof ufo === 'string') {
// if it seems to be HTML, create an elements
if (/^\s*</.test(ufo)) {
- return create(ufo);
+ return $$(create(ufo));
}
if (context) {
@@ -18,7 +18,7 @@
} else if (ufo instanceof Array) {
return ufo;
} else if (ufo i... |
c1a494f0250e742d548c1585bb71ed16730ab45a | lib/spawnHelper.js | lib/spawnHelper.js | var childProcess = require('child_process');
var q = require('q');
var runCommand = function(command) {
var deferred = q.defer();
console.log('Running command: [%s]', command);
var commandArray = command.split(/\s/);
// First arg: command, then pass arguments as array.
var child = childProcess.spawn(comma... | var childProcess = require('child_process');
var q = require('q');
/**
* Spawn a child process given a command. Wait for the process to start given
* a regexp that will be matched against stdout.
*
* @param {string} command The command to execute.
* @param {RegExp} waitRegexp An expression used to test when the p... | Add waitRegexp as an argument. | Add waitRegexp as an argument.
| JavaScript | mit | andresdominguez/elementor,andresdominguez/elementor | ---
+++
@@ -1,7 +1,16 @@
var childProcess = require('child_process');
var q = require('q');
-var runCommand = function(command) {
+/**
+ * Spawn a child process given a command. Wait for the process to start given
+ * a regexp that will be matched against stdout.
+ *
+ * @param {string} command The command to exe... |
c2fc624fd9d7d836a4f423baf8c64b0a053bb24f | src/kinvey.js | src/kinvey.js | import { Promise } from 'es6-promise';
import { Kinvey as CoreKinvey, isDefined, KinveyError } from 'kinvey-js-sdk/dist/export';
import { Client } from './client';
export class Kinvey extends CoreKinvey {
static initialize(config) {
const client = Kinvey.init(config);
return Promise.resolve(client.getActiveU... | import { Promise } from 'es6-promise';
import url from 'url';
import {
Kinvey as CoreKinvey,
isDefined,
KinveyError,
CacheRequest,
RequestMethod
} from 'kinvey-js-sdk/dist/export';
import { Client } from './client';
const USERS_NAMESPACE = 'user';
const ACTIVE_USER_COLLECTION_NAME = 'kinvey_active_user';
ex... | Load the active user using the previous stored location if an active user does not exist | Load the active user using the previous stored location if an active user does not exist
| JavaScript | apache-2.0 | Kinvey/kinvey-html5-lib | ---
+++
@@ -1,11 +1,50 @@
import { Promise } from 'es6-promise';
-import { Kinvey as CoreKinvey, isDefined, KinveyError } from 'kinvey-js-sdk/dist/export';
+import url from 'url';
+import {
+ Kinvey as CoreKinvey,
+ isDefined,
+ KinveyError,
+ CacheRequest,
+ RequestMethod
+} from 'kinvey-js-sdk/dist/export';
... |
85518b0b853f9feee2822df289501508c7af6d19 | transformers/browserchannel/server.js | transformers/browserchannel/server.js | 'use strict';
/**
* Minimum viable Browserchannel server for Node.js that works through the primus
* interface.
*
* @runat server
* @api private
*/
module.exports = function server() {
var browserchannel = require('browserchannel')
, Spark = this.Spark
, primus = this.primus
, query = {};
//
/... | 'use strict';
/**
* Minimum viable Browserchannel server for Node.js that works through the primus
* interface.
*
* @runat server
* @api private
*/
module.exports = function server() {
var browserchannel = require('browserchannel')
, Spark = this.Spark
, primus = this.primus
, query = {};
//
/... | Use stop instead of close, it fixes, things. | [minor] Use stop instead of close, it fixes, things.
| JavaScript | mit | primus/primus,basarat/primus,dercodebearer/primus,colinbate/primus,modulexcite/primus,basarat/primus,colinbate/primus,STRML/primus,colinbate/primus,beni55/primus,dercodebearer/primus,dercodebearer/primus,clanwqq/primus,beni55/primus,modulexcite/primus,modulexcite/primus,clanwqq/primus,primus/primus,primus/primus,basara... | ---
+++
@@ -29,7 +29,7 @@
);
spark.on('outgoing::end', function end() {
- socket.close();
+ socket.stop();
}).on('outgoing::data', function write(data) {
socket.send(data);
}); |
75e74cf1d434f564535fd1fef06ab18963a57277 | src/resource/RefraxParameters.js | src/resource/RefraxParameters.js | /**
* Copyright (c) 2015-present, Joshua Hollenbeck
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* A RefraxStore is a wrapper around the RefraxFragmentCache object that offers
* a Subscribable i... | /**
* Copyright (c) 2015-present, Joshua Hollenbeck
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
const RefraxTools = require('RefraxTools');
/**
* A RefraxParameters is a wrapper around an object to... | Update Parameters to be self extending vs containing to conform to Options | Update Parameters to be self extending vs containing to conform to Options
| JavaScript | bsd-3-clause | netarc/refrax,netarc/refrax | ---
+++
@@ -5,14 +5,16 @@
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
+const RefraxTools = require('RefraxTools');
+
/**
- * A RefraxStore is a wrapper around the RefraxFragmentCache object that offers
- * a Subscribable... |
b08bdaf5628bb9c1a13c20110f7cae593c6c66c5 | test/helpers.js | test/helpers.js | // ----------------------------------------------------------------------------
//
// helpers.js
//
// ----------------------------------------------------------------------------
var dyno = require('../dyno-leveldb.js');
function newDyno() {
return dyno('/tmp/' + (new Date()).toISOString());
};
// --------------... | // ----------------------------------------------------------------------------
//
// helpers.js
//
// ----------------------------------------------------------------------------
var dyno = require('../dyno-leveldb.js');
function newDyno() {
return dyno('/tmp/' + (new Date()).toISOString());
};
// --------------... | Make sure the pad() function works correctly | Make sure the pad() function works correctly
| JavaScript | mit | chilts/modb-dyno-leveldb | ---
+++
@@ -12,6 +12,7 @@
// ----------------------------------------------------------------------------
function pad(str, length) {
+ str = '' + str;
while ( str.length < length ) {
str = '0' + str;
}
@@ -22,7 +23,7 @@
var i = 0;
function timestamp() {
i++;
- return (new Date()).... |
4dca2713e1cd68f08177a62e06f8ba1bfe6dc925 | src/native/index.js | src/native/index.js | import 'babel-polyfill';
import React from 'react';
import { ApolloProvider } from 'react-apollo';
import { AppRegistry } from 'react-native';
import { NativeRouter } from 'react-router-native';
import config from 'react-native-config';
import Raven from 'raven-js';
import RavenRNPlugin from 'raven-js/plugins/react-nat... | import 'babel-polyfill';
import React from 'react';
import { ApolloProvider } from 'react-apollo';
import { AppRegistry } from 'react-native';
import { NativeRouter } from 'react-router-native';
import config from 'react-native-config';
import Raven from 'raven-js';
import RavenRNPlugin from 'raven-js/plugins/react-nat... | Add missing install call to raven config | feat(native): Add missing install call to raven config
| JavaScript | mit | meatwallace/strap,meatwallace/strap,meatwallace/strap | ---
+++
@@ -12,7 +12,7 @@
// Initialize Sentry error reporting
RavenRNPlugin(Raven);
-Raven.config(config.SENTRY_DSN, { release: config.RELEASE_ID });
+Raven.config(config.SENTRY_DSN, { release: config.RELEASE_ID }).install();
console.disableYellowBox = true;
|
78476fd9e92f986e641c5bb8d07ec37451d04fe9 | test/karma.js | test/karma.js | import karma from '../src/karma';
describe('karma config', function() {
it('should generate config', function() {
// Success is not throwing at this point. The simple karma tests
// will do the actual verification
karma({set() {}});
});
});
| /* eslint-disable no-process-env */
import karma from '../src/karma';
import {expect} from 'chai';
describe('karma config', function() {
const KARMA_BROWSER = process.env.KARMA_BROWSER;
afterEach(function() {
if (KARMA_BROWSER) {
process.env.KARMA_BROWSER = KARMA_BROWSER;
} else {
delete proce... | Add missing coverage for KARMA_BROWSER flag | Add missing coverage for KARMA_BROWSER flag | JavaScript | mit | kpdecker/linoleum-node,kpdecker/linoleum-electron,kpdecker/linoleum-electron,kpdecker/linoleum-webpack,kpdecker/linoleum | ---
+++
@@ -1,9 +1,36 @@
+/* eslint-disable no-process-env */
import karma from '../src/karma';
+import {expect} from 'chai';
+
describe('karma config', function() {
+ const KARMA_BROWSER = process.env.KARMA_BROWSER;
+ afterEach(function() {
+ if (KARMA_BROWSER) {
+ process.env.KARMA_BROWSER = KARMA_BRO... |
2307e2272e30d580b62ca2006dc99045cd63a9e8 | test/suite.js | test/suite.js | var siteName = "tlks.io";
// http://tlks.io/
casper.test.begin('Testing tlks.io UI', 2, function(test) {
var url = "http://tlks.io/";
casper.start(url);
casper.then(function() {
this.test.assert(this.getCurrentUrl() === url, 'url is the one expected');
});
casper.then(function() {
... | var siteName = "tlks.io";
// http://tlks.io/
casper.test.begin('Testing tlks.io UI', 2, function(test) {
var url = "http://tlks.io/";
casper.start(url);
casper.then(function() {
this.test.assert(this.getCurrentUrl() === url, 'url is the one expected');
});
casper.then(function() {
... | Test About for HTTP 200 | Test About for HTTP 200
| JavaScript | mit | tlksio/front,tlksio/front | ---
+++
@@ -17,6 +17,27 @@
casper.run(function() {
this.test.done();
+ });
+
+});
+
+// http://tlks.io/about
+casper.test.begin('Testing tlks.io : About UI', 2, function(test) {
+
+ var url = "http://tlks.io/about";
+
+ casper.start(url);
+
+ casper.then(function() {
+ this.test.ass... |
b4030f75471af2309f3bd4a75fff708f8cbc0eb5 | test/types.js | test/types.js | import test from 'ava';
import whenDomReady from '../';
test('whenDomReady is a function', t => {
t.is(typeof whenDomReady, 'function');
});
test('whenDomReady returns a Promise', t => {
t.true(whenDomReady() instanceof Promise);
});
test('whenDomReady.resume is a function', t => {
t.is(typeof whenDomReady.resume... | import test from 'ava';
import jsdom from 'jsdom';
import whenDomReady from '../';
test('whenDomReady is a function', t => {
t.is(typeof whenDomReady, 'function');
});
test('whenDomReady returns a Promise', t => {
t.true(whenDomReady() instanceof Promise);
});
test('whenDomReady.resume is a function', t => {
t.is... | Test Promise value always resolves to undefined | Test Promise value always resolves to undefined
| JavaScript | mit | lukechilds/when-dom-ready | ---
+++
@@ -1,4 +1,5 @@
import test from 'ava';
+import jsdom from 'jsdom';
import whenDomReady from '../';
test('whenDomReady is a function', t => {
@@ -18,3 +19,17 @@
t.is(typeof returnValue, 'function');
t.true(returnValue() instanceof Promise);
});
+
+test.cb('Promise value always resolves to undefined'... |
3429aee6bfedfdce9498f73aab55f1039c59190b | examples/dev-kits/main.js | examples/dev-kits/main.js | module.exports = {
stories: ['./stories/*.*'],
webpack: async (config, { configType }) => ({
...config,
module: {
...config.module,
rules: [
...config.module.rules,
{
test: /\.(ts|tsx)$/,
loader: require.resolve('babel-loader'),
options: {
... | module.exports = {
stories: ['./stories/*.*'],
webpack: async (config, { configType }) => ({
...config,
module: {
...config.module,
rules: [
...config.module.rules,
{
test: /\.(ts|tsx)$/,
loader: require.resolve('babel-loader'),
options: {
... | FIX manager using ESM in dev-kits example | FIX manager using ESM in dev-kits example
| JavaScript | mit | storybooks/react-storybook,storybooks/react-storybook,storybooks/storybook,storybooks/storybook,storybooks/react-storybook,kadirahq/react-storybook,storybooks/storybook,storybooks/storybook,storybooks/storybook,storybooks/storybook,kadirahq/react-storybook,storybooks/react-storybook,storybooks/storybook | ---
+++
@@ -20,4 +20,20 @@
extensions: [...(config.resolve.extensions || []), '.ts', '.tsx'],
},
}),
+ managerWebpack: async config => ({
+ ...config,
+ module: {
+ ...config.module,
+ rules: [
+ ...config.module.rules,
+ {
+ test: /manager\.js$/,
+ load... |
f16f1eae610c1bc78e8b0ebb3aca7bd4b717db19 | db/sequelizeConnect.js | db/sequelizeConnect.js | var Sequelize = require('sequelize'),
pg = require('pg').native;
module.exports = function(opts) {
if (!opts.DATABASE_URL) {
throw(new Error('Must specify DATABASE_URL in config.json or as environment variable'));
}
// TODO Support other databases
var match = process.env.DATABASE_URL.match(/postgres:\/... | var Sequelize = require('sequelize'),
pg = require('pg').native;
module.exports = function(opts) {
if (!opts.DATABASE_URL) {
throw(new Error('Must specify DATABASE_URL in config.json or as environment variable'));
}
// TODO Support other databases
var match = opts.DATABASE_URL.match(/postgres:\/\/([^:]... | Fix error where DATABASE_URL does not exist in environment | Fix error where DATABASE_URL does not exist in environment
| JavaScript | isc | bankonme/ripple-rest,ripple/ripple-rest,dmathewwws/my-ripple-rest,sparro/ripple-rest,lumberj/ripple-rest,xdv/ripple-rest,radr/radr-rest,sparro/ripple-rest,Treefunder/ripple-rest,dmathewwws/my-ripple-rest,hserang/ripple-rest,dmathewwws/my-ripple-rest,dinexcode/ripple-rest-dinex | ---
+++
@@ -8,7 +8,7 @@
// TODO Support other databases
- var match = process.env.DATABASE_URL.match(/postgres:\/\/([^:]+):([^@]+)@([^:]+):(\d+)\/(.+)/),
+ var match = opts.DATABASE_URL.match(/postgres:\/\/([^:]+):([^@]+)@([^:]+):(\d+)\/(.+)/),
db = new Sequelize(match[5], match[1], match[2], {
d... |
c971930ec987ae24f392f47c2b1b9b731f0cb4e9 | web/app/scripts/services/userservice.js | web/app/scripts/services/userservice.js | 'use strict';
/**
* @ngdoc service
* @name dormManagementToolApp.userService
* @description
* # userService
* Service in the dormManagementToolApp.
*/
angular.module('dormManagementToolApp')
.service('UserService', function () {
var mv = this;
this.user = JSON.parse(localStorage.getItem('user'));
t... | 'use strict';
/**
* @ngdoc service
* @name dormManagementToolApp.userService
* @description
* # userService
* Service in the dormManagementToolApp.
*/
angular.module('dormManagementToolApp')
.service('UserService', function () {
var mv = this;
this.user = JSON.parse(localStorage.getItem('user'));
t... | Check whether object exists before retrieving | Check whether object exists before retrieving
| JavaScript | mit | TomGijselinck/dorm-management-tool,TomGijselinck/dorm-management-tool,TomGijselinck/dorm-management-tool | ---
+++
@@ -12,12 +12,36 @@
var mv = this;
this.user = JSON.parse(localStorage.getItem('user'));
this.getName = function () {
- return mv.user.name;
+ if (localStorage.getItem('user'))
+ if (mv.user != null)
+ return mv.user.name;
+ else {
+ mv.user = JSON.pars... |
e05522cee60dd4d4baaadeee80869f063add486f | src/middleware/parsePayload.js | src/middleware/parsePayload.js | import getRawBody from 'raw-body'
export default (limit) => {
limit = (limit || '512kb')
return (req, res, next) => {
// Parse payload into buffer
getRawBody(req, {
length: req.headers['content-length'],
limit,
}, function (err, buffer) {
if (err) return next(err)
if (buffer.length) {
req.buf... | import getRawBody from 'raw-body'
export default (limit) => {
limit = (limit || '512kb')
return (req, res, next) => {
// Parse payload into buffer
getRawBody(req, {
length: req.headers['content-length'],
limit,
}, function (err, buffer) {
if (err) return next(err)
if (buffer.length) {
req.buf... | Fix error code for missing payload. | Fix error code for missing payload.
| JavaScript | mit | kukua/concava | ---
+++
@@ -16,7 +16,7 @@
return next()
}
- res.writeHead(204)
+ res.writeHead(400)
res.end('No binary payload provided.')
})
} |
7f4a80cbc397353af2d89199567a2db12179f9fa | components/widgets/psi/index.js | components/widgets/psi/index.js | import { Component } from 'react'
import 'isomorphic-fetch'
export default class PageSpeedInsights extends Component {
static defaultProps = {
filter_third_party_resources: true,
locale: 'de_DE',
strategy: 'desktop'
}
state = {
score: 0
}
async componentDidMount () {
let url = 'https://... | import { Component } from 'react'
import 'isomorphic-fetch'
import Progress from '../../progress'
import Widget from '../../widget'
export default class PageSpeedInsights extends Component {
static defaultProps = {
filter_third_party_resources: true,
locale: 'de_DE',
strategy: 'desktop'
}
state = {
... | Use widget and progress component | Use widget and progress component
| JavaScript | mit | danielbayerlein/dashboard,danielbayerlein/dashboard | ---
+++
@@ -1,5 +1,7 @@
import { Component } from 'react'
import 'isomorphic-fetch'
+import Progress from '../../progress'
+import Widget from '../../widget'
export default class PageSpeedInsights extends Component {
static defaultProps = {
@@ -13,24 +15,28 @@
}
async componentDidMount () {
- let u... |
b1efa119cce7e6d14c7315221282402df6810f85 | src/chain.js | src/chain.js | import animate from './animate';
import {assign} from './utils';
const helpers = {
delay(msec) {
this._opts.delay = msec;
return this;
},
progress(fn, tween = null) {
this._props.tween = tween || this._props.tween || [1, 0];
this._opts.progress = fn;
return this;
}
};
export default funct... | import animate from './animate';
import {assign} from './utils';
const helpers = {
delay(msec) {
this._opts.delay = msec;
return this;
},
duration(msec) {
this._opts.duration = msec;
return this;
},
easing(name) {
this._opts.easing = name;
return this;
},
progress(fn, tween = n... | Add helper functions to update velocity options | Add helper functions to update velocity options
| JavaScript | mit | ktsn/vq | ---
+++
@@ -7,9 +7,34 @@
return this;
},
+ duration(msec) {
+ this._opts.duration = msec;
+ return this;
+ },
+
+ easing(name) {
+ this._opts.easing = name;
+ return this;
+ },
+
progress(fn, tween = null) {
this._props.tween = tween || this._props.tween || [1, 0];
this._opts.pr... |
b247bd12cf14b573d098603d948fea9ab3199d2d | groups.js | groups.js | const groupRe = /^((:?\w|\-|,|, )+):\s*/i
, reverts = require('./reverts')
function toGroups (summary) {
summary = reverts.cleanSummary(summary)
var m = summary.match(groupRe)
return (m && m[1]) || ''
}
function cleanSummary (summary) {
return (summary || '').replace(groupRe, '')
}
function isReleaseC... | const groupRe = /^((:?\w|\-|,|, )+):\s*/i
, reverts = require('./reverts')
function toGroups (summary) {
summary = reverts.cleanSummary(summary)
var m = summary.match(groupRe)
return (m && m[1]) || ''
}
function cleanSummary (summary) {
return (summary || '').replace(groupRe, '')
}
function isReleaseC... | Rename Node.js "Stable" releases to "Current" | Rename Node.js "Stable" releases to "Current"
| JavaScript | mit | rvagg/changelog-maker | ---
+++
@@ -16,7 +16,7 @@
function isReleaseCommit (summary) {
return /^Working on v?\d{1,2}\.\d{1,3}\.\d{1,3}$/.test(summary)
- || /^\d{4}-\d{2}-\d{2},? Version \d{1,2}\.\d{1,3}\.\d{1,3} (["'][A-Za-z ]+["'] )?\((Stable|LTS|Maintenance)\)/.test(summary)
+ || /^\d{4}-\d{2}-\d{2},? Version \d{1,2}... |
3e2e1baeb0208be9c40d6d208c31792a4cc8e842 | src/index.js | src/index.js | require("./stylesheets/main.less");
var settings = require("./settings");
var commands = codebox.require("core/commands");
var manager = new codebox.tabs.Manager({
tabMenu: false
});
manager.$el.addClass("component-panels");
// Add tabs to grid
codebox.app.grid.addView(manager, {
width: 20,
at: 0
});
//... | require("./stylesheets/main.less");
var settings = require("./settings");
var commands = codebox.require("core/commands");
var manager = new codebox.tabs.Manager({
tabMenu: false
});
manager.$el.addClass("component-panels");
// Add tabs to grid
codebox.app.grid.addView(manager, {
width: 20,
at: 0
});
//... | Add command in view menu | Add command in view menu
| JavaScript | apache-2.0 | etopian/codebox-package-panels,CodeboxIDE/package-panels | ---
+++
@@ -33,5 +33,14 @@
codebox.app.grid.update();
});
+// Add to View menu
+if (codebox.menubar) {
+ codebox.menubar.createMenu("view", {
+ caption: "Toggle Side Bar",
+ command: "view.panels.toggle"
+ });
+}
+
+
// Make the tab manager global
codebox.panels = manager; |
eb04bb23e4d5496a8870a810ad201551915d11dd | src/index.js | src/index.js | import 'babel-polyfill';
const window = (typeof window !== 'undefined') ? window : {};
// Default config values.
const defaultConfig = {
loggingFunction: () => true,
loadInWorker: true, // FIXME cambia il nome
};
// Config used by the module.
const config = {};
// ***** Private functions *****
const formatE... | import 'babel-polyfill';
import Catcher from './catcher';
import Logger from './logger';
// Default config values.
const defaultConfig = {
scope: (typeof window !== 'undefined') ? window : {},
loggingFunction: () => true,
useWorker: true,
errorBuffer: 5,
};
// Config used by the module.
let config = ... | Move cathing functions to catch file | Move cathing functions to catch file
| JavaScript | mit | mattiaocchiuto/log-it | ---
+++
@@ -1,46 +1,26 @@
import 'babel-polyfill';
-const window = (typeof window !== 'undefined') ? window : {};
+import Catcher from './catcher';
+import Logger from './logger';
// Default config values.
const defaultConfig = {
+ scope: (typeof window !== 'undefined') ? window : {},
loggingFunction: ... |
46f2979acf5216df541f0dcc1bbb969cba43aef9 | src/index.js | src/index.js | import React from 'react';
import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import { createStore, applyMiddleware } from 'redux';
import { BrowserRouter, Route } from 'react-router-dom';
import promise from 'redux-promise'
import PostsIndex from './components/posts_index';
import PostsNew from... | import React from 'react';
import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import { createStore, applyMiddleware } from 'redux';
import { BrowserRouter, Route, Switch } from 'react-router-dom';
import promise from 'redux-promise'
import PostsIndex from './components/posts_index';
import Posts... | Fix bug by adding Switch to the routes and more specific routes shown first in code | Fix bug by adding Switch to the routes and more specific routes shown first in code
| JavaScript | mit | kevinw123/ReduxBlog,kevinw123/ReduxBlog | ---
+++
@@ -2,7 +2,7 @@
import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import { createStore, applyMiddleware } from 'redux';
-import { BrowserRouter, Route } from 'react-router-dom';
+import { BrowserRouter, Route, Switch } from 'react-router-dom';
import promise from 'redux-promise'
... |
5205cc041e05ed01258681d88b438cbe58c464d2 | src/index.js | src/index.js | 'use strict';
var Promise = require('bluebird');
var sinon = require('sinon');
function thenable (promiseFactory) {
return Object.keys(Promise.prototype)
.filter(function (method) {
return Promise.prototype.hasOwnProperty(method) && method !== 'then';
})
.reduce(function (acc, method) {
ac... | 'use strict';
var Promise = require('bluebird');
var sinon = require('sinon');
function thenable (promiseFactory) {
return Object.getOwnPropertyNames(Promise.prototype)
.filter(function (method) {
return method !== 'then';
})
.reduce(function (acc, method) {
acc[method] = function () {
... | Use Object.getOwnPropertyNames for compatibility with native promises | Use Object.getOwnPropertyNames for compatibility with native promises
| JavaScript | mit | bendrucker/sinon-as-promised,hongkheng/sinon-as-promised | ---
+++
@@ -4,9 +4,9 @@
var sinon = require('sinon');
function thenable (promiseFactory) {
- return Object.keys(Promise.prototype)
+ return Object.getOwnPropertyNames(Promise.prototype)
.filter(function (method) {
- return Promise.prototype.hasOwnProperty(method) && method !== 'then';
+ return ... |
7d7f578ad3d163da121ffdd3d8ee4fd6500da318 | src/index.js | src/index.js | function createDynamicFunction(customAction) {
return Function('action', 'return function (){ return action.apply(this, [...arguments]) };')(customAction);
}
function formatFunctionName(type) {
let formattedName = '';
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() +... | function formatFunctionName(type) {
let formattedName = '';
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
type.split('_').map((val, i) => {
if (i === 0) {
formattedName += val.toLowerCase();
} else {
... | Remove not useful function creator | Remove not useful function creator
| JavaScript | mit | mattiaocchiuto/actions-creator-factory | ---
+++
@@ -1,7 +1,3 @@
-function createDynamicFunction(customAction) {
- return Function('action', 'return function (){ return action.apply(this, [...arguments]) };')(customAction);
-}
-
function formatFunctionName(type) {
let formattedName = '';
@@ -60,7 +56,7 @@
const functionName = formatFunct... |
f406e16d6084c38a714fa532f93eccffe1a826b1 | js/simple_lottery.js | js/simple_lottery.js | let possibilites = 1;
for (let i = 53; i >= 48; i--) {
possibilites *= i;
}
console.log('The odds are %d to 1', possibilites);
| let possibilites = 1;
for (let i = 53; i >= 48; i--) {
possibilites *= i;
}
console.log('The odds are %d to 1', possibilites);
| Use standard JS indent width | Use standard JS indent width
| JavaScript | mit | rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal... | ---
+++
@@ -1,5 +1,5 @@
let possibilites = 1;
for (let i = 53; i >= 48; i--) {
- possibilites *= i;
+ possibilites *= i;
}
console.log('The odds are %d to 1', possibilites); |
25ed756722fb765e3900d8b409b2b09a592fd310 | src/timer.js | src/timer.js | var Timer = (function(Event, Util) {
'use strict';
// Internal constants for the various timer states.
var Waiting = 0, Inspecting = 1, Ready = 2, Running = 3, Stopped = 4;
var state = Waiting;
var startTime = undefined, endTime = undefined, solveTime = undefined;
var intervalID = undefined;
function i... | var Timer = (function(Event, Util) {
'use strict';
// Internal constants for the various timer states.
var Waiting = 0, Inspecting = 1, Ready = 2, Running = 3, Stopped = 4;
var state = Waiting;
var startTime, endTime, solveTime;
var intervalID;
function isWaiting() { return state === Waiting; }
funct... | Remove explicit assignment to undefined. | Remove explicit assignment to undefined.
jshint complains about these.
| JavaScript | mit | jjtimer/jjtimer-core | ---
+++
@@ -5,8 +5,8 @@
var Waiting = 0, Inspecting = 1, Ready = 2, Running = 3, Stopped = 4;
var state = Waiting;
- var startTime = undefined, endTime = undefined, solveTime = undefined;
- var intervalID = undefined;
+ var startTime, endTime, solveTime;
+ var intervalID;
function isWaiting() { retur... |
b4ded385e4cc520cc90ef46d3491ff0927d6ada8 | package/environments/development.js | package/environments/development.js | const Environment = require('../environment')
const { dev_server } = require('../config')
const assetHost = require('../asset_host')
const webpack = require('webpack')
module.exports = class extends Environment {
constructor() {
super()
if (dev_server.hmr) {
this.plugins.set('HotModuleReplacement', ne... | const Environment = require('../environment')
const { dev_server } = require('../config')
const assetHost = require('../asset_host')
const webpack = require('webpack')
module.exports = class extends Environment {
constructor() {
super()
if (dev_server.hmr) {
this.plugins.set('HotModuleReplacement', ne... | Add overlay option for debugging | Add overlay option for debugging
| JavaScript | mit | rails/webpacker,usertesting/webpacker,gauravtiwari/webpacker,rails/webpacker,usertesting/webpacker,rossta/webpacker,rossta/webpacker,usertesting/webpacker,rossta/webpacker,rossta/webpacker,gauravtiwari/webpacker,gauravtiwari/webpacker | ---
+++
@@ -33,6 +33,8 @@
headers: {
'Access-Control-Allow-Origin': '*'
},
+ overlay: true,
+ watchContentBase: true,
watchOptions: {
ignored: /node_modules/
}, |
8dc057b796b34150de611314f27800da70df690a | src/tizen/SplashScreenProxy.js | src/tizen/SplashScreenProxy.js | var exec = require('cordova/exec');
module.exports = {
splashscreen: {
win: null,
show: function() {
win= window.open('splashscreen.html');
},
hide: function() {
win.close();
win = null;
}
}
};
require("cordova/tizen/commandProxy").... | ( function() {
win = null;
module.exports = {
show: function() {
if ( win === null ) {
win = window.open('splashscreen.html');
}
},
hide: function() {
if ( win !== null ) {
win.close();
win = null;
}
}
};
require("cordova/tizen/comm... | Correct structure, and only ever create one splashscreen window. | Proxy: Correct structure, and only ever create one splashscreen window.
| JavaScript | apache-2.0 | Panajev/cordova-plugin-splashscreen,editweb/cordova-plugin-splashscreen,Newstex/cordova-plugin-splashscreen,polyvi/cordova-plugin-splashscreen,Seedstars/cordova-plugin-splashscreen,polyvi/cordova-plugin-splashscreen,corimf/cordova-plugin-splashscreen,petermetz/cordova-plugin-splashscreen,IWAtech/cordova-plugin-splashsc... | ---
+++
@@ -1,14 +1,16 @@
-var exec = require('cordova/exec');
+( function() {
+
+win = null;
module.exports = {
- splashscreen: {
- win: null,
+ show: function() {
+ if ( win === null ) {
+ win = window.open('splashscreen.html');
+ }
+ },
- show: function() {
- ... |
69a0f5204ff7132e244e2866f69f3f7375e19318 | app/assets/javascripts/application.js | app/assets/javascripts/application.js | // 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/javascripts,
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative pat... | // 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/javascripts,
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative pat... | Hide notification bars after a few seconds. | Hide notification bars after a few seconds.
Former-commit-id: 8dc17c173ff496666879f82c6544e0826d8d36f5 | JavaScript | mit | chaosdorf/mete,chaosdorf/mete,YtvwlD/mete,YtvwlD/mete,YtvwlD/mete,chaosdorf/mete,chaosdorf/mete,YtvwlD/mete | ---
+++
@@ -25,3 +25,6 @@
});
});
}
+
+//hide notification bars after a few seconds
+$('.alert').delay(10000).fadeOut('slow'); |
e69b09323f232fe2982ca8e764b432dbf39457c2 | web/static/js/app.js | web/static/js/app.js |
/*
VENDOR
*/
require( "material-design-lite" );
/*
APPLICATION
*/
const { initTerms } = require( "./term.js" );
initTerms();
|
/*
VENDOR
*/
require( "material-design-lite" );
import "phoenix_html"
/*
APPLICATION
*/
const { initTerms } = require( "./term.js" );
initTerms();
| Add import of phoenix_html back | Add import of phoenix_html back
Without this import the delete links stopped working
| JavaScript | mit | digitalnatives/course_planner,digitalnatives/course_planner,digitalnatives/course_planner | ---
+++
@@ -5,6 +5,8 @@
require( "material-design-lite" );
+ import "phoenix_html"
+
/*
APPLICATION
*/ |
e0a369fec549498071504e19070bfdd69c49478b | packages/react-jsx-highcharts/src/components/PlotBandLine/UsePlotBandLineLifecycle.js | packages/react-jsx-highcharts/src/components/PlotBandLine/UsePlotBandLineLifecycle.js | import React, { useRef, useEffect, useState } from 'react';
import uuid from 'uuid/v4';
import { attempt } from 'lodash-es';
import useModifiedProps from '../UseModifiedProps';
import useAxis from '../UseAxis';
export default function usePlotBandLineLifecycle(props, plotType) {
const { id = uuid, axisId, children, .... | import React, { useRef, useEffect, useState } from 'react';
import uuid from 'uuid/v4';
import { attempt } from 'lodash-es';
import useModifiedProps from '../UseModifiedProps';
import useAxis from '../UseAxis';
export default function usePlotBandLineLifecycle(props, plotType) {
const { id = uuid, axisId, children, .... | Fix plotband label unmount crashing | Fix plotband label unmount crashing
| JavaScript | mit | whawker/react-jsx-highcharts,whawker/react-jsx-highcharts | ---
+++
@@ -29,10 +29,12 @@
setPlotbandline({
id: myId,
getPlotBandLine: () => {
- const plotbandlineObject = axis.object.plotLinesAndBands.find(
- plb => plb.id === myId
- );
- return plotbandlineObject;
+ if (axis && axis.object && axis.object.... |
3abec636fa6b84f8813855cbfca5c03cbbd8f9b7 | src/helper.js | src/helper.js | var fs = require("fs");
var path = require("path");
var Helper = module.exports = {
getConfig: function () {
var filename = process.env.SHOUT_CONFIG;
if(!filename || !fs.exists(filename)) {
filename = this.resolveHomePath("config.js");
if(!fs.exists(filename)) {
filename = path.resolve(__dirname, "..", ... | var fs = require("fs");
var path = require("path");
var Helper = module.exports = {
getConfig: function () {
var filename = process.env.SHOUT_CONFIG;
if(!filename || !fs.existsSync(filename)) {
filename = this.resolveHomePath("config.js");
if(!fs.existsSync(filename)) {
filename = path.resolve(__dirname... | Fix fs.exists to existsSync where necessary | Fix fs.exists to existsSync where necessary
| JavaScript | mit | FryDay/lounge,realies/lounge,erming/shout,nickel715/shout,harishanand95/shout_irc_bouncer_openshift,rockhouse/lounge,cha2maru/shout,astorije/shout,metsjeesus/lounge,williamboman/shout,sebastiencs/lounge,williamboman/lounge,williamboman/lounge,thelounge/lounge,ScoutLink/lounge,metsjeesus/lounge,astorije/shout,olivierlam... | ---
+++
@@ -4,9 +4,9 @@
var Helper = module.exports = {
getConfig: function () {
var filename = process.env.SHOUT_CONFIG;
- if(!filename || !fs.exists(filename)) {
+ if(!filename || !fs.existsSync(filename)) {
filename = this.resolveHomePath("config.js");
- if(!fs.exists(filename)) {
+ if(!fs.existsSy... |
aa323b4dbd0a372c02db1e63757c8127226fcabb | example/future/src/channelTitleEditor/render.js | example/future/src/channelTitleEditor/render.js |
module.exports = (model, dispatch) => {
const root = document.createElement('div');
if (model.channelOnEdit === null) {
return root;
}
const c = model.channelOnEdit;
const title = model.channels[c].title;
const row = document.createElement('div');
row.classList.add('row');
row.classList.add('row... |
module.exports = (model, dispatch) => {
const root = document.createElement('div');
if (model.channelOnEdit === null) {
return root;
}
const c = model.channelOnEdit;
const title = model.channels[c].title;
const row = document.createElement('div');
row.classList.add('row');
row.classList.add('row... | Enable form submit by pressing enter | Enable form submit by pressing enter
| JavaScript | mit | axelpale/lately,axelpale/lately | ---
+++
@@ -18,11 +18,31 @@
const text = document.createElement('input');
text.type = 'text';
text.value = title;
-
form.appendChild(text);
const okBtn = document.createElement('button');
+ okBtn.type = 'button';
okBtn.innerHTML = 'OK';
+ form.appendChild(okBtn);
+
+ row.appendChild(form);
+ r... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.