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 |
|---|---|---|---|---|---|---|---|---|---|---|
7f292e1e1c3a7147331a462e2ded5e3a01cdfe7f | server/public/scripts/controllers/home.controller.js | server/public/scripts/controllers/home.controller.js | app.controller('HomeController', ['$http', 'AuthFactory', function($http, AuthFactory) {
console.log('HomeController running');
var self = this;
self.userStatus = AuthFactory.userStatus;
self.dataArray = [{
src: '../assets/images/carousel/genome-sm.jpg'
},
{
src: '../assets/images/carousel/... | app.controller('HomeController', ['$http', 'AuthFactory', function($http, AuthFactory) {
console.log('HomeController running');
var self = this;
self.userStatus = AuthFactory.userStatus;
self.dataArray = [
{ src: '../assets/images/carousel/genome-sm.jpg' },
{ src: '../assets/images/carousel/falkirk-whe... | Refactor carousel image references for better readability | Refactor carousel image references for better readability
| JavaScript | mit | STEMentor/STEMentor,STEMentor/STEMentor | ---
+++
@@ -3,29 +3,14 @@
var self = this;
self.userStatus = AuthFactory.userStatus;
- self.dataArray = [{
- src: '../assets/images/carousel/genome-sm.jpg'
- },
- {
- src: '../assets/images/carousel/falkirk-wheel-sm.jpg'
- },
- {
- src: '../assets/images/carousel/iss-sm.jpg'
- }... |
f3c4fc88e6e2bb7cb28bd491812226805f321994 | lib/helpers.js | lib/helpers.js | 'use babel'
import minimatch from 'minimatch'
export function showError(e) {
atom.notifications.addError(`[Linter] ${e.message}`, {
detail: e.stack,
dismissable: true
})
}
export function shouldTriggerLinter(linter, wasTriggeredOnChange, scopes) {
if (wasTriggeredOnChange && !linter.lintOnFly) {
re... | 'use babel'
import minimatch from 'minimatch'
export function showError(e) {
atom.notifications.addError(`[Linter] ${e.message}`, {
detail: e.stack,
dismissable: true
})
}
export function shouldTriggerLinter(linter, wasTriggeredOnChange, scopes) {
if (wasTriggeredOnChange && !linter.lintOnFly) {
re... | Add a message key helper; also cleanup unused | :new: Add a message key helper; also cleanup unused
| JavaScript | mit | AtomLinter/Linter,atom-community/linter,steelbrain/linter | ---
+++
@@ -18,20 +18,6 @@
})
}
-export function requestUpdateFrame(callback) {
- setTimeout(callback, 100)
-}
-
-export function debounce(callback, delay) {
- let timeout = null
- return function(arg) {
- clearTimeout(timeout)
- timeout = setTimeout(() => {
- callback.call(this, arg)
- }, dela... |
1b37e313bc95d878a2774590bdad9e7682d4b829 | lib/html2js.js | lib/html2js.js | 'use babel'
import Html2JsView from './html2js-view'
import html2js from './html-2-js'
import { CompositeDisposable } from 'atom'
export default {
html2JsView: null,
modalPanel: null,
subscriptions: null,
activate (state) {
this.subscriptions = new CompositeDisposable()
this.html2JsView = new Html2... | 'use babel'
import Html2JsView from './html2js-view'
import html2js from './html-2-js'
import { CompositeDisposable } from 'atom'
export default {
html2JsView: null,
modalPanel: null,
subscriptions: null,
activate (state) {
this.subscriptions = new CompositeDisposable()
this.html2JsView = new Html2... | Set JS grammar to newly created pane texteditor | Set JS grammar to newly created pane texteditor
| JavaScript | mit | jerone/atom-html2js,jerone/atom-html2js | ---
+++
@@ -18,6 +18,7 @@
atom.workspace.open().then((textEditor) => {
let htmlJs = html2js(text, {})
textEditor.setText(htmlJs)
+ textEditor.setGrammar(atom.grammars.grammarForScopeName('source.js'))
})
})
|
bac10e88a8732cf5d4914635bb93ff91c8c68e81 | .grunt-tasks/postcss.js | .grunt-tasks/postcss.js | module.exports = {
options: {
map: true,
processors: [
require("pixrem")(), // add fallbacks for rem units for IE8+
require("autoprefixer")({ browsers: "> 1%, last 2 versions, ie >= 8" }), // add vendor prefixes
]
},
default: {
src: "dist/stylesheets/*.css"
}
};
| module.exports = {
options: {
map: true,
processors: [
require("pixrem")({ html: false, atrules: true }), // add fallbacks for rem units for IE8+
require("autoprefixer")({ browsers: "> 1%, last 2 versions, ie >= 8" }), // add vendor prefixes
]
},
default: {
src: "dist/stylesheets/*.css"
}
};
| Update post css task to add rem fallbacks properly for IE8 | Update post css task to add rem fallbacks properly for IE8
| JavaScript | mit | nhsevidence/NICE-Experience,nhsevidence/NICE-Experience | ---
+++
@@ -2,7 +2,7 @@
options: {
map: true,
processors: [
- require("pixrem")(), // add fallbacks for rem units for IE8+
+ require("pixrem")({ html: false, atrules: true }), // add fallbacks for rem units for IE8+
require("autoprefixer")({ browsers: "> 1%, last 2 versions, ie >= 8" }), // add vendor... |
a8cddb0a5b2e026ce0733a66aa4aaa77de1ec506 | bin/cli.js | bin/cli.js | #!/usr/bin/env node
'use strict';
const dependencyTree = require('../');
const program = require('commander');
program
.version(require('../package.json').version)
.usage('[options] <filename>')
.option('-d, --directory <path>', 'location of files of supported filetypes')
.option('-c, --require-config <path>... | #!/usr/bin/env node
'use strict';
const dependencyTree = require('../');
const program = require('commander');
program
.version(require('../package.json').version)
.usage('[options] <filename>')
.option('-d, --directory <path>', 'location of files of supported filetypes')
.option('-c, --require-config <path>... | Add --tsconfig CLI option to specify a TypeScript config file | Add --tsconfig CLI option to specify a TypeScript config file
| JavaScript | mit | dependents/node-dependency-tree,dependents/node-dependency-tree | ---
+++
@@ -11,6 +11,7 @@
.option('-d, --directory <path>', 'location of files of supported filetypes')
.option('-c, --require-config <path>', 'path to a requirejs config')
.option('-w, --webpack-config <path>', 'path to a webpack config')
+ .option('-t, --ts-config <path>', 'path to a typescript config')
... |
408567081d82c28b1ff0041c10c57f879acf1187 | dawn/js/components/peripherals/NameEdit.js | dawn/js/components/peripherals/NameEdit.js | import React from 'react';
import InlineEdit from 'react-edit-inline';
import Ansible from '../../utils/Ansible';
var NameEdit = React.createClass({
propTypes: {
name: React.PropTypes.string,
id: React.PropTypes.string
},
dataChange(data) {
Ansible.sendMessage('custom_names', {
id: this.props.i... | import React from 'react';
import InlineEdit from 'react-edit-inline';
import Ansible from '../../utils/Ansible';
var NameEdit = React.createClass({
propTypes: {
name: React.PropTypes.string,
id: React.PropTypes.string
},
dataChange(data) {
var x = new RegExp("^[A-Za-z][A-Za-z0-9]+$");
if (x.test... | Check new peripheral names against regex | Check new peripheral names against regex
| JavaScript | apache-2.0 | pioneers/PieCentral,pioneers/PieCentral,pioneers/PieCentral,pioneers/PieCentral,pioneers/PieCentral,pioneers/PieCentral,pioneers/PieCentral | ---
+++
@@ -8,10 +8,13 @@
id: React.PropTypes.string
},
dataChange(data) {
- Ansible.sendMessage('custom_names', {
- id: this.props.id,
- name: data.name
- });
+ var x = new RegExp("^[A-Za-z][A-Za-z0-9]+$");
+ if (x.test(data.name)) {
+ Ansible.sendMessage('custom_names', {
+ ... |
ee678fe9f72422507e138ffa9fb45485c7fb0449 | src/views/Main/Container.js | src/views/Main/Container.js | import React from 'react';
import Map, {GoogleApiWrapper} from 'google-maps-react';
import { searchNearby } from 'utils/googleApiHelpers';
export class Container extends React.Component {
onReady(mapProps, map) {
// when map is ready and
const { google } = this.props;
const opts = {
location: map.center,
... | import React from 'react';
import Map, {GoogleApiWrapper} from 'google-maps-react';
import { searchNearby } from 'utils/googleApiHelpers';
export class Container extends React.Component {
constructor(props) {
// super initializes this
super(props);
this.state = {
places: [],
pagination: null
}
}
onR... | Set Main container to be stateful | Set Main container to be stateful
| JavaScript | mit | Kgiberson/welp | ---
+++
@@ -4,8 +4,17 @@
import { searchNearby } from 'utils/googleApiHelpers';
export class Container extends React.Component {
+ constructor(props) {
+ // super initializes this
+ super(props);
+
+ this.state = {
+ places: [],
+ pagination: null
+ }
+ }
onReady(mapProps, map) {
- // when map is ready... |
7da241808bb335551bd4a822c6970561b859ab76 | src/models/apikey.js | src/models/apikey.js | import stampit from 'stampit';
import {Meta, Model} from './base';
const ApiKeyMeta = Meta({
name: 'apiKey',
pluralName: 'apiKeys',
endpoints: {
'detail': {
'methods': ['delete', 'get'],
'path': '/v1/instances/{instanceName}/api_keys/{id}/'
},
'list': {
'methods': ['post', 'get'],
... | import stampit from 'stampit';
import {Meta, Model} from './base';
const ApiKeyMeta = Meta({
name: 'apiKey',
pluralName: 'apiKeys',
endpoints: {
'detail': {
'methods': ['delete', 'patch', 'put', 'get'],
'path': '/v1/instances/{instanceName}/api_keys/{id}/'
},
'list': {
'methods': ['... | Add methods to api key's detail endpoint | [LIB-386] Add methods to api key's detail endpoint
| JavaScript | mit | Syncano/syncano-server-js | ---
+++
@@ -6,7 +6,7 @@
pluralName: 'apiKeys',
endpoints: {
'detail': {
- 'methods': ['delete', 'get'],
+ 'methods': ['delete', 'patch', 'put', 'get'],
'path': '/v1/instances/{instanceName}/api_keys/{id}/'
},
'list': { |
35cbf16ff15966ecddc02abd040f8c46fe824a0d | src/components/posts/PostsAsGrid.js | src/components/posts/PostsAsGrid.js | import React from 'react'
import { parsePost } from '../parsers/PostParser'
class PostsAsGrid extends React.Component {
static propTypes = {
posts: React.PropTypes.object,
json: React.PropTypes.object,
currentUser: React.PropTypes.object,
gridColumnCount: React.PropTypes.number,
}
renderColumn(p... | import React from 'react'
import { parsePost } from '../parsers/PostParser'
class PostsAsGrid extends React.Component {
static propTypes = {
posts: React.PropTypes.object,
json: React.PropTypes.object,
currentUser: React.PropTypes.object,
gridColumnCount: React.PropTypes.number,
}
renderColumn(p... | Fix an issue with grid post rendering. | Fix an issue with grid post rendering. | JavaScript | mit | ello/webapp,ello/webapp,ello/webapp | ---
+++
@@ -9,10 +9,10 @@
gridColumnCount: React.PropTypes.number,
}
- renderColumn(posts) {
+ renderColumn(posts, index) {
const { json, currentUser } = this.props
return (
- <div className="Column">
+ <div className="Column" key={`column_${index}`}>
{posts.map((post) => {
... |
74b87cbca5fc7bd065ecd129463856dffc8b4b7e | app/routes/fellows.server.routes.js | app/routes/fellows.server.routes.js | 'use strict';
var users = require('../../app/controllers/users');
var fellows = require('../../app/controllers/fellows');
module.exports = function(app) {
// Setting up the bootcamp api
app.route('/camps')
<<<<<<< HEAD
.get(fellows.list_camp) // login and authorization required
=======
.get(fellows.list_camp);... | 'use strict';
var users = require('../../app/controllers/users');
var fellows = require('../../app/controllers/fellows');
module.exports = function(app) {
// Setting up the bootcamp api
app.route('/camps')
.get(fellows.list_camp); // login and authorization required
// .post(fellows.create_camp); //by admin
... | Reset fellow server js file | Reset fellow server js file
| JavaScript | mit | andela-ogaruba/AndelaAPI | ---
+++
@@ -6,11 +6,7 @@
module.exports = function(app) {
// Setting up the bootcamp api
app.route('/camps')
-<<<<<<< HEAD
- .get(fellows.list_camp) // login and authorization required
-=======
.get(fellows.list_camp); // login and authorization required
->>>>>>> d27202af5ed201b57b4a5a78a95f3bdc88556d1a
/... |
36ffbef010db6d60a4dbc9b6c4eab9ad4ebbcf7b | src/components/views/elements/Field.js | src/components/views/elements/Field.js | /*
Copyright 2019 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
... | /*
Copyright 2019 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
... | Tweak comment about field ID | Tweak comment about field ID
Co-Authored-By: jryans <91e4c98f79b38ce04c052c188926e2d9ae2a3b28@gmail.com> | JavaScript | apache-2.0 | matrix-org/matrix-react-sdk,matrix-org/matrix-react-sdk,matrix-org/matrix-react-sdk,matrix-org/matrix-react-sdk,matrix-org/matrix-react-sdk,matrix-org/matrix-react-sdk | ---
+++
@@ -19,7 +19,7 @@
export default class Field extends React.PureComponent {
static propTypes = {
- // The field's id, which binds the input and label together.
+ // The field's ID, which binds the input and label together.
id: PropTypes.string.isRequired,
// The field's ... |
49cb1ee49686ea320689ae97ce94c5d593cccdbb | ws-connect.js | ws-connect.js | var WebSocket = require('ws');
var reHttpSignalhost = /^http(.*)$/;
var reTrailingSlash = /\/$/;
function connect(signalhost) {
// if we have a http/https signalhost then do some replacement magic to push across
// to ws implementation (also add the /primus endpoint)
if (reHttpSignalhost.test(signalhost)) {
... | var WebSocket = require('ws');
var reHttpSignalhost = /^http(.*)$/;
var reTrailingSlash = /\/$/;
var pingers = [];
var PINGHEADER = 'primus::ping::';
var PONGHEADER = 'primus::pong::';
function connect(signalhost) {
var socket;
// if we have a http/https signalhost then do some replacement magic to push across
... | Improve node socket connection to ping as per what a primus server expects | Improve node socket connection to ping as per what a primus server expects
| JavaScript | apache-2.0 | eightyeight/rtc-signaller,rtc-io/rtc-signaller | ---
+++
@@ -1,8 +1,13 @@
var WebSocket = require('ws');
var reHttpSignalhost = /^http(.*)$/;
var reTrailingSlash = /\/$/;
+var pingers = [];
+var PINGHEADER = 'primus::ping::';
+var PONGHEADER = 'primus::pong::';
function connect(signalhost) {
+ var socket;
+
// if we have a http/https signalhost then do so... |
a6972191cf167266225ddcedc1c12ce94297ef1c | lib/reporters/lcov-reporter.js | lib/reporters/lcov-reporter.js | var Reporter = require('../reporter');
var lcovRecord = function(data) {
var str = "",
lineHandled = 0,
lineFound = 0,
fileName = data.fileName;
if(this.options.lcovOptions && this.options.lcovOptions.renamer){
fileName = this.options.lcovOptions.renamer(fileName);
}
str += 'SF:' + file... | var Reporter = require('../reporter');
var lcovRecord = function(data) {
var str = '',
lineHandled = 0,
lineFound = 0,
fileName = data.fileName;
if (this.options.cliOptions && this.options.cliOptions.lcovOptions && this.options.cliOptions.lcovOptions.renamer){
fileName = this.options.cliOpti... | Fix renamer, lcov check was not accessing the proper object | Fix renamer, lcov check was not accessing the proper object
| JavaScript | mit | yagni/ember-cli-blanket,elwayman02/ember-cli-blanket,jschilli/ember-cli-blanket,calderas/ember-cli-blanket,dwickern/ember-cli-blanket,yagni/ember-cli-blanket,calderas/ember-cli-blanket,notmessenger/ember-cli-blanket,jschilli/ember-cli-blanket,elwayman02/ember-cli-blanket,mike-north/ember-cli-blanket,sglanzer/ember-cli-... | ---
+++
@@ -1,13 +1,13 @@
var Reporter = require('../reporter');
var lcovRecord = function(data) {
- var str = "",
+ var str = '',
lineHandled = 0,
lineFound = 0,
fileName = data.fileName;
- if(this.options.lcovOptions && this.options.lcovOptions.renamer){
- fileName = this.options.lc... |
24e687564a18b651d57f7f49ae5c79ff935fb95a | lib/ui/widgets/basewidget.js | lib/ui/widgets/basewidget.js | var schema = require('signalk-schema');
function BaseWidget(id, options, streamBundle, instrumentPanel) {
this.instrumentPanel = instrumentPanel;
}
BaseWidget.prototype.setActive = function(value) {
this.options.active = value;
this.instrumentPanel.onWidgetChange(this);
}
BaseWidget.prototype.getLabelForPath =... | var schema = require('signalk-schema');
function BaseWidget(id, options, streamBundle, instrumentPanel) {
this.instrumentPanel = instrumentPanel;
}
BaseWidget.prototype.setActive = function(value) {
this.options.active = value;
this.instrumentPanel.onWidgetChange(this);
}
BaseWidget.prototype.getLabelForPath =... | Add shared function for range sensitive rounding | Add shared function for range sensitive rounding
| JavaScript | apache-2.0 | SignalK/instrumentpanel,SignalK/instrumentpanel | ---
+++
@@ -21,4 +21,18 @@
return i18nElement ? i18nElement.unit : undefined;
}
+BaseWidget.prototype.displayValue = function(value) {
+ if(typeof value === 'number') {
+ var v = Math.abs(value);
+ if(v >= 50) {
+ return value.toFixed(0);
+ } else if(v >= 10) {
+ return value.toFixed(1);
+ ... |
e17572851a8351fdf7210db5aed7c6c9784c2497 | test/stack-test.js | test/stack-test.js | /*global describe, it*/
/*
* mochify.js
*
* Copyright (c) 2014 Maximilian Antoni <mail@maxantoni.de>
*
* @license MIT
*/
'use strict';
var assert = require('assert');
var run = require('./fixture/run');
describe('stack', function () {
this.timeout(3000);
it('does not screw up xunit', function (done) {
... | /*global describe, it*/
/*
* mochify.js
*
* Copyright (c) 2014 Maximilian Antoni <mail@maxantoni.de>
*
* @license MIT
*/
'use strict';
var assert = require('assert');
var run = require('./fixture/run');
describe('stack', function () {
this.timeout(3000);
it('does not screw up xunit', function (done) {
... | Fix test case to not fail due to varying timing (again) | Fix test case to not fail due to varying timing (again)
| JavaScript | mit | mantoni/mochify.js,jhytonen/mochify.js,mantoni/mochify.js,mantoni/mochify.js,jhytonen/mochify.js,Heng-xiu/mochify.js,Swaagie/mochify.js,Swaagie/mochify.js,boneskull/mochify.js,boneskull/mochify.js,Heng-xiu/mochify.js | ---
+++
@@ -18,8 +18,8 @@
it('does not screw up xunit', function (done) {
run('passes', ['-R', 'xunit'], function (code, stdout) {
var lines = stdout.split('\n');
- assert.equal(lines[1].substring(0, lines[1].length - 3),
- '<testcase classname="test" name="passes" time="0');
+ var e... |
e178e5a5213b07650fa4c9ce1fc32c25c3d7af12 | main/plugins/settings/index.js | main/plugins/settings/index.js | import React from 'react';
import Settings from './Settings';
/**
* Plugin to show app settings in results list
* @param {String} term
*/
const settingsPlugin = (term, callback) => {
if (!term.match(/^(show\s+)?(settings|preferences)\s*/i)) return;
callback([{
icon: '/Applications/Cerebro.app',
title: ... | import React from 'react';
import search from 'lib/search';
import Settings from './Settings';
// Settings plugin name
const NAME = 'Cerebro Settings';
// Phrases that used to find settings plugins
const KEYWORDS = [
NAME,
'Cerebro Preferences'
];
/**
* Plugin to show app settings in results list
* @param {St... | Improve search if settings plugin Now available by settings and preferences words | Improve search if settings plugin
Now available by settings and preferences words
| JavaScript | mit | KELiON/cerebro,KELiON/cerebro | ---
+++
@@ -1,23 +1,35 @@
import React from 'react';
+import search from 'lib/search';
import Settings from './Settings';
+
+// Settings plugin name
+const NAME = 'Cerebro Settings';
+
+// Phrases that used to find settings plugins
+const KEYWORDS = [
+ NAME,
+ 'Cerebro Preferences'
+];
/**
* Plugin to show ... |
3af7d2e005748a871efe4d2dd278d11dfc82950f | next.config.js | next.config.js | const withOffline = require("next-offline");
const nextConfig = {
target: "serverless",
future: {
webpack5: true,
},
workboxOpts: {
swDest: "static/service-worker.js",
runtimeCaching: [
{
urlPattern: /^https?.*/,
handler: "NetworkFirst",
options: {
cacheName:... | const withOffline = require("next-offline");
const nextConfig = {
target: "serverless",
workboxOpts: {
runtimeCaching: [
{
urlPattern: /^https?.*/,
handler: "NetworkFirst",
options: {
cacheName: "offlineCache",
expiration: {
maxEntries: 200
... | Swap back to webpack 4, adjust next-offline | Swap back to webpack 4, adjust next-offline
| JavaScript | bsd-2-clause | overshard/isaacbythewood.com,overshard/isaacbythewood.com | ---
+++
@@ -2,24 +2,15 @@
const nextConfig = {
target: "serverless",
- future: {
- webpack5: true,
- },
workboxOpts: {
- swDest: "static/service-worker.js",
runtimeCaching: [
{
urlPattern: /^https?.*/,
handler: "NetworkFirst",
options: {
- cacheName: "h... |
06cac5f7a677bf7d9bc4f92811203d52dc3c6313 | cookie-bg-picker/background_scripts/background.js | cookie-bg-picker/background_scripts/background.js | /* Retrieve any previously set cookie and send to content script */
browser.tabs.onUpdated.addListener(cookieUpdate);
function getActiveTab() {
return browser.tabs.query({active: true, currentWindow: true});
}
function cookieUpdate(tabId, changeInfo, tab) {
getActiveTab().then((tabs) => {
// get any previous... | /* Retrieve any previously set cookie and send to content script */
function getActiveTab() {
return browser.tabs.query({active: true, currentWindow: true});
}
function cookieUpdate() {
getActiveTab().then((tabs) => {
// get any previously set cookie for the current tab
var gettingCookies = browser.cooki... | Update on tab activate as well as update | Update on tab activate as well as update
| JavaScript | mpl-2.0 | mdn/webextensions-examples,mdn/webextensions-examples,mdn/webextensions-examples | ---
+++
@@ -1,12 +1,10 @@
/* Retrieve any previously set cookie and send to content script */
-
-browser.tabs.onUpdated.addListener(cookieUpdate);
function getActiveTab() {
return browser.tabs.query({active: true, currentWindow: true});
}
-function cookieUpdate(tabId, changeInfo, tab) {
+function cookieUpda... |
5b20639101d8da9031641fa9565970bcdc67b441 | app/assets/javascripts/books.js | app/assets/javascripts/books.js | var ready = function() {
$('#FontSize a').click(function() {
$('.content').css("font-size", this.dataset.size);
});
$('#FontFamily a').click(function(){
$('.content').css("font-family", this.innerHTML);
});
$('#Leading a').click(function(){
$('.content').css("line-height", this.dataset.spacing);
});
$('... | // http://www.quirksmode.org/js/cookies.html
function createCookie(name, value, days) {
var expires;
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
expires = "; expires=" + date.toGMTString();
} else {
expires = "";
}
document.cookie = encodeURIComponent(na... | Use cookies to persist formatting options | Use cookies to persist formatting options
| JavaScript | mit | mk12/great-reads,mk12/great-reads,mk12/great-reads | ---
+++
@@ -1,18 +1,57 @@
+// http://www.quirksmode.org/js/cookies.html
+function createCookie(name, value, days) {
+ var expires;
+
+ if (days) {
+ var date = new Date();
+ date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
+ expires = "; expires=" + date.toGMTString();
+ } else {
+ expires = "";
+ }
+... |
39b78875d513f19cd5ba3b6eeeafe244d6980953 | app/assets/javascripts/forms.js | app/assets/javascripts/forms.js | $(function() {
if ($('small.error').length > 0) {
$('html, body').animate({
scrollTop: ($('small.error').first().offset().top)
},500);
}
}); | $(function() {
if ($('small.error').length > 0) {
$('html, body').animate({
scrollTop: ($('small.error').first().offset().top-100)
},500);
}
}); | Improve scrolling to error feature | Improve scrolling to error feature
| JavaScript | mit | airslie/renalware-core,airslie/renalware-core,airslie/renalware-core,airslie/renalware-core | ---
+++
@@ -1,7 +1,7 @@
$(function() {
if ($('small.error').length > 0) {
$('html, body').animate({
- scrollTop: ($('small.error').first().offset().top)
+ scrollTop: ($('small.error').first().offset().top-100)
},500);
}
}); |
add6c9550f0968e0efe196747997887ed8921c33 | app/controllers/observations.js | app/controllers/observations.js | var config = require('../../config/config.js');
var express = require('express');
var router = express.Router();
var mongoose = require('mongoose');
var Observation = mongoose.model('Observation');
var realtime = require('../realtime/realtime.js');
module.exports = function (app) {
app.use('/observations', router)... | var config = require('../../config/config.js');
var express = require('express');
var router = express.Router();
var mongoose = require('mongoose');
var Observation = mongoose.model('Observation');
var realtime = require('../realtime/realtime.js');
module.exports = function (app) {
app.use('/observations', router)... | Fix bug by restoring calls to socket.io service | Fix bug by restoring calls to socket.io service
| JavaScript | mit | MichaelRohrer/OpenAudit,IoBirds/iob-server,MichaelRohrer/OpenAudit,IoBirds/iob-server | ---
+++
@@ -20,7 +20,7 @@
return next(err);
}
}
- //realtime.notifyObservation(req.body);
+ realtime.notifyObservation(req.body);
return res.status(201).location('/observations/' + newObservation._id).end();
});
}); |
a5b130aaeb84c5dc2b26fddba87805c4d9a8915d | xmlToJson/index.js | xmlToJson/index.js | var fs = require('fs');
module.exports = function (context, xmlZipBlob) {
context.log('Node.js blob trigger function processed blob:', xmlZipBlob);
context.log(`typeof xmlZipBlob:`, typeof xmlZipBlob);
fs.writeFile('xmlZip.txt', "Hello World", 'utf8', (err) => {
if (err) {
throw err;
... | var fs = require('fs');
var path = rqeuire('path');
module.exports = function (context, xmlZipBlob) {
context.log('Node.js blob trigger function processed blob:', xmlZipBlob);
context.log(`typeof xmlZipBlob:`, typeof xmlZipBlob);
var tempDirectory = process.env["TMP"];
var tempFileName = "xmlZip.zip";... | Update xmlBlob function to write to temp directory | Update xmlBlob function to write to temp directory
| JavaScript | mit | mattmazzola/sc2iq-azure-functions | ---
+++
@@ -1,15 +1,22 @@
var fs = require('fs');
+var path = rqeuire('path');
module.exports = function (context, xmlZipBlob) {
context.log('Node.js blob trigger function processed blob:', xmlZipBlob);
context.log(`typeof xmlZipBlob:`, typeof xmlZipBlob);
- fs.writeFile('xmlZip.txt', "Hello World"... |
6916f08a1d587d64db47aa9068c0389d08aa5e1c | app/scripts/filters/timecode.js | app/scripts/filters/timecode.js | (function() {
function timecode() {
return function(seconds) {
var seconds = Number.parseFloat(seconds);
if (Number.isNaN(seconds)) {
return '-:--';
}
var wholeSeconds = Math.floor(seconds);
var minutes = Ma... | (function() {
function timecode() {
return function(seconds) {
/**
var seconds = Number.parseFloat(seconds);
if (Number.isNaN(seconds)) {
return '-:--';
}
var wholeSeconds = Math.floor(seconds);
... | Use buzz.toTimer() method for time filter | Use buzz.toTimer() method for time filter
| JavaScript | apache-2.0 | orlando21/ng-bloc-jams,orlando21/ng-bloc-jams | ---
+++
@@ -1,6 +1,8 @@
(function() {
function timecode() {
return function(seconds) {
+
+ /**
var seconds = Number.parseFloat(seconds);
if (Number.isNaN(seconds)) {
@@ -17,7 +19,11 @@
}
output += remainin... |
f6c1c6a4bf04d64c97c06fd57cc14f584fc530f5 | static/js/components/callcount_test.js | static/js/components/callcount_test.js | const html = require('choo/html');
const callcount = require('./callcount.js');
const chai = require('chai');
const expect = chai.expect;
// Skip a test if the browser does not support locale-based number formatting
function ifLocaleSupportedIt (test) {
if (window.Intl && window.Intl.NumberFormat) {
it(test);
... | const html = require('choo/html');
const callcount = require('./callcount.js');
const chai = require('chai');
const expect = chai.expect;
// Skip a test if the browser does not support locale-based number formatting
function ifLocaleSupportedIt (name, test) {
if (window.Intl && window.Intl.NumberFormat) {
it(nam... | Fix support check that skips tests on ALL browsers | Fix support check that skips tests on ALL browsers
Mistake and poor checking on my part.
| JavaScript | mit | 5calls/5calls,5calls/5calls,5calls/5calls,5calls/5calls | ---
+++
@@ -4,12 +4,12 @@
const expect = chai.expect;
// Skip a test if the browser does not support locale-based number formatting
-function ifLocaleSupportedIt (test) {
+function ifLocaleSupportedIt (name, test) {
if (window.Intl && window.Intl.NumberFormat) {
- it(test);
+ it(name, test);
}
else... |
d08cf84a589a20686ed431e8c8134697ee3c004c | js/home.js | js/home.js | function startTime() {
var today=new Date();
var h=checkTime(today.getHours());
var m=checkTime(today.getMinutes());
var s=checkTime(today.getSeconds());
var timeString = s%2===0 ? h + ":" + m + ":" + s : h + ":" + m + " " + s;
document.getElementById("time").innerHTML = timeString;
var twen... | function startTime() {
var today=new Date();
var h=checkTime(today.getHours());
var m=checkTime(today.getMinutes());
var s=checkTime(today.getSeconds());
var timeString = s%2===0 ? h + ":" + m + ":" + s : h + ":" + m + " " + s;
document.getElementById("time").innerHTML = timeString;
var twen... | Fix bug in background color | Fix bug in background color
| JavaScript | mit | SalomonSmeke/old-site,SalomonSmeke/old-site,SalomonSmeke/old-site | ---
+++
@@ -7,13 +7,15 @@
document.getElementById("time").innerHTML = timeString;
var twentyFour = 10.625;
var sixty = 4.25;
- var c1 = Math.round(twentyFour*h).toString(16);
- var c2 = Math.round(sixty*m).toString(16);
- var c3 = Math.round(sixty*s).toString(16);
- [c1, c2, c3].forEach(fun... |
11bab5733e1f0292ff06b0accc1fc6cc25cd29b6 | share/spice/maps/maps/maps_maps.js | share/spice/maps/maps/maps_maps.js | DDG.require('maps',function(){
ddg_spice_maps_maps = function(response) {
if (!response || !response.length) { return Spice.failed('maps'); }
// OSM sends back a bunch of places, just want the first one for now
response = [response[0]];
if ... | DDG.require('maps',function(){
ddg_spice_maps_maps = function(response) {
if (!response) { return Spice.failed('maps'); }
// OSM sends back a bunch of places, just want the first one for now
response = response.features[0];
Spice.add({
data: response,
... | Handle mapbox geocoder response data | Handle mapbox geocoder response data
| JavaScript | apache-2.0 | whalenrp/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,sagarhani/zeroclickinfo-spice,lernae/zeroclickinfo-spice,Retrobottega/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,GrandpaCardigan/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,shyamalschandra/zeroclickinfo-s... | ---
+++
@@ -1,14 +1,10 @@
DDG.require('maps',function(){
ddg_spice_maps_maps = function(response) {
- if (!response || !response.length) { return Spice.failed('maps'); }
+ if (!response) { return Spice.failed('maps'); }
// OSM sends back a bunch of places, just want the first ... |
d1b9a635f976403db95e86b7cbbdbd03daadc44a | addon/components/bs4/bs-navbar.js | addon/components/bs4/bs-navbar.js | import { computed } from '@ember/object';
import Navbar from 'ember-bootstrap/components/base/bs-navbar';
export default Navbar.extend({
classNameBindings: ['breakpointClass', 'backgroundClass'],
type: 'light',
/**
* Defines the responsive toggle breakpoint size. Options are the standard
* two character ... | import { computed } from '@ember/object';
import Navbar from 'ember-bootstrap/components/base/bs-navbar';
export default Navbar.extend({
classNameBindings: ['breakpointClass', 'backgroundClass'],
type: computed('appliedType', {
get() {
return this.get('appliedType');
},
set(key, value) { // esl... | Enforce compatibility of the `undefined` and `default` setting for navbar color scheme. This makes the demo work for the default, but the inverse still doesn't work because of different scheme names. | Enforce compatibility of the `undefined` and `default` setting for navbar color scheme. This makes the demo work for the default, but the inverse still doesn't work because of different scheme names.
| JavaScript | mit | jelhan/ember-bootstrap,jelhan/ember-bootstrap,kaliber5/ember-bootstrap,kaliber5/ember-bootstrap | ---
+++
@@ -4,7 +4,19 @@
export default Navbar.extend({
classNameBindings: ['breakpointClass', 'backgroundClass'],
- type: 'light',
+ type: computed('appliedType', {
+ get() {
+ return this.get('appliedType');
+ },
+
+ set(key, value) { // eslint-disable-line no-unused
+ let newValue = (!va... |
d0d1e2f8beee81818d0905c9e86c1d0f59ee2e31 | html/introduction-to-html/the-html-head/script.js | html/introduction-to-html/the-html-head/script.js | var list = document.createElement('ul');
var info = document.createElement('p');
var html = document.querySelector('html');
info.textContent = 'Below is a dynamic list. Click anywhere outside the list to add a new list item. Click an existing list item to change its text to something else.';
document.body.appendChild... | const list = document.createElement('ul');
const info = document.createElement('p');
const html = document.querySelector('html');
info.textContent = 'Below is a dynamic list. Click anywhere outside the list to add a new list item. Click an existing list item to change its text to something else.';
document.body.appen... | Use const instead of var as according to best practices | Use const instead of var as according to best practices
| JavaScript | cc0-1.0 | mdn/learning-area,mdn/learning-area,mdn/learning-area,mdn/learning-area | ---
+++
@@ -1,6 +1,6 @@
-var list = document.createElement('ul');
-var info = document.createElement('p');
-var html = document.querySelector('html');
+const list = document.createElement('ul');
+const info = document.createElement('p');
+const html = document.querySelector('html');
info.textContent = 'Below is a ... |
78204ce46e10970b9911f956615709d4e68dcd6f | config/supportedLanguages.js | config/supportedLanguages.js | /* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// The list below should be kept in sync with:
// https://raw.githubusercontent.com/mozilla/fxa-content-server/mas... | /* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// The list below should be kept in sync with:
// https://raw.githubusercontent.com/mozilla/fxa-content-server/mas... | Revert "feat(locale): add Arabic locale support" | Revert "feat(locale): add Arabic locale support"
This reverts commit a13e32a8f0426a0890c813cefbe3987750b12802.
| JavaScript | mpl-2.0 | mozilla/fxa-auth-server,mozilla/fxa-auth-server,mozilla/fxa-auth-server,mozilla/fxa-auth-server | ---
+++
@@ -6,7 +6,6 @@
// https://raw.githubusercontent.com/mozilla/fxa-content-server/master/server/config/production-locales.json
module.exports = [
- 'ar',
'az',
'bg',
'cs', |
e2276933cf61b229ed63e6fe69010586468af649 | src/graphql/dataLoaders/articleCategoriesByCategoryIdLoaderFactory.js | src/graphql/dataLoaders/articleCategoriesByCategoryIdLoaderFactory.js | import DataLoader from 'dataloader';
import client from 'util/client';
export default () =>
new DataLoader(async categoryQueries => {
const body = [];
categoryQueries.forEach(({ id, first, before, after }) => {
// TODO error independently?
if (before && after) {
throw new Error('Use of b... | import DataLoader from 'dataloader';
import client from 'util/client';
export default () =>
new DataLoader(
async categoryQueries => {
const body = [];
categoryQueries.forEach(({ id, first, before, after }) => {
// TODO error independently?
if (before && after) {
throw new ... | Implement cacheKeyFn and fix lint | Implement cacheKeyFn and fix lint
| JavaScript | mit | MrOrz/rumors-api,MrOrz/rumors-api,cofacts/rumors-api | ---
+++
@@ -2,48 +2,54 @@
import client from 'util/client';
export default () =>
- new DataLoader(async categoryQueries => {
- const body = [];
+ new DataLoader(
+ async categoryQueries => {
+ const body = [];
- categoryQueries.forEach(({ id, first, before, after }) => {
- // TODO error ind... |
62af16add5c5e9456b543787a136226c892ea229 | app/mixins/inventory-selection.js | app/mixins/inventory-selection.js | import Ember from "ember";
export default Ember.Mixin.create({
/**
* For use with the inventory-type ahead. When an inventory item is selected, resolve the selected
* inventory item into an actual model object and set is as inventoryItem.
*/
inventoryItemChanged: function() {
var select... | import Ember from "ember";
export default Ember.Mixin.create({
/**
* For use with the inventory-type ahead. When an inventory item is selected, resolve the selected
* inventory item into an actual model object and set is as inventoryItem.
*/
inventoryItemChanged: function() {
var select... | Make sure inventory item is completely loaded | Make sure inventory item is completely loaded
| JavaScript | mit | HospitalRun/hospitalrun-frontend,HospitalRun/hospitalrun-frontend,HospitalRun/hospitalrun-frontend,HospitalRun/hospitalrun-frontend | ---
+++
@@ -9,9 +9,13 @@
if (!Ember.isEmpty(selectedInventoryItem)) {
selectedInventoryItem.id = selectedInventoryItem._id.substr(10);
this.store.find('inventory', selectedInventoryItem._id.substr(10)).then(function(item) {
- this.set('inventoryItem', item);
- ... |
584bdf23880938277f952bb8e59b33c697bd5974 | Resources/lib/events.js | Resources/lib/events.js | var listeners = {};
exports.addEventListener = function(name, func) {
if (!listeners[name]) {
listeners[name] = [];
}
listeners[name].push(func);
return exports;
};
exports.hasEventListeners = function(name) {
return !!listeners[name];
};
exports.clearEventListeners = function() {
listeners = {};
return exp... | var listeners = {};
exports.addEventListener = function(name, func) {
if (!listeners[name]) {
listeners[name] = [];
}
listeners[name].push(func);
return exports;
};
exports.hasEventListeners = function(name) {
return !!listeners[name];
};
exports.clearEventListeners = function() {
listeners = {};
return exp... | Allow Multiple Arguments to Events | Allow Multiple Arguments to Events
| JavaScript | apache-2.0 | appcelerator-titans/abcsWriter | ---
+++
@@ -19,17 +19,19 @@
exports.fireEvent = function(name, data) {
if (listeners[name]) {
+ var args = Array.prototype.slice.call(arguments, 1);
for (var l in listeners[name]) {
- listeners[name][l](data);
+ listeners[name][l].apply(this, args);
}
}
return exports;
};
exports.curryFireEven... |
ee492f36b4d945945bb88a6dcbc64c5b6ef602d1 | .prettierrc.js | .prettierrc.js | module.exports = {
semi: false,
tabWidth: 2,
singleQuote: true,
proseWrap: 'always',
}
| module.exports = {
semi: false,
tabWidth: 2,
singleQuote: true,
proseWrap: 'always',
overrides: [
{
files: 'src/**/*.mdx',
options: {
parser: 'mdx',
},
},
],
}
| Configure prettier to format mdx | Configure prettier to format mdx
| JavaScript | mit | dtjv/dtjv.github.io | ---
+++
@@ -3,4 +3,12 @@
tabWidth: 2,
singleQuote: true,
proseWrap: 'always',
+ overrides: [
+ {
+ files: 'src/**/*.mdx',
+ options: {
+ parser: 'mdx',
+ },
+ },
+ ],
} |
c5ad27b894412c2cf32a723b1bfad1cce62360bf | app/scripts/reducers/userStatus.js | app/scripts/reducers/userStatus.js | import update from 'immutability-helper'
import ActionTypes from '../actionTypes'
const initialState = {
isLoading: false,
lastRequestAt: undefined,
latestActivities: [],
unreadMessagesCount: 0,
}
export default (state = initialState, action) => {
switch (action.type) {
case ActionTypes.AUTH_TOKEN_EXPIRE... | import update from 'immutability-helper'
import ActionTypes from '../actionTypes'
const initialState = {
isLoading: false,
lastRequestAt: undefined,
latestActivities: [],
unreadMessagesCount: 0,
}
export default (state = initialState, action) => {
switch (action.type) {
case ActionTypes.AUTH_TOKEN_EXPIRE... | Fix wrong usage of update | Fix wrong usage of update
| JavaScript | agpl-3.0 | adzialocha/hoffnung3000,adzialocha/hoffnung3000 | ---
+++
@@ -13,11 +13,7 @@
switch (action.type) {
case ActionTypes.AUTH_TOKEN_EXPIRED_OR_INVALID:
case ActionTypes.AUTH_LOGOUT:
- return update(state, {
- lastRequestAt: { $set: undefined },
- latestActivities: [],
- unreadMessagesCount: 0,
- })
+ return initialState
case ActionTyp... |
15cdaec26ef23fac04c6055dc93398dd55cb65d4 | app/scripts/directives/sidebar.js | app/scripts/directives/sidebar.js | 'use strict';
(function() {
angular.module('ncsaas')
.directive('sidebar', ['$state', sidebar]);
function sidebar($state, $uibModal) {
return {
restrict: 'E',
scope: {
items: '=',
context: '='
},
templateUrl: 'views/directives/sidebar.html',
link: function(sc... | 'use strict';
(function() {
angular.module('ncsaas')
.directive('sidebar', ['$state', sidebar]);
function sidebar($state, $uibModal) {
return {
restrict: 'E',
scope: {
items: '=',
context: '='
},
templateUrl: 'views/directives/sidebar.html',
link: function(sc... | Use normal button for select workspace button (SAAS-1389) | Use normal button for select workspace button (SAAS-1389)
| JavaScript | mit | opennode/waldur-homeport,opennode/waldur-homeport,opennode/waldur-homeport,opennode/waldur-homeport | ---
+++
@@ -25,7 +25,7 @@
function workspaceSelectToggle($uibModal) {
return {
restrict: 'E',
- template: '<button class="btn btn-primary dim minimalize-styl-2" ng-click="selectWorkspace()">'+
+ template: '<button class="btn btn-primary minimalize-styl-2" ng-click="selectWorkspace()">'+
... |
243f8dc177fbcf33c2fa67c0df2f177e3d53e6ad | app/scripts/modules/auth/index.js | app/scripts/modules/auth/index.js | import { connect } from 'react-redux';
import { Component } from 'react';
import PropTypes from 'prop-types';
import { setConfig } from 'widget-editor';
import { browserHistory } from 'react-router';
import actions from './auth-actions';
import initialState from './auth-reducer-initial-state';
import * as reducers fro... | import { connect } from 'react-redux';
import { Component } from 'react';
import PropTypes from 'prop-types';
import { setConfig } from 'widget-editor';
import { browserHistory } from 'react-router';
import actions from './auth-actions';
import initialState from './auth-reducer-initial-state';
import * as reducers fro... | Fix a bug where the user wouldn't be able to log in | Fix a bug where the user wouldn't be able to log in
| JavaScript | mit | resource-watch/prep-app,resource-watch/prep-app | ---
+++
@@ -13,7 +13,8 @@
class AuthContainer extends Component {
componentWillMount() {
const { location } = this.props;
- const { token } = location;
+ const { query } = location;
+ const { token } = query;
if (token) {
this.handleAuthenticationAction(); |
ed9b3e12309fa37080541f96f11e4c1ab2fb8cf1 | lib/cartodb/models/mapconfig_overviews_adapter.js | lib/cartodb/models/mapconfig_overviews_adapter.js | var queue = require('queue-async');
var _ = require('underscore');
function MapConfigNamedLayersAdapter(overviewsApi) {
this.overviewsApi = overviewsApi;
}
module.exports = MapConfigNamedLayersAdapter;
MapConfigNamedLayersAdapter.prototype.getLayers = function(username, layers, callback) {
var self = this;
... | var queue = require('queue-async');
var _ = require('underscore');
function MapConfigNamedLayersAdapter(overviewsApi) {
this.overviewsApi = overviewsApi;
}
module.exports = MapConfigNamedLayersAdapter;
MapConfigNamedLayersAdapter.prototype.getLayers = function(username, layers, callback) {
var self = this;
... | Bring in code commented out for tests | Bring in code commented out for tests
| JavaScript | bsd-3-clause | CartoDB/Windshaft-cartodb,CartoDB/Windshaft-cartodb,CartoDB/Windshaft-cartodb,CartoDB/Windshaft-cartodb | ---
+++
@@ -22,7 +22,7 @@
done(err, layer);
} else {
if ( !_.isEmpty(metadata) ) {
- // layer = _.extend({}, layer, { overviews: metadata });
+ layer = _.extend({}, layer, { overviews: metadata });
}
done(n... |
2ae9e370b6b3c4ef87275471f50f1db007dbfb23 | test/channel-mapping.test.js | test/channel-mapping.test.js | import chai from 'chai';
import irc from 'irc';
import discord from 'discord.js';
import Bot from '../lib/bot';
import config from './fixtures/single-test-config.json';
import caseConfig from './fixtures/case-sensitivity-config.json';
import DiscordStub from './stubs/discord-stub';
import ClientStub from './stubs/irc-c... | import chai from 'chai';
import irc from 'irc';
import discord from 'discord.js';
import Bot from '../lib/bot';
import config from './fixtures/single-test-config.json';
import caseConfig from './fixtures/case-sensitivity-config.json';
import DiscordStub from './stubs/discord-stub';
import ClientStub from './stubs/irc-c... | Update check to look for presence, not equality (order unnecessary) | Update check to look for presence, not equality (order unnecessary)
| JavaScript | mit | reactiflux/discord-irc | ---
+++
@@ -38,7 +38,7 @@
const bot = new Bot(config);
bot.channelMapping['#discord'].should.equal('#irc');
bot.invertedMapping['#irc'].should.equal('#discord');
- bot.channels[0].should.equal('#irc channelKey');
+ bot.channels.should.contain('#irc channelKey');
});
it('should lowercase I... |
23ff386f7989dd6a1aaf63d6c1108c5b0b5d2583 | blueprints/ember-table/index.js | blueprints/ember-table/index.js | module.exports = {
normalizeEntityName: function() {},
afterInstall: function(options) {
// We assume that handlebars, ember, and jquery already exist
return this.addBowerPackagesToProject([
{
// Antiscroll seems to be abandoned by its original authors. We need
// two things: (1) a ve... | module.exports = {
normalizeEntityName: function() {},
afterInstall: function(options) {
// We assume that handlebars, ember, and jquery already exist
return this.addBowerPackagesToProject([
{
// Antiscroll seems to be abandoned by its original authors. We need
// two things: (1) a ve... | Use correct version of antiscroll in blueprint | Use correct version of antiscroll in blueprint
| JavaScript | bsd-3-clause | hedgeserv/ember-table,Gaurav0/ember-table,phoebusliang/ember-table,phoebusliang/ember-table,Gaurav0/ember-table,hedgeserv/ember-table | ---
+++
@@ -8,7 +8,7 @@
// Antiscroll seems to be abandoned by its original authors. We need
// two things: (1) a version in package.json, and (2) the name of the
// package must be "antiscroll" to satisfy ember-cli.
- 'name': 'git://github.com/azirbel/antiscroll.git#90391fb371c7be76... |
d2b7ee755b6d51c93d5f6f1d24a65b34f2d1f90d | app/soc/content/js/tips-081027.js | app/soc/content/js/tips-081027.js | $(function() {
$('tr[title]').bt();
}); | $(function() {
// Change 'title' to something else first
$('tr[title]').each(function() {
$(this).attr('xtitle', $(this).attr('title')).removeAttr('title');
})
.children().children(':input')
// Set up event handlers
.bt({trigger: ['helperon', 'helperoff'],
titleSelector: "parent()... | Make tooltips work when tabbing | Make tooltips work when tabbing
Fixed the tooltips on IE, and changed the background colour to be
nicer on Firefox.
Patch by: Haoyu Bai <baihaoyu@gmail.com>
--HG--
extra : convert_revision : svn%3A32761e7d-7263-4528-b7be-7235b26367ec/trunk%401624
| JavaScript | apache-2.0 | rhyolight/nupic.son,rhyolight/nupic.son,rhyolight/nupic.son | ---
+++
@@ -1,3 +1,28 @@
$(function() {
- $('tr[title]').bt();
+ // Change 'title' to something else first
+ $('tr[title]').each(function() {
+ $(this).attr('xtitle', $(this).attr('title')).removeAttr('title');
+ })
+ .children().children(':input')
+ // Set up event handlers
+ .bt({trigger: ['hel... |
0202747e5620276e90c907bfbd14905891f744a5 | public/javascripts/youtube-test.js | public/javascripts/youtube-test.js | var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
var player;
function onYouTubeIframeAPIReady() {
player = new YT.Player('player', {
height: '39... | var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
var player;
function onYouTubeIframeAPIReady() {
player = new YT.Player('player', {
height: '39... | Change video ID (see extended log) | Change video ID (see extended log)
- Demonstrate that HTTP referrer overriding is not necessary. This is
mostly for my own research and for eventual changes I will make to Toby
my YouTube player so that I no longer require a patch to
libchromiumcontent allowing the overriding of the HTTP referrer.
| JavaScript | mit | frankhale/electron-with-express | ---
+++
@@ -8,7 +8,7 @@
player = new YT.Player('player', {
height: '390',
width: '640',
- videoId: 'GxfwZMdSt4w',
+ videoId: 'c24En0r-lXg',
events: {
'onReady': onPlayerReady
} |
5c0ff1bf885ac5a40dddd67b9e9733ee120e4361 | project/src/js/main.js | project/src/js/main.js | /* application entry point */
// require mithril globally for convenience
window.m = require('mithril');
// cordova plugins polyfills for browser
if (!window.cordova) require('./cordovaPolyfills.js');
var utils = require('./utils');
var session = require('./session');
var i18n = require('./i18n');
var home = requir... | /* application entry point */
// require mithril globally for convenience
window.m = require('mithril');
// cordova plugins polyfills for browser
if (!window.cordova) require('./cordovaPolyfills.js');
var utils = require('./utils');
var session = require('./session');
var i18n = require('./i18n');
var home = requir... | Refresh data on app going foreground | Refresh data on app going foreground
| JavaScript | mit | btrent/lichobile,btrent/lichobile,garawaa/lichobile,garawaa/lichobile,btrent/lichobile,garawaa/lichobile,btrent/lichobile | ---
+++
@@ -15,6 +15,10 @@
var play = require('./ui/play');
var seek = require('./ui/seek');
+function onResume() {
+ session.refresh(true);
+}
+
function main() {
m.route(document.body, '/', {
@@ -24,8 +28,12 @@
'/play/:id': play
});
+ // refresh data once and on app resume
if (utils.hasNetw... |
96f88d87967b29d338f5baf984691ba7f7e9110d | Web/api/models/Questions.js | Web/api/models/Questions.js | /**
* Questions.js
*
* @description :: TODO: You might write a short summary of how this model works and what it represents here.
* @docs :: http://sailsjs.org/#!documentation/models
*/
module.exports = {
attributes: {
text: 'string',
type: {
type: 'string',
enum: ['e... | /**
* Questions.js
*
* @description :: TODO: You might write a short summary of how this model works and what it represents here.
* @docs :: http://sailsjs.org/#!documentation/models
*/
module.exports = {
attributes: {
text: 'string',
type: {
type: 'string',
enum: ['s... | Modify question type to allow the following type: string, text or range | Modify question type to allow the following type: string, text or range
| JavaScript | mit | Xignal/Backend | ---
+++
@@ -11,7 +11,7 @@
text: 'string',
type: {
type: 'string',
- enum: ['email', 'range', 'freetext']
+ enum: ['string', 'text', 'range']
},
}
}; |
5bd0512b74cb30edd82b8aa4d2c8ea55f8944a56 | viewsource/js/static/ast.js | viewsource/js/static/ast.js | // This just dumps out an ast for your viewing pleasure.
include("dumpast.js");
function process_js(ast) {
dump_ast(ast);
}
| include("beautify.js");
function process_js(ast) {
_print('// process_js');
_print(js_beautify(uneval(ast))
.replace(/op: (\d+),/g,
function (hit, group1) {
return 'op: ' + decode_op(group1) + '(' + group1 + '),'
})
.replace(/type: (\d+),/g,
function (hit, group1) {
... | Make jshydra output match dehydra's. | [ViewSource] Make jshydra output match dehydra's.
| JavaScript | mit | srenatus/dxr,jonasfj/dxr,pelmers/dxr,jay-z007/dxr,jay-z007/dxr,jbradberry/dxr,jbradberry/dxr,pelmers/dxr,kleintom/dxr,jonasfj/dxr,erikrose/dxr,pombredanne/dxr,nrc/dxr,gartung/dxr,pombredanne/dxr,pelmers/dxr,nrc/dxr,jay-z007/dxr,KiemVM/Mozilla--dxr,gartung/dxr,erikrose/dxr,jay-z007/dxr,KiemVM/Mozilla--dxr,jbradberry/dxr... | ---
+++
@@ -1,7 +1,46 @@
-// This just dumps out an ast for your viewing pleasure.
-
-include("dumpast.js");
+include("beautify.js");
function process_js(ast) {
- dump_ast(ast);
+ _print('// process_js');
+ _print(js_beautify(uneval(ast))
+ .replace(/op: (\d+),/g,
+ function (hit, group1) {
+ ... |
67f62b161eb997b77e21a2c1bedd6748baa97908 | app/components/quotes.js | app/components/quotes.js | import React, { PropTypes } from 'react';
const Quote = ({quote}) => (
<div>
<p>{quote.value}</p>
<p>{quote.author}</p>
</div>
)
Quote.propTypes = {
quote: PropTypes.object.isRequired
}
export default Quote; | import React, { PropTypes } from 'react';
const Quote = ({quote}) => (
<div className='quote_comp'>
<p className='quote_comp__text'>{quote.value}</p>
<p className='quote_comp__author'>- {quote.author}</p>
</div>
)
Quote.propTypes = {
quote: PropTypes.object.isRequired
}
export default Quote; | Add classes to quote component | Add classes to quote component
| JavaScript | mit | subramaniashiva/quotes-pwa,subramaniashiva/quotes-pwa | ---
+++
@@ -1,9 +1,9 @@
import React, { PropTypes } from 'react';
const Quote = ({quote}) => (
- <div>
- <p>{quote.value}</p>
- <p>{quote.author}</p>
+ <div className='quote_comp'>
+ <p className='quote_comp__text'>{quote.value}</p>
+ <p className='quote_comp__author'>- {quote.author}</p>
... |
c82e4c18c64c3f86e3865484b4b1a01de6f026a5 | lib/app.js | lib/app.js | #!/usr/bin/env node
/*eslint-disable no-var */
var path = require('path');
var spawner = require('child_process');
exports.getFullPath = function(script){
return path.join(__dirname, script);
};
// Respawn ensuring proper command switches
exports.respawn = function respawn(script, requiredArgs, hostProcess) {
... | #!/usr/bin/env node
/*eslint-disable no-var */
var path = require('path');
var spawner = require('child_process');
exports.getFullPath = function(script){
return path.join(__dirname, script);
};
// Respawn ensuring proper command switches
exports.respawn = function respawn(script, requiredArgs, hostProcess) {
... | Fix ordering on command line | Fix ordering on command line
| JavaScript | mit | SockDrawer/SockBot | ---
+++
@@ -29,7 +29,7 @@
/* istanbul ignore if */
if (require.main === module) {
var argv = require('yargs')
- .usage('Usage: $0 [options] <cfgFile>')
+ .usage('Usage: $0 <cfgFile> [options]')
.demand(1, 1, 'A valid configuration file must be provided')
.describe({
... |
f9ea5ab178f8326b79c177889a5266a2bd4af91b | client/app/scripts/services/api.js | client/app/scripts/services/api.js | angular
.module('app')
.factory('apiService', [
'$http',
function($http) {
return {
client: $http.get('/api/bower'),
server: $http.get('/api/package')
};
}
])
;
| angular
.module('app')
.factory('apiService', [
'$http',
function($http) {
return {
client: $http.get('../bower.json'),
server: $http.get('../package.json')
};
}
])
;
| Use relative paths for bower/package.json | Use relative paths for bower/package.json
| JavaScript | mit | ericclemmons/ericclemmons.github.io,ericclemmons/ericclemmons.github.io | ---
+++
@@ -4,8 +4,8 @@
'$http',
function($http) {
return {
- client: $http.get('/api/bower'),
- server: $http.get('/api/package')
+ client: $http.get('../bower.json'),
+ server: $http.get('../package.json')
};
}
]) |
92b0f90d0962114f54ec58babcc6017018a1263b | client/helpers/validations/book.js | client/helpers/validations/book.js | const validate = (values) => {
const errors = {};
if (!values.title || values.title.trim() === '') {
errors.title = 'Book title is required';
}
if (!values.author || values.author.trim() === '') {
errors.author = 'Book author is required';
}
if (!values.description || values.description.trim() === '... | const validate = (values) => {
const errors = {};
if (!values.title || values.title.trim() === '') {
errors.title = 'Book title is required';
}
if (!values.author || values.author.trim() === '') {
errors.author = 'Book author is required';
}
if (!values.description || values.description.trim() === '... | Fix bug in validation method | Fix bug in validation method
| JavaScript | mit | amarachukwu-agbo/hello-books,amarachukwu-agbo/hello-books | ---
+++
@@ -18,7 +18,7 @@
if (!values.imageURL || values.imageURL.trim() === '') {
errors.imageURL = 'ImageURL is required';
}
- if (!values.quantity || values.quantity.trim() === '') {
+ if (!values.quantity) {
errors.quantity = 'quantity is required';
}
if (values.quantity && values.quantity... |
8070c9f13209b80b1881fc83de027b3895656046 | test/unescape-css.js | test/unescape-css.js | var test = require('ava');
var unescapeCss = require('../lib/unescape-css');
test('should unescape plain chars', function (t) {
t.is(unescapeCss('Romeo \\+ Juliette'), 'Romeo + Juliette');
});
test('should unescape ASCII chars', function (t) {
t.is(unescapeCss('\\34\\32'), '42');
});
test('should unescape Unicod... | var test = require('ava');
var unescapeCss = require('../lib/unescape-css');
test('unescapes plain chars', function (t) {
t.is(unescapeCss('Romeo \\+ Juliette'), 'Romeo + Juliette');
});
test('unescapes ASCII chars', function (t) {
t.is(unescapeCss('\\34\\32'), '42');
});
test('unescapes Unicode chars', function... | Remove word "should" from test descriptions | Remove word "should" from test descriptions
| JavaScript | mit | assetsjs/postcss-assets,borodean/postcss-assets | ---
+++
@@ -1,14 +1,14 @@
var test = require('ava');
var unescapeCss = require('../lib/unescape-css');
-test('should unescape plain chars', function (t) {
+test('unescapes plain chars', function (t) {
t.is(unescapeCss('Romeo \\+ Juliette'), 'Romeo + Juliette');
});
-test('should unescape ASCII chars', funct... |
7c8a1b33bad96e772921a24ced0343d756dcae34 | jquery.dragster.js | jquery.dragster.js | (function ($) {
$.fn.dragster = function (options) {
var settings = $.extend({
enter: $.noop,
leave: $.noop
}, options);
return this.each(function () {
var first = false,
second = false,
$this = $(this);
$this... | (function ($) {
$.fn.dragster = function (options) {
var settings = $.extend({
enter: $.noop,
leave: $.noop,
over: $.noop
}, options);
return this.each(function () {
var first = false,
second = false,
$this = $... | Fix drop event with preventDefault | Fix drop event with preventDefault
If preventDefault is not triggered, we can't use drop event. I fix it
and added an over function to disable it by default.
| JavaScript | mit | catmanjan/jquery-dragster | ---
+++
@@ -3,7 +3,8 @@
$.fn.dragster = function (options) {
var settings = $.extend({
enter: $.noop,
- leave: $.noop
+ leave: $.noop,
+ over: $.noop
}, options);
return this.each(function () {
@@ -12,26 +13,32 @@
$this =... |
439cfd0b85a8a2416aeac40607bfddad86ef9773 | app/controllers/form.js | app/controllers/form.js | var args = arguments[0] || {};
if (args.hasOwnProperty('itemIndex')) {
// Edit mode
var myModel = Alloy.Collections.tasks.at(args.itemIndex);
$.text.value = myModel.get('text');
} else {
// Add mode
var myModel = Alloy.createModel('tasks');
myModel.set("status", "pending");
}
// Focus on 1st input
functio... | var args = arguments[0] || {};
if (args.hasOwnProperty('itemIndex')) {
// Edit mode
var myModel = Alloy.Collections.tasks.at(args.itemIndex);
$.text.value = myModel.get('text');
} else {
// Add mode
var myModel = Alloy.createModel('tasks');
myModel.set("status", "pending");
}
// Focus on 1st input
functio... | Validate the only 1 field we have right now | Validate the only 1 field we have right now
| JavaScript | mit | HazemKhaled/TiTODOs,HazemKhaled/TiTODOs | ---
+++
@@ -16,6 +16,21 @@
}
function saveBtnClicked() {
+
+ if ($.text.value.length === 0) {
+ var alertDialog = Ti.UI.createAlertDialog({
+ title: 'Error',
+ message: 'Enter task title at least',
+ buttons: ['OK']
+ });
+ alertDialog.addEventListener('click', function() {
+ $.text.... |
350209bd9bebca2d9365e531d87ecdf53758026d | assets/javascripts/js.js | assets/javascripts/js.js | $(document).ready(function() {
$('.side-nav-container').hover(function() {
$(this).addClass('is-showed');
$('.kudo').addClass('hide');
}, function() {
$(this).removeClass('is-showed');
$('.kudo').removeClass('hide');
});
$(window).scroll(function () {
var logotype = $('.logotype');
v... | $(document).ready(function () {
$('.side-nav-container').hover(function () {
$(this).addClass('is-showed');
$('.kudo').addClass('hide');
}, function() {
$(this).removeClass('is-showed');
$('.kudo').removeClass('hide');
});
$(window).scroll(function () {
var logo... | Add animation for kudo-side when kudo-bottom is showed | Add animation for kudo-side when kudo-bottom is showed
| JavaScript | cc0-1.0 | cybertk/cybertk.github.io,margaritis/svbtle-jekyll,orlando/svbtle-jekyll,margaritis/margaritis.github.io,orlando/svbtle-jekyll,margaritis/margaritis.github.io,margaritis/margaritis.github.io,cybertk/cybertk.github.io,margaritis/svbtle-jekyll | ---
+++
@@ -1,24 +1,34 @@
-$(document).ready(function() {
-
- $('.side-nav-container').hover(function() {
- $(this).addClass('is-showed');
- $('.kudo').addClass('hide');
- }, function() {
- $(this).removeClass('is-showed');
- $('.kudo').removeClass('hide');
- });
+$(document).ready(function () {
- ... |
67efb8bde264e3ea0823e40558d29dd89120c0c9 | src/components/views/messages/MessageTimestamp.js | src/components/views/messages/MessageTimestamp.js | /*
Copyright 2015, 2016 OpenMarket Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, sof... | /*
Copyright 2015, 2016 OpenMarket Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, sof... | Add date tooltip to timestamps | Add date tooltip to timestamps
| JavaScript | apache-2.0 | vector-im/riot-web,vector-im/riot-web,vector-im/vector-web,vector-im/vector-web,vector-im/vector-web,martindale/vector,vector-im/vector-web,vector-im/riot-web,vector-im/riot-web,vector-im/vector-web,vector-im/riot-web,vector-im/riot-web,martindale/vector | ---
+++
@@ -25,7 +25,7 @@
render: function() {
var date = new Date(this.props.ts);
return (
- <span className="mx_MessageTimestamp">
+ <span className="mx_MessageTimestamp" title={ DateUtils.formatDate(date) }>
{ DateUtils.formatTime(date) }
<... |
50a084e7894ae1b3586709cf488bd2260cbeb615 | packages/eslint-config-eventbrite/rules/style.js | packages/eslint-config-eventbrite/rules/style.js | // The rules ultimately override any rules defined in legacy/rules/style.js
module.exports = {
rules: {
// Enforce function expressions
// http://eslint.org/docs/rules/func-style
'func-style': ['error', 'expression'],
// enforce that `let` & `const` declarations are declared togethe... | // The rules ultimately override any rules defined in legacy/rules/style.js
module.exports = {
rules: {
// Enforce function expressions
// http://eslint.org/docs/rules/func-style
'func-style': ['error', 'expression'],
// enforce that `let` & `const` declarations are declared togethe... | Add new rule for spacing around infix operators | Add new rule for spacing around infix operators
| JavaScript | mit | eventbrite/javascript | ---
+++
@@ -7,6 +7,10 @@
// enforce that `let` & `const` declarations are declared together
// http://eslint.org/docs/rules/one-var
- 'one-var': ['error', 'never']
+ 'one-var': ['error', 'never'],
+
+ // enforce spacing around infix operators
+ // http://eslint.org/docs... |
f683c19b98c6f2a87ea4c97e55854f871fae5763 | app/reducers/network.js | app/reducers/network.js | import { ActionConstants as actions } from '../actions'
import { NETWORK_MAIN, NETWORK_TEST } from '../actions/network'
export default function network(state = {}, action) {
switch (action.type) {
case actions.network.SWITCH: {
return {
...state,
net: action.netw... | import { ActionConstants as actions } from '../actions'
import { NETWORK_MAIN, NETWORK_TEST } from '../actions/network'
export default function network(state = {}, action) {
switch (action.type) {
case actions.network.SWITCH: {
return {
...state,
net: action.netw... | Fix updating of balance after a logout followed by a quick login | Fix updating of balance after a logout followed by a quick login
| JavaScript | mit | ixje/neon-wallet-react-native,ixje/neon-wallet-react-native,ixje/neon-wallet-react-native | ---
+++
@@ -25,6 +25,14 @@
net: state.net === NETWORK_MAIN ? NETWORK_TEST : NETWORK_MAIN
}
}
+ case actions.wallet.RESET_STATE:
+ return {
+ ...state,
+ blockHeight: {
+ TestNet: 0,
+ MainNet: ... |
0c009ce0f6c647b3e514f1e4efeefb30c929120e | client/angular/src/app/controllers/movies.controller.spec.js | client/angular/src/app/controllers/movies.controller.spec.js | 'use strict';
describe('controllers', function() {
var httpBackend, scope, createController;
beforeEach(module('polyflix'));
beforeEach(inject(function($rootScope, $httpBackend, $controller) {
httpBackend = $httpBackend;
scope = $rootScope.$new();
httpBackend.whenGET(mocks.configUrl).respond(
... | 'use strict';
describe('controllers', function() {
var httpBackend, scope, createController;
beforeEach(module('polyflix'));
beforeEach(inject(function($rootScope, $httpBackend, $controller) {
httpBackend = $httpBackend;
scope = $rootScope.$new();
httpBackend.whenGET(mocks.configUrl).respond(
... | Add mocks to movies controller tests | Add mocks to movies controller tests
| JavaScript | mit | ryanbradynd05/polyflix,ryanbradynd05/polyflix,ryanbradynd05/polyflix,ryanbradynd05/polyflix,ryanbradynd05/polyflix | ---
+++
@@ -13,6 +13,9 @@
httpBackend.whenGET(mocks.allMoviesUrl).respond(
JSON.stringify(mocks.allMoviesResults)
);
+ httpBackend.whenDELETE(mocks.deleteUrl).respond(
+ JSON.stringify(mocks.deleteResults)
+ );
createController = function() {
return $controller('MoviesCtrl'... |
75cb05b23b6267665a59e1cc3d53ac6abdd2e11d | adventofcode/day10.js | adventofcode/day10.js | /*
* Run in: http://adventofcode.com/day/10
*/
;(function () {
let input = document.querySelector('.puzzle-input').textContent
console.log(
'Day09/first:',
first(input)
)
console.log(
'Day09/second:',
second(input)
)
function first (input) {
return Array(40).fill().reduce(lookAndSa... | /*
* Run in: http://adventofcode.com/day/10
*/
;(function () {
let input = document.querySelector('.puzzle-input').textContent
console.log(
'Day10/first:',
first(input)
)
console.log(
'Day10/second:',
second(input)
)
function first (input) {
return Array(40).fill().reduce(lookAndSa... | Fix typo on console message | Fix typo on console message
| JavaScript | mit | stefanmaric/scripts,stefanmaric/scripts | ---
+++
@@ -6,12 +6,12 @@
let input = document.querySelector('.puzzle-input').textContent
console.log(
- 'Day09/first:',
+ 'Day10/first:',
first(input)
)
console.log(
- 'Day09/second:',
+ 'Day10/second:',
second(input)
)
|
3f425c1e15751fd8ea7d857b417a2932208b4366 | client/app/modules/sandbox/controllers/sandbox.forms.ctrl.js | client/app/modules/sandbox/controllers/sandbox.forms.ctrl.js | 'use strict';
angular.module('com.module.sandbox')
.controller('SandboxFormsCtrl', function ($scope, CoreService) {
var now = new Date();
$scope.formOptions = {};
$scope.formData = {
name: null,
description: null,
startDate: now,
startTime: now,
endDate: now,
endTime... | 'use strict';
angular.module('com.module.sandbox')
.controller('SandboxFormsCtrl', function ($scope, CoreService) {
var now = new Date();
$scope.formOptions = {};
$scope.formData = {
name: null,
description: null,
startDate: now,
startTime: now,
endDate: now,
endTime... | Remove obsolete object from scope | Remove obsolete object from scope
| JavaScript | mit | TNick/loopback-angular-admin,igormusic/referenceData,gxr1028/loopback-angular-admin,shalkam/loopback-angular-admin,igormusic/referenceData,colmena/colmena,jingood2/loopbackadmin,Jeff-Lewis/loopback-angular-admin,colmena/colmena-cms,telemed-duth/eclinpro,senorcris/loopback-angular-admin,colmena/colmena-cms,shalkam/loopb... | ---
+++
@@ -53,8 +53,6 @@
}
}];
- $scope.formOptions = {};
-
$scope.onSubmit = function (data) {
CoreService.alertSuccess('Good job!', JSON.stringify(data, null, 2));
}; |
f05b9ad8b3c8f7bb201fccbbb0267c01e7eabbbf | lib/game-engine.js | lib/game-engine.js | 'use strict';
const Game = require('./game');
// todo: this class got refactored away to almost nothing. does it still have value?
// hmm, yes, since we are decorating it
class GameEngine {
constructor(repositorySet, commandHandlers) {
this._repositorySet = repositorySet;
this._handlers = command... | 'use strict';
const Game = require('./game-state');
// todo: this class got refactored away to almost nothing. does it still have value?
// hmm, yes, since we are decorating it
class GameEngine {
constructor(repositorySet, commandHandlers) {
this._repositorySet = repositorySet;
this._handlers = c... | Fix module name in require after rename | Fix module name in require after rename
| JavaScript | mit | dshaneg/text-adventure,dshaneg/text-adventure | ---
+++
@@ -1,6 +1,6 @@
'use strict';
-const Game = require('./game');
+const Game = require('./game-state');
// todo: this class got refactored away to almost nothing. does it still have value?
// hmm, yes, since we are decorating it |
5240db9f7366808a612e6ad722b16e63ba23baa6 | package.js | package.js | Package.describe({
name: '255kb:cordova-disable-select',
version: '1.0.2',
summary: 'Disables user selection and iOS magnifying glass / longpress menu in Cordova applications.',
git: 'https://github.com/255kb/cordova-disable-select',
documentation: 'README.md'
});
Package.onUse(function(api) {
... | Package.describe({
name: '255kb:cordova-disable-select',
version: '1.0.2',
summary: 'Disables user selection and iOS magnifying glass / longpress menu in Cordova applications.',
git: 'https://github.com/255kb/cordova-disable-select',
documentation: 'README.md'
});
Package.onUse(function(api) {
... | Add css file as 'web.cordova' is more accurate. | Add css file as 'web.cordova' is more accurate.
If application is browser and cordova in the same time, it will have impact on browser. | JavaScript | mit | 255kb/cordova-disable-select | ---
+++
@@ -13,5 +13,5 @@
'cordova-plugin-ios-longpress-fix': '1.1.0'
});
- api.addFiles(['client/cordova-disable-select.css'], 'client');
+ api.addFiles(['client/cordova-disable-select.css'], 'web.cordova');
}); |
775ca23e5d251e27012b9ddb43843840958deae2 | distributionviewer/core/static/js/app/components/views/logout-button.js | distributionviewer/core/static/js/app/components/views/logout-button.js | import React from 'react';
export default function LogoutButton(props) {
return (
<div className="sign-out-wrapper">
<span>{props.email}</span>
<span className="button" onClick={props.signOut}>Sign Out</span>
</div>
);
}
LogoutButton.propTypes = {
email: React.PropTypes.string.isRequired,
... | import React from 'react';
export default function LogoutButton(props) {
return (
<div className="sign-out-wrapper">
<span>{props.email}</span>
<span className="button" onClick={props.signOut}>Sign Out</span>
</div>
);
}
LogoutButton.propTypes = {
email: React.PropTypes.string.isRequired,
... | Fix logout button prop type warning | Fix logout button prop type warning
| JavaScript | mpl-2.0 | openjck/distribution-viewer,openjck/distribution-viewer,openjck/distribution-viewer,openjck/distribution-viewer | ---
+++
@@ -12,5 +12,5 @@
LogoutButton.propTypes = {
email: React.PropTypes.string.isRequired,
- signOut: React.PropTypes.string.isRequired,
+ signOut: React.PropTypes.func.isRequired,
}; |
088438040d865c219cd602cc59bfb66d2b6f2486 | scripts/pre-publish.js | scripts/pre-publish.js | const { join } = require('path')
const { writeFile } = require('fs').promises
const { default: players } = require('../lib/players')
const generateSinglePlayers = async () => {
for (const { key, name } of players) {
const file = `
const { createReactPlayer } = require('./lib/ReactPlayer')
const Playe... | const { join } = require('path')
const { writeFile } = require('fs').promises
const { default: players } = require('../lib/players')
const generateSinglePlayers = async () => {
for (const { key, name } of players) {
const file = `
const createReactPlayer = require('./lib/ReactPlayer').createReactPlayer
... | Fix single player imports on IE11 | Fix single player imports on IE11
Fixes https://github.com/CookPete/react-player/issues/954
| JavaScript | mit | CookPete/react-player,CookPete/react-player | ---
+++
@@ -5,7 +5,7 @@
const generateSinglePlayers = async () => {
for (const { key, name } of players) {
const file = `
- const { createReactPlayer } = require('./lib/ReactPlayer')
+ const createReactPlayer = require('./lib/ReactPlayer').createReactPlayer
const Player = require('./lib/play... |
af31fac9ce0fcc39d6d8e079cc9c534261c2d455 | wherehows-web/tests/integration/components/datasets/containers/dataset-acl-access-test.js | wherehows-web/tests/integration/components/datasets/containers/dataset-acl-access-test.js | import { moduleForComponent, skip } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
import notificationsStub from 'wherehows-web/tests/stubs/services/notifications';
import userStub from 'wherehows-web/tests/stubs/services/current-user';
import sinon from 'sinon';
moduleForComponent(
'datasets/cont... | import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
import notificationsStub from 'wherehows-web/tests/stubs/services/notifications';
import userStub from 'wherehows-web/tests/stubs/services/current-user';
import sinon from 'sinon';
moduleForComponent(
'datasets/cont... | Undo skip test after fix | Undo skip test after fix
| JavaScript | apache-2.0 | mars-lan/WhereHows,linkedin/WhereHows,linkedin/WhereHows,camelliazhang/WhereHows,mars-lan/WhereHows,camelliazhang/WhereHows,camelliazhang/WhereHows,camelliazhang/WhereHows,alyiwang/WhereHows,theseyi/WhereHows,linkedin/WhereHows,mars-lan/WhereHows,theseyi/WhereHows,alyiwang/WhereHows,theseyi/WhereHows,camelliazhang/Wher... | ---
+++
@@ -1,4 +1,4 @@
-import { moduleForComponent, skip } from 'ember-qunit';
+import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
import notificationsStub from 'wherehows-web/tests/stubs/services/notifications';
import userStub from 'wherehows-web/tests/stubs/s... |
b463c1709faf3da73b907dc842d83aa2709a1e77 | app/services/redux.js | app/services/redux.js | import Ember from 'ember';
import redux from 'npm:redux';
import reducers from '../reducers/index';
import enhancers from '../enhancers/index';
import optional from '../reducers/optional';
import middlewareConfig from '../middleware/index';
const { assert, isArray } = Ember;
// Util for handling the case where no set... | import Ember from 'ember';
import redux from 'npm:redux';
import reducers from '../reducers/index';
import enhancers from '../enhancers/index';
import optional from '../reducers/optional';
import middlewareConfig from '../middleware/index';
const { assert, isArray, K } = Ember;
// Handle "classic" middleware exports ... | Use Ember.K instead of noOp | Use Ember.K instead of noOp
| JavaScript | mit | ember-redux/ember-redux,dustinfarris/ember-redux,dustinfarris/ember-redux,toranb/ember-redux,toranb/ember-redux,ember-redux/ember-redux | ---
+++
@@ -5,10 +5,7 @@
import optional from '../reducers/optional';
import middlewareConfig from '../middleware/index';
-const { assert, isArray } = Ember;
-
-// Util for handling the case where no setup thunk was created in middleware
-const noOp = () => {};
+const { assert, isArray, K } = Ember;
// Handle ... |
78e163a1867cc996a47213fcef248b288793c3cd | src/music-collection/groupSongsIntoCategories.js | src/music-collection/groupSongsIntoCategories.js | import _ from 'lodash'
const grouping = [
{ title: 'Custom Song', criteria: song => song.custom },
{ title: 'Tutorial', criteria: song => song.tutorial },
{ title: 'Unreleased', criteria: song => song.unreleased },
{
title: 'New Songs',
criteria: song =>
song.added && Date.now() - Date.parse(song... | import _ from 'lodash'
const grouping = [
{ title: 'Custom Song', criteria: song => song.custom },
{ title: 'Tutorial', criteria: song => song.tutorial },
{ title: 'Unreleased', criteria: song => song.unreleased },
{
title: 'New Songs',
criteria: song =>
song.added && Date.now() - Date.parse(song... | Put songs as new for 2 months | :wrench: Put songs as new for 2 months
| JavaScript | agpl-3.0 | bemusic/bemuse,bemusic/bemuse,bemusic/bemuse,bemusic/bemuse,bemusic/bemuse | ---
+++
@@ -7,7 +7,7 @@
{
title: 'New Songs',
criteria: song =>
- song.added && Date.now() - Date.parse(song.added) < 14 * 86400000,
+ song.added && Date.now() - Date.parse(song.added) < 60 * 86400000,
sort: song => song.added,
reverse: true
}, |
bc19de3950abae46adf992dfa77ee890e8ed6aa9 | src/DELETE/sanitizeArguments/index.js | src/DELETE/sanitizeArguments/index.js | const is = require('is');
const url = require('url');
/**
* Returns an object containing the required properties to make an
* http request.
* @module DELETE/sanitizeArguments
* @param {array} a - Arguments
* @return {object} args - "Sanitized" arguments
*/
module.exports = function sanitizeArguments(a = []) {
c... | const is = require('is');
const url = require('url');
/**
* Returns an object containing the required properties to make an
* http request.
* @module DELETE/sanitizeArguments
* @param {array} a - Arguments
* @return {object} args - "Sanitized" arguments
*/
module.exports = function sanitizeArguments(a = []) {
c... | DELETE correct options object + protocol handling | DELETE correct options object + protocol handling
| JavaScript | mit | opensoars/ezreq | ---
+++
@@ -16,6 +16,8 @@
// Lets always use an request options object
if (!args.options) args.options = {};
+
+ // Fill request object with data from url (if set)
if (args.url) {
const urlObj = url.parse(args.url);
args.options.hostname = urlObj.hostname; |
93fa682de8cd2ed950432c64c32c352579cfa7cd | views/board.js | views/board.js | import React from 'react';
import Invocation from './invocation';
import StatusLine from './status_line';
export default React.createClass({
getInitialState() {
return {vcsData: {
isRepository: true,
branch: 'name',
status: 'clean'
}};
},
componentWillMou... | import React from 'react';
import Invocation from './invocation';
import StatusLine from './status_line';
export default React.createClass({
getInitialState() {
return {vcsData: {
isRepository: true,
branch: 'name',
status: 'clean'
}};
},
componentWillMou... | Add a shortcut to toggle debug mode. | Add a shortcut to toggle debug mode.
| JavaScript | mit | Young55555/black-screen,rocky-jaiswal/black-screen,over300laughs/black-screen,rocky-jaiswal/black-screen,smaty1/black-screen,drew-gross/black-screen,noikiy/black-screen,toxic88/black-screen,AnalogRez/black-screen,RyanTech/black-screen,alessandrostone/black-screen,mzgnr/black-screen,jbhannah/black-screen,jassyboy/black-... | ---
+++
@@ -16,12 +16,22 @@
.on('vcs-data', (data) => { this.setState({vcsData: data}) });
},
handleKeyDown(event) {
- // Ctrl+l
+ // Ctrl+L.
if (event.ctrlKey && event.keyCode === 76) {
this.props.terminal.clearInvocations();
event.stopPropaga... |
74eed05c7175e7fe96d54286f7feaaf68fcc3085 | addon/services/ember-ambitious-forms.js | addon/services/ember-ambitious-forms.js | import Ember from 'ember'
import AFField, { DEFAULT_CONFIG as FIELD_DEFAULT_CONFIG } from '../components/af-field'
import i18n from '../mixins/i18n'
import loc from '../mixins/loc'
import restless from '../mixins/restless'
import validations from '../mixins/validations'
const AF_FIELD_MIXINS = { i18n, loc, restless,... | import Ember from 'ember'
import { DEFAULT_CONFIG as FIELD_DEFAULT_CONFIG } from '../components/af-field'
import i18n from '../mixins/i18n'
import loc from '../mixins/loc'
import restless from '../mixins/restless'
import validations from '../mixins/validations'
const AF_FIELD_MIXINS = { i18n, loc, restless, validati... | Load addons into resolver AFField instead of global AFField | Load addons into resolver AFField instead of global AFField
| JavaScript | mit | dough-com/ember-ambitious-forms,dough-com/ember-ambitious-forms | ---
+++
@@ -1,6 +1,6 @@
import Ember from 'ember'
-import AFField, { DEFAULT_CONFIG as FIELD_DEFAULT_CONFIG } from '../components/af-field'
+import { DEFAULT_CONFIG as FIELD_DEFAULT_CONFIG } from '../components/af-field'
import i18n from '../mixins/i18n'
import loc from '../mixins/loc'
@@ -21,12 +21,12 @@
... |
11c687b1d5bb1eb5a09c7efb6086ee6d3f536d0e | tests/test-files/preserve-simple-binary-expressions/input.js | tests/test-files/preserve-simple-binary-expressions/input.js | a * b;
10*5;
10 * 5;
10e5*5;
10 * (5 + 10);
10*(5 + 10);
| a * b;
a*b;
10*5;
10 * 5;
10e5*5;
10 * (5 + 10);
10*(5 + 10);
| Add test for two variables being multiplied who lack a space in between. | Add test for two variables being multiplied who lack a space in between.
| JavaScript | mit | Mark-Simulacrum/attractifier,Mark-Simulacrum/pretty-generator | ---
+++
@@ -1,4 +1,5 @@
a * b;
+a*b;
10*5;
10 * 5;
10e5*5; |
29de57f99e6946e6db7257d650b860eaf2f58a7d | app/assets/javascripts/carnival/advanced_search.js | app/assets/javascripts/carnival/advanced_search.js | $(document).ready(function(){
$("#advanced_search_toggler").click(function(e){
$('body').append('<div class="as-form-overlay">')
$("#advanced_search_toggler").toggleClass('is-opened')
$("#advanced_search_form").toggle();
$(".as-form-overlay").click(function(e){
$(".as-form-overlay").remove();
... | $(document).ready(function(){
$("#advanced_search_toggler").click(function(e){
$('body').append('<div class="as-form-overlay">')
$("#advanced_search_toggler").toggleClass('is-opened')
$("#advanced_search_form").toggle();
$('#advanced_search_form').find('input').focus();
$(".as-form-overlay").clic... | Set focus on the first advanced search field | Set focus on the first advanced search field
| JavaScript | mit | cartolari/carnival,dsakuma/carnival,dsakuma/carnival,Vizir/carnival,dsakuma/carnival,cartolari/carnival,dsakuma/carnival,Vizir/carnival,cartolari/carnival,Vizir/carnival,cartolari/carnival,Vizir/carnival,cartolari/carnival,Vizir/carnival,dsakuma/carnival | ---
+++
@@ -3,6 +3,8 @@
$('body').append('<div class="as-form-overlay">')
$("#advanced_search_toggler").toggleClass('is-opened')
$("#advanced_search_form").toggle();
+ $('#advanced_search_form').find('input').focus();
+
$(".as-form-overlay").click(function(e){
$(".as-form-overlay").remov... |
bebd287f6a3552fcd0eabfa28afd522da32a6478 | etc/protractorConfSauce.js | etc/protractorConfSauce.js | var pr = process.env.TRAVIS_PULL_REQUEST;
var souceUser = process.env.SAUCE_USERNAME || "liqd";
var sauceKey = process.env.SAUCE_ACCESS_KEY;
var name = ((pr === "false") ? "" : "#" + pr + " ") + process.env.TRAVIS_COMMIT;
var common = require("./protractorCommon.js");
var local = {
sauceUser: souceUser,
sauce... | var pr = process.env.TRAVIS_PULL_REQUEST;
var souceUser = process.env.SAUCE_USERNAME || "liqd";
var sauceKey = process.env.SAUCE_ACCESS_KEY;
var name = ((pr === "false") ? "" : "#" + pr + " ") + process.env.TRAVIS_COMMIT;
var common = require("./protractorCommon.js");
var local = {
sauceUser: souceUser,
sauce... | Disable direct connect for sauce labs | Disable direct connect for sauce labs
| JavaScript | agpl-3.0 | liqd/adhocracy3.mercator,liqd/adhocracy3.mercator,liqd/adhocracy3.mercator,liqd/adhocracy3.mercator,liqd/adhocracy3.mercator,liqd/adhocracy3.mercator,liqd/adhocracy3.mercator | ---
+++
@@ -8,6 +8,7 @@
var local = {
sauceUser: souceUser,
sauceKey: sauceKey,
+ directConnect: false,
capabilities: {
"browserName": "chrome", |
d718fa64b1b3ab4fc0aa9c678faf15477a205dce | app/assets/javascripts/views/components/Editor/fields/virtualKeyboard.js | app/assets/javascripts/views/components/Editor/fields/virtualKeyboard.js | import React, {Component, PropTypes} from 'react';
import t from 'tcomb-form';
function renderInput(locals) {
const onChange = function (event) {
locals.onChange(event.target.value);
};
const triggerRealInputChange = function (event) {
locals.onChange(document.getElementById('virtual-keyboard-helper-' +... | import React, {Component, PropTypes} from 'react';
import t from 'tcomb-form';
function renderInput(locals) {
const onChange = function (event) {
locals.onChange(event.target.value);
};
const triggerRealInputChange = function (event) {
locals.onChange(document.getElementById('virtual-keyboard-helper-' +... | Fix bug with moving up and down | Fix bug with moving up and down
| JavaScript | apache-2.0 | First-Peoples-Cultural-Council/fv-web-ui,First-Peoples-Cultural-Council/fv-web-ui,First-Peoples-Cultural-Council/fv-web-ui,First-Peoples-Cultural-Council/fv-web-ui,First-Peoples-Cultural-Council/fv-web-ui | ---
+++
@@ -13,7 +13,7 @@
return <div>
<input type="text" label={locals.label} name={locals.attrs.name} value={locals.value} onChange={onChange} style={{display: 'none'}} />
- <input type="text" id={'virtual-keyboard-helper-' + locals.attrs.name} className="form-control" label={locals.label} onBlur={trigge... |
49500617b9ffe668dd4883c9190cac4c1ca15781 | indico/htdocs/js/utils/i18n.js | indico/htdocs/js/utils/i18n.js | (function(global) {
"use strict";
var default_i18n = new Jed({
locale_data: TRANSLATIONS,
domain: "indico"
});
global.i18n = default_i18n;
global.$T = _.bind(default_i18n.gettext, default_i18n);
['gettext', 'ngettext', 'pgettext', 'npgettext', 'translate'].forEach(function(met... | (function(global) {
"use strict";
var default_i18n = new Jed({
locale_data: global.TRANSLATIONS,
domain: "indico"
});
global.i18n = default_i18n;
global.$T = _.bind(default_i18n.gettext, default_i18n);
['gettext', 'ngettext', 'pgettext', 'npgettext', 'translate'].forEach(funct... | Make it more obvious that TRANSLATIONS is global | Make it more obvious that TRANSLATIONS is global
| JavaScript | mit | ThiefMaster/indico,OmeGak/indico,mvidalgarcia/indico,indico/indico,ThiefMaster/indico,DirkHoffmann/indico,pferreir/indico,DirkHoffmann/indico,mvidalgarcia/indico,ThiefMaster/indico,pferreir/indico,indico/indico,mic4ael/indico,pferreir/indico,mic4ael/indico,mic4ael/indico,DirkHoffmann/indico,OmeGak/indico,mvidalgarcia/i... | ---
+++
@@ -2,7 +2,7 @@
"use strict";
var default_i18n = new Jed({
- locale_data: TRANSLATIONS,
+ locale_data: global.TRANSLATIONS,
domain: "indico"
});
@@ -15,7 +15,7 @@
global.$T.domain = _.memoize(function(domain) {
return new Jed({
- locale_data... |
0939f9e32aa620132b444799f864056a097ead2d | test/e2e/main.js | test/e2e/main.js | 'use strict';
describe('Sign up page', function () {
var watchButton;
beforeEach(function () {
watchButton = element('.btn-primary');
});
it('should have Watch/Unwatch disabled by default', function() {
expect(watchButton.attr('disabled')).toBeTruthy();
});
it('should enable Watch/Unwatch button', functi... | 'use strict';
describe('Sign up page', function () {
var watchButton;
beforeEach(function () {
watchButton = element('.btn-primary');
});
it('should have Watch enabled by default', function() {
expect(watchButton.attr('disabled')).toBeFalsy();
});
it('should enable Watch/Unwatch button', function() {
i... | Update default behavior of Watch button | Update default behavior of Watch button
| JavaScript | mit | seriema/npmalerts-web,seriema/npmalerts-web | ---
+++
@@ -8,8 +8,8 @@
watchButton = element('.btn-primary');
});
- it('should have Watch/Unwatch disabled by default', function() {
- expect(watchButton.attr('disabled')).toBeTruthy();
+ it('should have Watch enabled by default', function() {
+ expect(watchButton.attr('disabled')).toBeFalsy();
});
it... |
59745c5117613e7822056fe75ceb502ef702853d | example/user/controller.js | example/user/controller.js | var users = require('./user-dump'),
Promise = require('bluebird')
module.exports = {
get : Get,
add : Add
};
function Get(request,reply) {
setTimeout(function() {
reply.data = users;
reply.continue();
},500);
}
function Add(request,reply) {
setTimeout(function() {
users.push({name : request.payload.... | var users = require('./stub'),
Promise = require('bluebird')
module.exports = {
get : Get,
add : Add
};
function Get(request,reply) {
setTimeout(function() {
reply.data = users;
reply.continue();
},500);
}
function Add(request,reply) {
setTimeout(function() {
users.push({name : request.payload.name,... | Use correct file name for db stub | Use correct file name for db stub
| JavaScript | mit | Pranay92/hapi-next | ---
+++
@@ -1,4 +1,4 @@
-var users = require('./user-dump'),
+var users = require('./stub'),
Promise = require('bluebird')
module.exports = { |
7a7a6905f01aa99f5ff2c75cee165cf691dde8eb | ui/src/shared/components/FancyScrollbar.js | ui/src/shared/components/FancyScrollbar.js | import React, {Component, PropTypes} from 'react'
import classnames from 'classnames'
import {Scrollbars} from 'react-custom-scrollbars'
class FancyScrollbar extends Component {
constructor(props) {
super(props)
}
static defaultProps = {
autoHide: true,
autoHeight: false,
}
render() {
const... | import React, {Component, PropTypes} from 'react'
import classnames from 'classnames'
import {Scrollbars} from 'react-custom-scrollbars'
class FancyScrollbar extends Component {
constructor(props) {
super(props)
}
static defaultProps = {
autoHide: true,
autoHeight: false,
}
handleMakeDiv = clas... | Update FancyScrollBar to use arrow properties | Update FancyScrollBar to use arrow properties
| JavaScript | mit | mark-rushakoff/influxdb,nooproblem/influxdb,influxdb/influxdb,influxdb/influxdb,mark-rushakoff/influxdb,influxdata/influxdb,nooproblem/influxdb,mark-rushakoff/influxdb,mark-rushakoff/influxdb,influxdb/influxdb,mark-rushakoff/influxdb,li-ang/influxdb,nooproblem/influxdb,li-ang/influxdb,mark-rushakoff/influxdb,nooproblem... | ---
+++
@@ -10,6 +10,10 @@
static defaultProps = {
autoHide: true,
autoHeight: false,
+ }
+
+ handleMakeDiv = className => props => {
+ return <div {...props} className={`fancy-scroll--${className}`} />
}
render() {
@@ -25,15 +29,11 @@
autoHideDuration={250}
autoHeight={aut... |
eca69d314c990f7523742277cd104ef5371a49d2 | test/dummy/app/assets/javascripts/application.js | test/dummy/app/assets/javascripts/application.js | // This is a manifest file that'll be compiled into including all the files listed below.
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
// be included in the compiled file accessible from http://example.com/assets/application.js
// It's not advisable to add code directl... | // This is a manifest file that'll be compiled into including all the files listed below.
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
// be included in the compiled file accessible from http://example.com/assets/application.js
// It's not advisable to add code directl... | Remove jQuery from the assets | Remove jQuery from the assets
| JavaScript | mit | Soluciones/kpi,Soluciones/kpi,Soluciones/kpi | ---
+++
@@ -4,6 +4,4 @@
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// the compiled file.
//
-//= require jquery
-//= require jquery_ujs
//= require_tree . |
1c84ae2c3ebe985ed1e5348cd4ee2cdb4aee1be3 | test/mriTests.js | test/mriTests.js | "use strict"
const mocha = require('mocha');
const expect = require('chai').expect;
const fs = require('fs');
const mri = require('../src/mri');
describe("Detect CSharp functions", function(){
it("should detect functions", function(){
const expected = ["DiscoverTestsToExecute", "GetTestsThatCall", "GetTes... | "use strict"
const mocha = require('mocha');
const expect = require('chai').expect;
const fs = require('fs');
const mri = require('../src/mri');
describe("Detect CSharp functions", function(){
it("should detect functions", function(){
this.timeout(5000);
const expected = ["DiscoverTestsTo... | Add timeout to mri tests | Add timeout to mri tests
| JavaScript | mit | vgaltes/CrystalGazer,vgaltes/CrystalGazer | ---
+++
@@ -7,6 +7,8 @@
describe("Detect CSharp functions", function(){
it("should detect functions", function(){
+ this.timeout(5000);
+
const expected = ["DiscoverTestsToExecute", "GetTestsThatCall", "GetTestsThatCall", "GetCallsInMethod", "GetTestMethodsInAssembly"];
cons... |
ad3279b9d7642dbe53e951ea7d7131e637c4e589 | tests/lib/rules/no-const-outside-module-scope.js | tests/lib/rules/no-const-outside-module-scope.js | 'use strict';
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
var rule = require('../../../lib/rules/no-const-outside-module-scope');
var RuleTester = require('eslint').RuleTester;
//---... | 'use strict';
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
var rule = require('../../../lib/rules/no-const-outside-module-scope');
var RuleTester = require('eslint').RuleTester;
//---... | Add output returned by the fixer | Test: Add output returned by the fixer
| JavaScript | mit | Turbo87/eslint-plugin-ember-internal | ---
+++
@@ -27,9 +27,11 @@
invalid: [{
code: '{ const FOOBAR = 5; }',
+ output: '{ let FOOBAR = 5; }',
errors: [{ message: '`const` should only be used in module scope (not inside functions/blocks).' }]
}, {
code: 'function foobar() { const FOOBAR = 5; return FOOBAR; }',
+ output: 'functi... |
fa126551f8dafa5171aca253e6add5ecc7b928b5 | src/docs/components/SpinningDoc.js | src/docs/components/SpinningDoc.js | // (C) Copyright 2014-2016 Hewlett Packard Enterprise Development LP
import React, { Component } from 'react';
import Spinning from 'grommet/components/icons/Spinning';
import DocsArticle from '../../components/DocsArticle';
import Code from '../../components/Code';
export default class SpinningDoc extends Component ... | // (C) Copyright 2014-2016 Hewlett Packard Enterprise Development LP
import React, { Component } from 'react';
import Spinning from 'grommet/components/icons/Spinning';
import DocsArticle from '../../components/DocsArticle';
import Code from '../../components/Code';
export default class SpinningDoc extends Component ... | Fix import path of Spinning usage | Fix import path of Spinning usage | JavaScript | apache-2.0 | grommet/grommet-docs,grommet/grommet-docs | ---
+++
@@ -25,7 +25,7 @@
<section>
<h2>Usage</h2>
<Code preamble={
- `import Spinning from 'grommet/components/Spinning';`}>
+ `import Spinning from 'grommet/components/icons/Spinning';`}>
<Spinning />
</Code>
</section> |
b2403270ce82fdae09db5e07b07ea6f92bb955d6 | core-plugins/shared/1/as/webapps/project-viewer/html/js/config/config.js | core-plugins/shared/1/as/webapps/project-viewer/html/js/config/config.js | /**
* This is the default (fallback) configuration file for the web application.
*/
// Create empty CONFIG object as fallback if it does not exist.
var CONFIG = CONFIG || {};
// Default configuration.
var DEFAULT_CONFIG = {};
| /**
* This is the default (fallback) configuration file for the web application.
*/
// Default configuration.
var DEFAULT_CONFIG = {};
| Remove duplicate declaration of CONFIG. | Remove duplicate declaration of CONFIG.
| JavaScript | apache-2.0 | aarpon/obit_shared_core_technology,aarpon/obit_shared_core_technology,aarpon/obit_shared_core_technology | ---
+++
@@ -2,8 +2,5 @@
* This is the default (fallback) configuration file for the web application.
*/
-// Create empty CONFIG object as fallback if it does not exist.
-var CONFIG = CONFIG || {};
-
// Default configuration.
var DEFAULT_CONFIG = {}; |
02f49e650e067a9dac49998bf2ddfdcf38b23eb8 | Resources/lib/Como/Models.js | Resources/lib/Como/Models.js | module.exports = function (Como) {
var models = {},
// include underscore utility-belt
_ = require('/lib/Underscore/underscore.min');
_.each(Como.config.models, function (m) {
var _m = require('/app/models/' + m.name),
mName = m.name.toLowerCase();
models[mName] = n... | module.exports = function (Como) {
var models = {},
// include underscore utility-belt
_ = require('/lib/Underscore/underscore.min');
_.each(Como.config.models, function (m) {
var _m = require('/app/models/' + m.name),
mName = m.name.toLowerCase();
models[mName] = n... | Truncate during app start causing error, disable it for now. | Truncate during app start causing error, disable it for now.
| JavaScript | apache-2.0 | geekzy/tiapp-como | ---
+++
@@ -8,7 +8,7 @@
mName = m.name.toLowerCase();
models[mName] = new _m(Como);
- if (m.truncate) { models[mName].truncate(); }
+ //if (m.truncate) { models[mName].truncate(); }
});
return models; |
ce7365ee16191777ad76d4009e2e0d21cde204fe | app/initializers/session.js | app/initializers/session.js | export default {
name: 'app.session',
initialize(container, application) {
application.inject('controller', 'session', 'service:session');
application.inject('route', 'session', 'service:session');
}
};
| export default {
name: 'app.session',
initialize(application) {
application.inject('controller', 'session', 'service:session');
application.inject('route', 'session', 'service:session');
}
};
| Fix a deprecation warning about `initialize` arguments | Fix a deprecation warning about `initialize` arguments
This shows up in the browser console. Fixed as suggested at:
http://emberjs.com/deprecations/v2.x/#toc_initializer-arity
| JavaScript | apache-2.0 | Susurrus/crates.io,achanda/crates.io,achanda/crates.io,steveklabnik/crates.io,achanda/crates.io,rust-lang/crates.io,steveklabnik/crates.io,Susurrus/crates.io,steveklabnik/crates.io,rust-lang/crates.io,rust-lang/crates.io,achanda/crates.io,steveklabnik/crates.io,Susurrus/crates.io,rust-lang/crates.io,Susurrus/crates.io | ---
+++
@@ -1,7 +1,7 @@
export default {
name: 'app.session',
- initialize(container, application) {
+ initialize(application) {
application.inject('controller', 'session', 'service:session');
application.inject('route', 'session', 'service:session');
} |
41abdbad1fc8af309a852770478a0a517c0a6395 | DebugGlobals.js | DebugGlobals.js | /**
* Globals we expose on the window object for manual debugging with the Chrome
* console.
*
* TODO: Consider disabling this for release builds.
*
* @flow
*/
import * as actions from './actions'
import store from './store'
import parseExpression from './parseExpression'
/**
* Parse the given expression text... | /**
* Globals we expose on the window object for manual debugging with the Chrome
* console.
*
* @flow
*/
import {NativeModules} from 'react-native'
import * as actions from './actions'
import store from './store'
import parseExpression from './parseExpression'
/**
* Parse the given expression text and place t... | Update debug globals code to allow modifications from the Chrome console | Update debug globals code to allow modifications from the Chrome console
Previously, refreshes wouldn't happen until the next call from native code. Now,
we run a setInterval that runs all the time to force any Chrome-triggered events
to get flushed.
| JavaScript | mit | alangpierce/LambdaCalculusPlayground,alangpierce/LambdaCalculusPlayground,alangpierce/LambdaCalculusPlayground | ---
+++
@@ -2,10 +2,10 @@
* Globals we expose on the window object for manual debugging with the Chrome
* console.
*
- * TODO: Consider disabling this for release builds.
- *
* @flow
*/
+
+import {NativeModules} from 'react-native'
import * as actions from './actions'
import store from './store'
@@ -22,... |
0e91b9b2a063a22bf1033777452c8c87cb399829 | src/app/index.route.js | src/app/index.route.js | function routerConfig ($stateProvider, $urlRouterProvider) {
'ngInject';
$stateProvider
// Holding page
.state('holding-page', {
url: '/',
views: {
'content': {
templateUrl: 'app/holding-page/holding-page.html'
}
}
})
// Home page
.state('home', {
... | function routerConfig ($stateProvider, $urlRouterProvider) {
'ngInject';
$stateProvider
// Holding page
.state('holding-page', {
url: '/',
views: {
'content': {
templateUrl: 'app/holding-page/holding-page.html'
}
}
})
// Home page
.state('home', {
... | Add routing for EUFN and Lancastrians projects | Add routing for EUFN and Lancastrians projects
| JavaScript | mit | RobEasthope/lazarus,RobEasthope/lazarus | ---
+++
@@ -24,11 +24,19 @@
})
// Projects
- .state('ambr', {
- url: '/ambr',
+ .state('eufn', {
+ url: '/eufn',
views: {
'content': {
- templateUrl: 'app/projects/ambr/ambr.html'
+ templateUrl: 'app/projects/eufn/eufn.html'
+ }
+ }
+ })
+ ... |
657ea31a8373be43b33d80cfe58915e294ec21ea | index.js | index.js | var persist = require('./lib/persist');
module.exports = persist;
| var persist = require('./lib/persist');
/**
* @param String db MongoDB connection string
* @param Array data
* @return promise
* This module makes use of the node-promise API.
* Operate on the singular result argument passed to a `then` callback, as follows:
*
* persist(db, data).then(function (result) {
* /... | Add a more useful comment | Add a more useful comment
| JavaScript | mit | imgges/persist | ---
+++
@@ -1,3 +1,16 @@
var persist = require('./lib/persist');
+/**
+ * @param String db MongoDB connection string
+ * @param Array data
+ * @return promise
+ * This module makes use of the node-promise API.
+ * Operate on the singular result argument passed to a `then` callback, as follows:
+ *
+ * persist(db, ... |
0e3db15aa1c142c5028a0da35f0da42a237aa306 | index.js | index.js | 'use strict';
module.exports = function(prompts) {
// This method will only show prompts that haven't been supplied as options. This makes the generator more composable.
const filteredPrompts = [];
const props = new Map();
prompts.forEach(function prompts(prompt) {
this.option(prompt.name);
const opti... | 'use strict';
module.exports = function(prompts) {
// This method will only show prompts that haven't been supplied as options. This makes the generator more composable.
const filteredPrompts = [];
const props = new Map();
prompts.forEach(function prompts(prompt) {
const option = this.options[prompt.name]... | Fix to allow non boolean options | Fix to allow non boolean options
| JavaScript | mit | artefact-group/yeoman-option-or-prompt | ---
+++
@@ -6,7 +6,6 @@
const props = new Map();
prompts.forEach(function prompts(prompt) {
- this.option(prompt.name);
const option = this.options[prompt.name];
if (option === undefined) { |
c631ca483da85d04ef13afcf9e9c0f78a74cfc61 | index.js | index.js | exports.register = function(plugin, options, next) {
// Wait 10 seconds for existing connections to close then exit.
var stop = function() {
plugin.servers[0].stop({
timeout: 10 * 1000
}, function() {
process.exit();
});
};
process.on('SIGTERM', stop);
process.on('SIGINT', stop);
... | exports.register = function(server, options, next) {
// Wait 10 seconds for existing connections to close then exit.
var stop = function() {
server.connections[0].stop({
timeout: 10 * 1000
}, function() {
process.exit();
});
};
process.on('SIGTERM', stop);
process.on('SIGINT', sto... | Upgrade for compatability with Hapi 8 | Upgrade for compatability with Hapi 8
| JavaScript | mit | KyleAMathews/hapi-death | ---
+++
@@ -1,8 +1,8 @@
-exports.register = function(plugin, options, next) {
+exports.register = function(server, options, next) {
// Wait 10 seconds for existing connections to close then exit.
var stop = function() {
- plugin.servers[0].stop({
+ server.connections[0].stop({
timeout: 10 * 1000
... |
8044a284695bb16567d50c4bb58a965f7d181bfe | index.js | index.js | var path = require('path');
module.exports = function (source) {
if (this.cacheable) {
this.cacheable();
}
var filename = path.basename(this.resourcePath),
matches = 0,
processedSource;
processedSource = source.replace(/React\.createClass\s*\(\s*\{/g, function (match) {
matches++;
ret... | var path = require('path');
module.exports = function (source) {
if (this.cacheable) {
this.cacheable();
}
var filename = path.basename(this.resourcePath),
matches = 0,
processedSource;
processedSource = source.replace(/[Rr]eact\.createClass\s*\(/g, function (match) {
matches++;
retur... | Allow lowercase React import and using an object reference | Allow lowercase React import and using an object reference
| JavaScript | mit | gaearon/react-hot-loader,gaearon/react-hot-loader | ---
+++
@@ -9,9 +9,9 @@
matches = 0,
processedSource;
- processedSource = source.replace(/React\.createClass\s*\(\s*\{/g, function (match) {
+ processedSource = source.replace(/[Rr]eact\.createClass\s*\(/g, function (match) {
matches++;
- return '__hotUpdateAPI.createClass({';
+ return '_... |
f2bbd2ed9f3a7cac8075d1ddb1b294c5069b0589 | prototype.spawn.js | prototype.spawn.js | module.exports = function () {
StructureSpawn.prototype.createCustomCreep =
function(energy, roleName) {
var numberOfParts = Math.floor(energy / 350);
var body = [];
for (let i = 0; i < numberOfParts; i++) {
body.push(WORK);
}
for (let i = 0; ... | module.exports = function () {
StructureSpawn.prototype.createCustomCreep =
function(energy, roleName) {
var numberOfParts = Math.floor(energy / 350);
var body = [];
for (let i = 0; i < numberOfParts; i++) {
body.push(WORK);
}
for (let i = 0; ... | WORK WORK CARRY CARRY MOVE MOVE MOVE | WORK WORK CARRY CARRY MOVE MOVE MOVE
| JavaScript | mit | Raltrwx/Ralt-Screeps | ---
+++
@@ -8,6 +8,9 @@
}
for (let i = 0; i < numberOfParts; i++) {
body.push(WORK);
+ }
+ for (let i = 0; i < numberOfParts; i++) {
+ body.push(CARRY);
}
for (let i = 0; i < numberOfParts; i++) {
... |
7c3bcda4f834cfab2fdd4caa32b59ea6c8082176 | release.js | release.js | var shell = require('shelljs')
if (exec('git status --porcelain').stdout) {
console.error('Git working directory not clean. Please commit all chances to release a new package to npm.')
process.exit(2)
}
var versionIncrement = process.argv[process.argv.length - 1]
var versionIncrements = ['major', 'minor', 'patch'... | var shell = require('shelljs')
if (exec('git status --porcelain').stdout) {
console.error('Git working directory not clean. Please commit all chances to release a new package to npm.')
process.exit(2)
}
var versionIncrement = process.argv[process.argv.length - 1]
var versionIncrements = ['major', 'minor', 'patch'... | Use === instead of == to please the standard | Use === instead of == to please the standard
| JavaScript | mit | mafintosh/mongojs | ---
+++
@@ -17,7 +17,7 @@
var geotag = execOptional('npm run geotag')
-if (geotag.code == 0) {
+if (geotag.code === 0) {
exec('git commit -m "Geotag package for release" package.json')
}
|
29aae66080fcdff0fe62486d445c6a3a9aeff406 | 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 modifier key press when opening table rows | Allow modifier key press when opening table rows
| JavaScript | mit | dylanfisher/forest,dylanfisher/forest,dylanfisher/forest | ---
+++
@@ -29,7 +29,14 @@
var url = $button.attr('href');
if ( url ) {
- Turbolinks.visit(url);
+ if ( e.metaKey || e.ctrlKey ) {
+ window.open( url, '_blank' );
+ } else if ( e.shiftKey ) {
+ window.open( url, '_blank' );
+ window.focus();
+ } else {
+ Tur... |
1d46cc1e616d64cdae5b29e9f777c309b3ea08f7 | SPAWithAngularJS/module3/directives/controllersInsideDirective/js/app.shoppingListDirective.js | SPAWithAngularJS/module3/directives/controllersInsideDirective/js/app.shoppingListDirective.js | // app.shoppingListDirective.js
(function() {
"use strict";
angular.module("ShoppingListDirectiveApp")
.directive("shoppingList", ShoppingList);
function ShoppingList() {
const templateUrl = "../templates/shoppingList.view.html";
const ddo = {
restrict: "E",
templateUrl,
scope: {
... | // app.shoppingListDirective.js
(function() {
"use strict";
angular.module("ShoppingListDirectiveApp")
.directive("shoppingList", ShoppingList);
function ShoppingList() {
const templateUrl = "../templates/shoppingList.view.html";
const ddo = {
restrict: "E",
templateUrl,
scope: {
... | Edit controllerAs label for ShoppingListDirectiveController | Edit controllerAs label for ShoppingListDirectiveController
| JavaScript | mit | var-bin/angularjs-training,var-bin/angularjs-training,var-bin/angularjs-training,var-bin/angularjs-training | ---
+++
@@ -15,7 +15,7 @@
list: "<",
title: "@"
},
- controller: "ShoppingListDirectiveController as l",
+ controller: "ShoppingListDirectiveController as ShoppingListDirectiveCtrl",
bindToController: true
};
|
446503cb5c27964f693b0d931b52ff18f862b159 | assets/js/external-links.js | assets/js/external-links.js | //// External Links
// Open external links in a new tab.
$(function () {
$('a').each(function () {
if ( $(this).href.indexOf(window.location.host) == -1 ) {
$(this).attr('target', '_blank');
}
});
});
| //// External Links
// Open external links in a new tab.
$(function () {
$('a').each(function () {
if ( $(this).href.indexOf(window.location.host) === -1 ) {
$(this).attr('target', '_blank');
}
});
});
| Fix "Expected '===' and instead saw '=='." | Fix "Expected '===' and instead saw '=='." | JavaScript | mit | eustasy/puff-core,eustasy/puff-core,eustasy/puff-core | ---
+++
@@ -2,7 +2,7 @@
// Open external links in a new tab.
$(function () {
$('a').each(function () {
- if ( $(this).href.indexOf(window.location.host) == -1 ) {
+ if ( $(this).href.indexOf(window.location.host) === -1 ) {
$(this).attr('target', '_blank');
}
}); |
5b7eda2be2c50e4aab45b862c2f9cde0d31c2dfe | gulpfile.js | gulpfile.js | var gulp = require('gulp');
var clean = require('gulp-clean');
var zip = require('gulp-zip');
var bases = {
root: 'dist/'
};
var paths = [
'core/actions/*',
'core/common/**',
'admin/**',
'!admin/config/*',
'boxoffice/**',
'!boxoffice/config/*',
'customer/**',
'!customer/config/*',... | var gulp = require('gulp');
var clean = require('gulp-clean');
var zip = require('gulp-zip');
var bases = {
root: 'dist/'
};
var paths = [
'core/actions/*',
'core/common/**',
'admin/**',
'!admin/config/*',
'boxoffice/**',
'!boxoffice/config/*',
'customer/**',
'!customer/config/*',... | Copy core .htaccess file to dist | Copy core .htaccess file to dist
| JavaScript | mit | ssigg/ticketbox-server-php,ssigg/ticketbox-server-php,ssigg/ticketbox-server-php | ---
+++
@@ -24,7 +24,8 @@
'core/services/*',
'vendor/**',
'composer.lock',
- 'core/dependencies.php'
+ 'core/dependencies.php',
+ 'core/.htaccess'
];
gulp.task('clean', function() { |
77726d201de27f48485de497ff706ccea11becc2 | src/config/config.default.js | src/config/config.default.js | // TODO Just add fallbacks to config.js
var path = require('path')
module.exports = {
port: 8080,
address: '127.0.0.1',
session_secret: 'asdf',
database: {
host: 'mongodb://127.0.0.1/', // MongoDB host
name: 'vegosvar', // MongoDB database name
},
facebook: {
app_id: '',
app_secret: '',
... | // TODO Just add fallbacks to config.js
var path = require('path')
module.exports = {
port: 8080,
address: '127.0.0.1',
session_secret: 'asdf',
database: {
host: 'mongodb://127.0.0.1/', // MongoDB host
name: 'vegosvar', // MongoDB database name
},
facebook: {
app_id: '',
app_secret: '',
... | Add config for instagram authentication | Add config for instagram authentication
| JavaScript | unlicense | Vegosvar/Vegosvar,Vegosvar/Vegosvar,Vegosvar/Vegosvar | ---
+++
@@ -18,6 +18,13 @@
callback: 'http://local.vegosvar.se:8080/auth/facebook/callback'
},
+ instagram: {
+ client_id: '',
+ client_secret: '',
+ callback: 'http://local.vegosvar.se/admin/auth/instagram/callback',
+ scope: 'public_content '
+ },
+
root: path.join(__dirname, '..'),
up... |
e4e9561be08162dc7d00ce5cf38f55b52cad5863 | src/models/interact.js | src/models/interact.js | var _ = require("lodash");
var Bacon = require("baconjs");
var Interact = module.exports;
Interact.ask = function (question) {
var readline = require("readline").createInterface({
input: process.stdin,
output: process.stdout
});
return Bacon.fromCallback(_.partial(readline.question.bind(readline), ques... | var _ = require("lodash");
var Bacon = require("baconjs");
var Interact = module.exports;
Interact.ask = function (question) {
var readline = require("readline").createInterface({
input: process.stdin,
output: process.stdout
});
return Bacon.fromCallback(_.partial(readline.question.bind(readline), ques... | Make Interact.confirm use configurable acceptance strings | Make Interact.confirm use configurable acceptance strings
| JavaScript | apache-2.0 | CleverCloud/clever-tools,CleverCloud/clever-tools,CleverCloud/clever-tools | ---
+++
@@ -12,9 +12,11 @@
return Bacon.fromCallback(_.partial(readline.question.bind(readline), question)).doAction(readline.close.bind(readline));
};
-Interact.confirm = function(question, rejectionMessage) {
+Interact.confirm = function(question, rejectionMessage, answers) {
+ var defaultAnswers = ["yes", "... |
8695e857ae870b1e991cd511ffd70101969876cc | api/feed/pending/matchExec.js | api/feed/pending/matchExec.js | (function () {
var cogClass = function () {};
cogClass.prototype.exec = function (params, request, response) {
var oops = this.sys.apiError;
var sys = this.sys;
var userID = params.id;
var userKey = params.key;
var pages = sys.pages;
pages.reset();
... | (function () {
var cogClass = function () {};
cogClass.prototype.exec = function (params, request, response) {
var oops = this.sys.apiError;
var sys = this.sys;
var userID = params.id;
var userKey = params.key;
var pages = sys.pages;
pages.reset();
... | Set short delay for demo | Set short delay for demo
| JavaScript | unlicense | fbennett/newswriter | ---
+++
@@ -13,6 +13,8 @@
if (sys.output_style === 'demo') {
delay = 0;
}
+
+ delay = 3;
var sql = 'SELECT eventID FROM events WHERE (strftime("%s","now")-strftime("%s",touchDate,"unixepoch"))/60>? AND NOT published=1 and status=0 ORDER BY pageDate DESC;';
sys... |
7cf8e87de3aac94d6371799c1bc23c117df06b8d | ti_mocha_tests/modules/commonjs/commonjs.legacy.index_json/1.0.0/commonjs.legacy.index_json.js | ti_mocha_tests/modules/commonjs/commonjs.legacy.index_json/1.0.0/commonjs.legacy.index_json.js | module.exports = {
name: 'commonjs.legacy.index_json/commonjs.legacy.index_js.js'
};
| module.exports = {
name: 'commonjs.legacy.index_json/commonjs.legacy.index_json.js'
};
| Fix test input file with incorrect contets | Fix test input file with incorrect contets
| JavaScript | apache-2.0 | mano-mykingdom/titanium_mobile,ashcoding/titanium_mobile,cheekiatng/titanium_mobile,mano-mykingdom/titanium_mobile,mano-mykingdom/titanium_mobile,cheekiatng/titanium_mobile,ashcoding/titanium_mobile,cheekiatng/titanium_mobile,cheekiatng/titanium_mobile,ashcoding/titanium_mobile,ashcoding/titanium_mobile,ashcoding/titan... | ---
+++
@@ -1,3 +1,3 @@
module.exports = {
- name: 'commonjs.legacy.index_json/commonjs.legacy.index_js.js'
+ name: 'commonjs.legacy.index_json/commonjs.legacy.index_json.js'
}; |
dda231347aeba1e692ddbf31d10897d6499cd44b | src/fn/fn-buckets-quantiles.js | src/fn/fn-buckets-quantiles.js | 'use strict';
require('es6-promise').polyfill();
var debug = require('../helper/debug')('fn-quantiles');
var LazyFiltersResult = require('../model/lazy-filters-result');
var fnBuckets = require('./fn-buckets');
module.exports = function (datasource) {
return function fn$quantiles (numBuckets) {
debug('fn$quant... | 'use strict';
var createBucketsFn = require('./fn-buckets').createBucketsFn;
var FN_NAME = 'quantiles';
module.exports = function (datasource) {
return createBucketsFn(datasource, FN_NAME, '>');
};
module.exports.fnName = FN_NAME;
| Migrate quantiles to buckets creation | Migrate quantiles to buckets creation
| JavaScript | bsd-3-clause | CartoDB/turbo-cartocss | ---
+++
@@ -1,26 +1,11 @@
'use strict';
-require('es6-promise').polyfill();
+var createBucketsFn = require('./fn-buckets').createBucketsFn;
-var debug = require('../helper/debug')('fn-quantiles');
-var LazyFiltersResult = require('../model/lazy-filters-result');
-var fnBuckets = require('./fn-buckets');
+var FN_... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.