code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/package.json b/package.json "extract-text-webpack-plugin": "^1.0.1", "lodash": "^4.14.1", "material-ui": "^0.17.1", + "material-icons": "latest", "react": "^15.4.2", "react-dom": "^15.4.2", "react-motion": "^0.4.4",
0
diff --git a/spec/models/carto/api_key_spec.rb b/spec/models/carto/api_key_spec.rb @@ -251,12 +251,6 @@ describe Carto::ApiKey do api_key.destroy end - - it 'shows public tables' do - api_key = @carto_user1.api_keys.default_public.first - - api_key_permissions(api_key, @public_table.database_schema, @public_table.name)...
2
diff --git a/src/fetch.js b/src/fetch.js @@ -33,7 +33,7 @@ const postProcess = function(data) { let pages = Object.keys(data.query.pages); let docs = pages.map(id => { let page = data.query.pages[id] || {}; - if (page.hasOwnProperty('missing')) { + if (page.hasOwnProperty('missing') || page.hasOwnProperty('invalid')) {...
9
diff --git a/src/content/learning/integrations.md b/src/content/learning/integrations.md +--- +order: 10 +--- + # Integrations Integrate Workers to your existing services and platforms to optimize your continuous integration and continuous deployment flow. The integrations officially supported for Cloudflare Workers ar...
7
diff --git a/instancing.js b/instancing.js @@ -445,7 +445,7 @@ export class GeometryAllocator { if (this.hasOcclusionCulling) { - const findSearchStartingChunk = (i) => { + const findSearchStartingChunk = () => { let foundId; let surfaceY = -Infinity; // find the chunk that the camera is inside of
2
diff --git a/package.json b/package.json "npm": "5.0.2", "oc-client-browser": "1.0.1", "oc-client": "2.1.20", - "oc-template-handlebars": "6.0.0", - "oc-template-handlebars-compiler": "6.0.2", - "oc-template-jade-compiler": "6.0.2", - "oc-template-jade": "6.0.0", + "oc-template-handlebars": "6.0.1", + "oc-template-hand...
3
diff --git a/app/models/carto/visualization.rb b/app/models/carto/visualization.rb @@ -558,15 +558,7 @@ class Carto::Visualization < ActiveRecord::Base end perform_invalidations(table_privacy_changed) - - # Ensure a permission is set before saving the visualization - if permission.nil? - perm = CartoDB::Permission.new ...
2
diff --git a/articles/integrations/azure-tutorial.md b/articles/integrations/azure-tutorial.md @@ -16,13 +16,13 @@ From an Auth0 integration perspective, the code is the same, regardless of where To integrate applications supported by the Microsoft Azure platform, consider these tutorials: -* [ASP.NET application](/ser...
1
diff --git a/commands/rssembed.js b/commands/rssembed.js @@ -164,7 +164,7 @@ function fieldAction (m, data, callback) { callback(null, { ...data, next: { menu: rmList } }) } else { - if (source.embedMessage && source.embedMessage.properties.fields.length === 10) return callback(new Error('You have reached the maximum n...
1
diff --git a/src/components/FormBuilder.jsx b/src/components/FormBuilder.jsx @@ -16,7 +16,7 @@ const FormBuilder = (props) => { const onChange = () => { const {onChange} = props; if (onChange && typeof onChange === 'function') { - onChange(builderRef.current.instance.form); + onChange(builderRef.current.instance.form, ...
0
diff --git a/test/eslint-plugin-engine262/no-use-in-def.js b/test/eslint-plugin-engine262/no-use-in-def.js @@ -11,7 +11,7 @@ function isInRange(node, location) { function isUsedInDef(reference) { const variable = reference.resolved; - if (variable.scope !== reference.from) { + if (!variable || variable.scope !== refere...
1
diff --git a/packages/eslint-plugin-shopify/lib/rules/webpack/no-unnamed-dynamic-imports.js b/packages/eslint-plugin-shopify/lib/rules/webpack/no-unnamed-dynamic-imports.js @@ -28,6 +28,23 @@ function hasLineChunkNameComment(comments) { .find(isChunkNameComment); } +function generateReport(node, comments) { + const chu...
1
diff --git a/scss/layout/_footer.scss b/scss/layout/_footer.scss //Footer variables $siimple-footer-light-text: siimple-default-color("dark", "light"); -$siimple-footer-dark-text: rgba($siimple-white, 0.8); +$siimple-footer-dark-text: rgba($siimple-default-white, 0.8); //Footer class .siimple-footer { @@ -105,7 +105,7 ...
1
diff --git a/utils/widgets/bar.js b/utils/widgets/bar.js @@ -19,7 +19,8 @@ const defaultChart = { type: 'linear', range: 'height', domain: { data: 'table', field: 'y' }, - nice: true + nice: true, + zero: false } ], axes: [ @@ -55,7 +56,7 @@ const defaultChart = { x: { scale: 'x', field: 'x' }, width: { scale: 'x', ban...
7
diff --git a/lib/recurly/apple-pay.js b/lib/recurly/apple-pay.js import Emitter from 'component-emitter'; import errors from '../errors'; -import {CheckoutPricing} from './pricing/checkout'; -import {SubscriptionPricing} from './pricing/subscription'; +import {Pricing} from './pricing'; import {normalize} from '../util...
3
diff --git a/source/Integrate/Code_Examples/v2_Mail/nodejs.md b/source/Integrate/Code_Examples/v2_Mail/nodejs.md --- layout: page weight: 0 -title: Node.js +title: v2 Node.js navigation: show: true --- -{% github sendgrid/sendgrid-nodejs#usage Node.js %} We recommend using SendGrid Node.js, our client library, <a href=...
10
diff --git a/src/native-bindings.js b/src/native-bindings.js @@ -986,6 +986,7 @@ if (bindings.nativeMl) { const windowHandle = context.getWindowHandle(); nativeWindow.setCurrentWindowContext(windowHandle); + xrState.isPresenting[0] = 1; const halfWidth = width/2; xrState.renderWidth[0] = halfWidth; xrState.renderHeight...
12
diff --git a/components/map/index.jsx b/components/map/index.jsx @@ -113,6 +113,12 @@ class Map extends React.Component { }; render() { + let queryParam = ''; + + if (this.props.locations && this.props.locations[this.state.selected]) { + queryParam = this.props.locations[this.state.selected].address; + } + return ( <di...
1
diff --git a/docs/For Developers/Enable Proprietary Codecs.md b/docs/For Developers/Enable Proprietary Codecs.md @@ -10,7 +10,7 @@ As NW.js is based on Chromium, the media components are essentially the same. In the pre-built NW.js, following codecs are supported: ```none -theora,vorbis,vp8,pcm_u8,pcm_s16le,pcm_s24le,p...
3
diff --git a/lib/model/db/company.js b/lib/model/db/company.js @@ -55,7 +55,7 @@ module.exports = function(sequelize, DataTypes) { }, }, date_format : { - type : Sequelize.STRING, + type : DataTypes.STRING, allowNull : false, defaultValue : 'YYYY-MM-DD', },
1
diff --git a/app/views/admin/index.scala.html b/app/views/admin/index.scala.html <th>@LabelTable.countYesterdayLabels</th> </tr> <tr style="font-size: 90%;"> - <td style="padding-left: 30px">Curb Ramp - </th> + <td style="padding-left: 30px">Curb Ramp</td> <td>@LabelTable.countLabelsBasedOnType("CurbRamp")</td> <td>@La...
1
diff --git a/src/pages/index.js b/src/pages/index.js @@ -55,7 +55,7 @@ export const pageQuery = graphql` title } } - allMarkdownRemark { + allMarkdownRemark(sort: { fields: [frontmatter___date], order: DESC }) { edges { node { frontmatter {
0
diff --git a/lib/debugger/stepper.coffee b/lib/debugger/stepper.coffee @@ -21,13 +21,16 @@ class Stepper ed.onDidDestroy => s.destroy() @views = @views.filter((x) => x != s) + @setViewText s - setText: (@text) -> - for view in @views + setViewText: (view) -> view.clear() view.appendChild views.render span 'stepper-labe...
12
diff --git a/src/routes/app.js b/src/routes/app.js @@ -9,6 +9,7 @@ import * as segment from 'servers/segment/index.js' import * as sentry from 'servers/sentry/index.js' import {setupGuesstimateApi} from 'servers/guesstimate-api/constants.js' import * as elev from 'servers/elev/index.js' +import Modal from 'react-modal'...
12
diff --git a/embark-ui/src/reducers/index.js b/embark-ui/src/reducers/index.js @@ -226,7 +226,7 @@ function credentials(state = DEFAULT_CREDENTIALS_STATE, action) { } if (action.type === AUTHENTICATE[REQUEST]) { - return {...state, ...{authenticating: true}}; + return {...state, ...{authenticating: true, error: null}};...
12
diff --git a/physics-manager.js b/physics-manager.js @@ -67,6 +67,10 @@ physicsManager.addCookedConvexGeometry = (buffer, position, quaternion) => { return physicsId; }; +physicsManager.removeGeometry = physicsId => { + geometryManager.geometryWorker.removeGeometryPhysics(geometryManager.physics, physicsId); +}; + phys...
0
diff --git a/README.md b/README.md ## Smart Contracts | Package | Version | Description | -| :---------------------------------------- | :------------------------------------------------------------------------------------------------------------ | :------------------------ | -| [`@airswap/swap`](/core/swap) | [![npm](...
3
diff --git a/player/js/elements/htmlElements/HCompElement.js b/player/js/elements/htmlElements/HCompElement.js @@ -18,6 +18,8 @@ HCompElement.prototype.createContainerElements = function(){ if(this.data.hasMask){ this.svgElement.setAttribute('width',this.data.w); this.svgElement.setAttribute('height',this.data.h); - } ...
12
diff --git a/source/views/controls/RichTextView.js b/source/views/controls/RichTextView.js @@ -169,6 +169,7 @@ const RichTextView = Class({ }.property(), editor: null, + editorId: undefined, editorClassName: '', styles: null, blockDefaults: null, @@ -292,6 +293,7 @@ const RichTextView = Class({ draw ( layer, Element, e...
0
diff --git a/edit.js b/edit.js @@ -187,6 +187,36 @@ const HEIGHTFIELD_SHADER = { return min(min(a3.x, a3.y), a3.z); } + vec4 fourTapSample( + vec2 tileOffset, + vec2 tileUV, + vec2 tileSize, + sampler2D atlas + ) { + //Initialize accumulators + vec4 color = vec4(0.0, 0.0, 0.0, 0.0); + float totalWeight = 0.0; + + for(i...
0
diff --git a/src/web/containers/Login/Login.jsx b/src/web/containers/Login/Login.jsx -import classNames from 'classnames'; +import cx from 'classnames'; +import qs from 'qs'; import React, { PureComponent } from 'react'; import { withRouter, Redirect } from 'react-router-dom'; import Anchor from '../../components/Ancho...
7
diff --git a/shaders.js b/shaders.js @@ -855,6 +855,9 @@ const highlightMaterial = new THREE.ShaderMaterial({ // polygonOffsetUnits: 1, }); +const selectMaterial = highlightMaterial.clone(); +selectMaterial.uniforms.uColor.value = new THREE.Color(0x7e57c2); + const damageMaterial = new THREE.ShaderMaterial({ uniforms: ...
0
diff --git a/en/setup/cron_jobs.md b/en/setup/cron_jobs.md @@ -30,7 +30,7 @@ You can also limit the number of contacts to process per script execution using **To keep campaigns updated with applicable contacts:** ``` -php /path/to/mautic/app/console mautic:campaigns:rebuild +php /path/to/mautic/app/console mautic:campa...
4
diff --git a/packages/node_modules/@node-red/nodes/core/function/10-switch.js b/packages/node_modules/@node-red/nodes/core/function/10-switch.js @@ -177,11 +177,17 @@ module.exports = function(RED) { getV1(node,msg,rule,state.hasParts, (err,value) => { if (err) { + // This only happens if v1 is an invalid JSONata expr ...
9
diff --git a/CommentFlagsHelper.user.js b/CommentFlagsHelper.user.js // @description Always expand comments (with deleted) and highlight expanded flagged comments, Highlight common chatty and rude keywords // @homepage https://github.com/samliew/SO-mod-userscripts // @author @samliew -// @version 3.3.6 +// @version 3.3...
8
diff --git a/js/userscripts.js b/js/userscripts.js @@ -14,11 +14,11 @@ function parseTampermonkeyFeatures (content) { var isInFeatures = false for (var i = 0; i < lines.length; i++) { - if (lines[i] === '// ==UserScript==') { + if (lines[i].trim() === '// ==UserScript==') { isInFeatures = true continue } - if (lines[i]...
9
diff --git a/packages/react-jsx-highcharts/package.json b/packages/react-jsx-highcharts/package.json "uuid": "^3.2.1" }, "peerDependencies": { - "highcharts": "^5.0.0 || ^6.0.0", + "highcharts": "^5.0.0 || ^6.0.0 || ^7.0.0", "react": "^16.0.0", "react-dom": "^16.0.0", "prop-types": "^15.0.0"
11
diff --git a/lib/waterline.js b/lib/waterline.js @@ -164,10 +164,10 @@ module.exports = function ORM() { // Set the attributes and schema values using the normalized versions from // Waterline-Schema where everything has already been processed. - var schemaVersion = internalSchema[modelDef.prototype.identity.toLowerCas...
2
diff --git a/articles/rules/current/index.md b/articles/rules/current/index.md @@ -326,5 +326,8 @@ For a list of currently supported sandbox modules, see: [Modules Supported by th ## Keep reading ::: next-steps -* [Redirecting users from within rules](/rules/current/redirect) +* [Redirecting users from rules](/rules/cu...
0
diff --git a/src/content/en/android/custom-tabs/implementation-guide/index.md b/src/content/en/android/custom-tabs/implementation-guide/index.md @@ -3,7 +3,7 @@ book_path: /web/android/_book.yaml description: Implementation Guide for Custom Tabs. {# wf_published_on: 2020-02-04 #} -{# wf_updated_on: 2020-06-17 #} +{# wf...
7
diff --git a/js/embark.js b/js/embark.js @@ -28,11 +28,9 @@ EmbarkJS.Contract = function(options) { ContractClass = new this.web3.eth.Contract(this.abi, this.address); ContractClass.setProvider(this.web3.currentProvider); ContractClass.options.data = this.code; - + ContractClass = this.web3.eth.contract(this.abi); retu...
1
diff --git a/content/intro-to-storybook/vue/es/get-started.md b/content/intro-to-storybook/vue/es/get-started.md @@ -15,7 +15,7 @@ Necesitaremos seguir algunos pasos para configurar el proceso de build de nuestr ```bash # Create our application, using a preset that contains jest: -npx -p @vue/cli vue create taskbox --p...
1
diff --git a/src/UnitTests/Core/Automation/CurrencyUpdateTests/IsTimeToRunShould.cs b/src/UnitTests/Core/Automation/CurrencyUpdateTests/IsTimeToRunShould.cs using DevChatter.Bot.Core.Systems.Chat; using Moq; using System.Collections.Generic; +using DevChatter.Bot.Core.Settings; using UnitTests.Fakes; using Xunit; @@ -1...
1
diff --git a/token-metadata/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/metadata.json b/token-metadata/0x744d70FDBE2Ba4CF95131626614a1763DF805B9E/metadata.json "symbol": "SNT", "address": "0x744d70FDBE2Ba4CF95131626614a1763DF805B9E", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/test/jasmine/tests/sankey_test.js b/test/jasmine/tests/sankey_test.js @@ -1318,7 +1318,7 @@ describe('sankey tests', function() { .then(done, done.fail); }); - it('should persist the position of every nodes after drag in attributes nodes.(x|y)', function(done) { + it('@flaky should persist the position of ...
0
diff --git a/lib/shared/addon/components/cluster-driver/driver-amazoneks/component.js b/lib/shared/addon/components/cluster-driver/driver-amazoneks/component.js @@ -189,7 +189,7 @@ export default Component.extend(ClusterDriver, { }, }, - publicIpChanged: observer('config.associateWorkerNodePublicIp', function() { + pub...
3
diff --git a/packages/splitio-adapter/modules/adapter/adapter.js b/packages/splitio-adapter/modules/adapter/adapter.js @@ -54,13 +54,13 @@ const ensureUser = user => ({ ...user, }); -const initializeClient = (authorizationKey, user, params) => { +const initializeClient = (authorizationKey, user, options) => { const fac...
10
diff --git a/app/modules/handler/containers/Prompt.js b/app/modules/handler/containers/Prompt.js @@ -146,7 +146,6 @@ class PromptContainer extends Component<Props> { const { response } = prompt; - if (!blockchain) return false; const loading = (system.ESRURI === 'PENDING' || system.ESRURIBUILD === 'PENDING'); const sho...
11
diff --git a/tests/e2e/specs/dashboard/notifications.test.js b/tests/e2e/specs/dashboard/notifications.test.js @@ -73,37 +73,4 @@ describe( 'core site notifications', () => { expect( hasTestNotification ).toStrictEqual( false ); } ); } ); - describe( 'when not using proxy', () => { - beforeAll( async () => { - await ac...
2
diff --git a/src/panel/poi_panel.js b/src/panel/poi_panel.js @@ -4,6 +4,7 @@ import Store from '../adapters/store'; import PoiBlocContainer from './poi_bloc/poi_bloc_container'; import UrlState from '../proxies/url_state'; import HotLoadPoi from '../adapters/poi/hotload_poi'; +import SearchInput from '../ui_components/...
12
diff --git a/src/components/tooltip/Tooltip.js b/src/components/tooltip/Tooltip.js @@ -16,12 +16,20 @@ export function tip(props) { let tooltipEl = React.createElement(Tooltip, props); ReactDOM.render(tooltipEl, tooltipWrapper); + let updateTooltip = (newProps) => { + props = { ...props, ...newProps }; + ReactDOM.rende...
7
diff --git a/angular/projects/spark-angular/src/lib/components/sprk-card/sprk-card.component.ts b/angular/projects/spark-angular/src/lib/components/sprk-card/sprk-card.component.ts @@ -136,7 +136,7 @@ export class SprkCardComponent { * The available values are `base`, `teaser`, and `teaserHeading`. */ @Input() - cardTy...
3
diff --git a/lang/strings/en-US.json b/lang/strings/en-US.json "DG.ToolButtonData.guideMenu.showGuide": "Show Guide", "DG.ToolButtonData.help.title": "Help", "DG.ToolButtonData.help.toolTip": "Help for CODAP, learn about CODAP project", + "DG.ToolButtonData.pluginMenu.title": "Plugins", + "DG.ToolButtonData.pluginMenu....
12
diff --git a/app/components/user/graphql/results.js b/app/components/user/graphql/results.js -import { window } from 'global'; +let cachedResults = null; export function setCachedResults(output, performance) { - return window._graphQLExplorerCachedResults = { + return cachedResults = { output: output, performance: perf...
4
diff --git a/lib/core/engine.js b/lib/core/engine.js @@ -204,8 +204,6 @@ class Engine { self.web3.version.getWhisper(function (err, version) { if (err) { return cb({name: 'Whisper', status: 'off'}); - } else if (version >= 5) { - return cb({name: 'Whisper (version ' + version + ') - unsupported', status: 'warn'}); } el...
2
diff --git a/articles/universal-login/index.md b/articles/universal-login/index.md @@ -14,7 +14,7 @@ useCase: customize-hosted-pages --- # Auth0 Universal Login -Auth0's Universal Login is the most secure way to authenticate users for your applications. Universal Login centers around your Auth0 login page. The login pa...
2
diff --git a/stubs/defaultConfig.stub.js b/stubs/defaultConfig.stub.js @@ -453,7 +453,6 @@ module.exports = { maxWidth: ['responsive'], minHeight: ['responsive'], minWidth: ['responsive'], - negativeMargin: ['responsive'], objectFit: ['responsive'], objectPosition: ['responsive'], opacity: ['responsive'],
2
diff --git a/test/configuration/client_metadata.test.js b/test/configuration/client_metadata.test.js @@ -204,9 +204,9 @@ describe('Client metadata validation', () => { context('contacts', function () { mustBeArray(this.title); - allows(this.title, ['developer@example.com', 'info@example.com']); + allows(this.title, ['d...
11
diff --git a/client/src/components/Feed/StyledAccordion.js b/client/src/components/Feed/StyledAccordion.js @@ -29,6 +29,7 @@ export const FilterAccordionPanel = styled(Accordion.Panel)` .am-accordion-header { display: flex !important; font-weight: bold !important; + font-size: ${theme.typography.size.large} !important;...
4
diff --git a/packages/frontend/src/utils/wallet.js b/packages/frontend/src/utils/wallet.js @@ -10,10 +10,9 @@ import * as Config from '../config'; import { finishAccountSetup, makeAccountActive, - redirectTo, - setLedgerTxSigned, - showLedgerModal + redirectTo } from '../redux/actions/account'; +import { actions as led...
4
diff --git a/src/main.js b/src/main.js @@ -7,7 +7,7 @@ function gltf_rv(canvasId, index, onRendererReady = undefined, basePath = "", initialModel = "BoomBox", - envMap = "Papermill Ruins E (LDR)") + envMap = "Courtyard of the Doge's palace") { const canvas = document.getElementById(canvasId); if (!canvas)
12
diff --git a/js/meta.js b/js/meta.js @@ -36,14 +36,6 @@ THREE.Material.prototype.motoSetup = function() { return this; }; -THREE.MeshFaceMaterial.prototype.mSet = function(idx, mat) { - this.materials[idx] = mat; -}; - -THREE.MeshFaceMaterial.prototype.mVisible = function(idx, show) { - this.materials[idx] = show ? thi...
14
diff --git a/app/views/admin/shared/_org_subheader.html.erb b/app/views/admin/shared/_org_subheader.html.erb Groups </a> </li> - <% if current_user.has_feature_flag?('notifications') %> <li class="Filters-typeItem"> <a href="<%= current_user_url('organization_notifications_admin') %>" class="Filters-typeLink <%= 'is-se...
2
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -102,6 +102,7 @@ PRs are welcome! Please do open an issue to discuss first if it's a big feature, - [ ] dashboard: support for right-to-left languages (Arabic, Hebrew) (@arturi) - [ ] plugins: Transformations, cropping, filters for images, study https://github.com/MattKetmo/d...
0
diff --git a/packages/neutrine/src/core/typography/index.js b/packages/neutrine/src/core/typography/index.js @@ -12,12 +12,16 @@ import "@siimple/css/scss/typography/small.scss"; //Export blockquote component export const Blockquote = function (props) { - return helpers.createMergedElement("div", props, "siimple-blockq...
1
diff --git a/src/dataviews/histogram-dataview/histogram-data-model.js b/src/dataviews/histogram-dataview/histogram-data-model.js @@ -94,6 +94,15 @@ module.exports = Model.extend({ this.set('aggregation', 'auto', { silent: true }); this._resetStartEndCache(); }); + + this.on('error', function (model, response, options) ...
9
diff --git a/.storybook/storybook-data.js b/.storybook/storybook-data.js @@ -181,20 +181,6 @@ module.exports = [ }, }, }, - { - id: 'adsense-module--estimate-earnings', - kind: 'AdSense Module', - name: 'Estimate Earnings', - story: 'Estimate Earnings', - parameters: { - fileName: './stories/module-adsense.stories.js',...
2
diff --git a/bin/oref0-setup.sh b/bin/oref0-setup.sh @@ -283,6 +283,7 @@ echo # This section is echoing (commenting) back the options you gave it during the interactive setup script. # The "| tee -a /tmp/oref0-runagain.sh" part is also appending it to a file so you can run it again more easily in the future. +# create ...
1
diff --git a/articles/libraries/auth0js/index.md b/articles/libraries/auth0js/index.md @@ -13,10 +13,6 @@ Auth0.js is a client-side library for [Auth0](http://auth0.com). Using auth0.js This document covers the most up-to-date version of auth0.js - version 8. If you are already using version 7, you can take a look at t...
2
diff --git a/lib/properties.js b/lib/properties.js @@ -218,7 +218,10 @@ internals.properties.prototype.parsePropertyMetadata = function (property, name, internals.convertRules(property, describe.rules, [ 'unit' ], 'x-format'); - property.example = Hoek.reach(joiObj, '_examples.0'); + let exampleObj = Hoek.reach(joiObj,...
1
diff --git a/review.js b/review.js @@ -2,10 +2,24 @@ const express = require('express') const app = express() const path = require('path') +// Get config vars for Heroku apps +var herokuApp = process.env.HEROKU_APP + +console.log('herokuApp var:' + herokuApp) + // Define the port to run on app.set('port', (process.env....
12
diff --git a/src/core.js b/src/core.js @@ -33,7 +33,7 @@ const { GamepadButton, getGamepads, getAllGamepads, -} = require('vr-display')(THREE); +} = require('./VR.js'); const BindingsModule = require('./bindings'); const {defaultCanvasSize} = require('./constants');
4
diff --git a/physics-manager.js b/physics-manager.js +/* +physics manager is the interface to the physics engine. +it contains code for character capsules and world simulation. +*/ + import * as THREE from 'three'; import uiManager from './ui-manager.js'; import {getRenderer, camera, dolly} from './renderer.js';
0
diff --git a/src/components/appNavigation/AppNavigation.js b/src/components/appNavigation/AppNavigation.js // @flow import { createSwitchNavigator } from '@react-navigation/core' -import { Icon, normalize } from 'react-native-elements' +import { normalize } from 'react-native-elements' import React from 'react' import ...
2
diff --git a/src/js/Helpers.js b/src/js/Helpers.js @@ -1999,13 +1999,11 @@ export default { }, getProfileLink(pub) { - console.log(pub); return 'https://iris.to/profile/' + encodeURIComponent(pub); }, followChatLink(str) { if (str && str.indexOf('http') === 0) { - if (str.length > 30) { const s = str.split('?'); let ch...
9
diff --git a/src/patterns/components/inputs/collection.yaml b/src/patterns/components/inputs/collection.yaml @@ -434,7 +434,7 @@ variableTable: default: 700 description: The font weight of text icons inside input elements. $sprk-text-input-has-text-icon-padding: - default: 12px 13px 12px 37px + default: 0 0 1px 37px; d...
3
diff --git a/test/component.spec.js b/test/component.spec.js @@ -710,7 +710,7 @@ describe("Component", function () { it("components use s-is", function () { var Label = san.defineComponent({ - template: `<span title="{{text}}">{{text}}</span>`, + template: '<span title="{{text}}">{{text}}</span>', initData() { return {...
14
diff --git a/app/assets/src/components/views/compare/SamplesHeatmapView/SamplesHeatmapView.jsx b/app/assets/src/components/views/compare/SamplesHeatmapView/SamplesHeatmapView.jsx @@ -609,10 +609,26 @@ class SamplesHeatmapView extends React.Component { loadingFailed: true, }); + const logSingleError = e => { logError({ ...
7
diff --git a/test/api/core/sandbox/sandbox.test.js b/test/api/core/sandbox/sandbox.test.js -var +'use strict'; + +const should = require('should'), rewire = require('rewire'), InternalError = require('kuzzle-common-objects').errors.InternalError, @@ -6,21 +8,21 @@ var Sandbox = rewire('../../../../lib/api/core/sandbox'...
12
diff --git a/javascript/stimulus_reflex.js b/javascript/stimulus_reflex.js @@ -378,6 +378,7 @@ if (!document.stimulusReflexInitialized) { data: promise && promise.data } + setTimeout(() => { if (promise) { delete promises[reflexId] promise.resolve(response) @@ -385,6 +386,7 @@ if (!document.stimulusReflexInitialized) {...
11
diff --git a/docs/reference.rst b/docs/reference.rst @@ -817,7 +817,7 @@ Run automation at 10X the speed of normal human user. Read caveats at Advanced c -quiet or -q ******************** -Runs without output to command prompt except for explicit output (echo, show, check steps and errors etc). +Runs without output to ...
7
diff --git a/src/client/js/components/PageEditor/OptionsSelector.jsx b/src/client/js/components/PageEditor/OptionsSelector.jsx @@ -49,7 +49,7 @@ class OptionsSelector extends React.Component { this.onChangeKeymapMode = this.onChangeKeymapMode.bind(this); this.onClickStyleActiveLine = this.onClickStyleActiveLine.bind(th...
10
diff --git a/src/lib/gundb/__tests__/UserStorage.js b/src/lib/gundb/__tests__/UserStorage.js @@ -682,9 +682,36 @@ describe('getOperationType', () => { }) describe('users index', () => { - beforeAll(async () => { + const unavailableProfile = { + email: 'username@unavailable.com', + mobile: '22222222220', + username: 'un...
0
diff --git a/webpack.config.js b/webpack.config.js @@ -9,9 +9,10 @@ module.exports = { entry: './js/mojs.babel.js', output: { filename: 'mo.js', - path: path.join(__dirname, 'build'), + path: path.resolve(__dirname, 'build'), publicPath: 'build/', library: 'mojs', + libraryExport: 'default', libraryTarget: 'umd', umdNa...
7
diff --git a/src/libs/Pusher/pusher.js b/src/libs/Pusher/pusher.js @@ -358,12 +358,13 @@ function registerCustomAuthorizer(authorizer) { * Disconnect from Pusher */ function disconnect() { - if (socket) { - socket.disconnect(); - socket = null; - } else { + if (!socket) { console.error('[Pusher] Attempting to disconnec...
13
diff --git a/index.html b/index.html <title>Iris</title> + <base href="https://cdn.rawgit.com/jaedb/Iris/master/mopidy_iris/static/" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta content="width=device-width, initial-scale=1" name="viewport" /> - <meta name="mobile-web-app-capable" conte...
12
diff --git a/js/igvxhr.js b/js/igvxhr.js @@ -206,7 +206,7 @@ async function loadURL(url, options) { resolve(xhr.response); } } else if ((typeof gapi !== "undefined") && - ((xhr.status === 404 || xhr.status === 401) && + ((xhr.status === 404 || xhr.status === 401 || xhr.status === 403) && google.isGoogleURL(url)) && !op...
9
diff --git a/src/components/validationStatus.vue b/src/components/validationStatus.vue <span class="validation-container__list--key">{{ error.errorKey }}</span> <div>{{ error.message }}</div> </span> - <span class="validation-container__list--errorCategory" - :style="[ error.category === 'error' - ? { 'background-color...
14
diff --git a/fixtures/flight/config/webpack.config.js b/fixtures/flight/config/webpack.config.js @@ -608,7 +608,7 @@ module.exports = function(webpackEnv) { // This is necessary to emit hot updates (CSS and Fast Refresh): isEnvDevelopment && new webpack.HotModuleReplacementPlugin(), // Experimental hot reloading for Re...
10
diff --git a/samples/csharp_dotnetcore/49.qnamaker-all-features/Startup.cs b/samples/csharp_dotnetcore/49.qnamaker-all-features/Startup.cs using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Bot.Builder; +using Microsoft.Bot.Builder.Dialogs; using Microsoft.Bot.Builder.Integration.As...
0
diff --git a/src/handlers/choosingArticle.js b/src/handlers/choosingArticle.js @@ -117,7 +117,6 @@ export default async function choosingArticle(params) { ec: 'Article', ea: 'Selected', el: selectedArticleId, - dt: data.selectedArticleText, }); const count = {};
1
diff --git a/src/mixins/highlightConfig.js b/src/mixins/highlightConfig.js @@ -78,9 +78,13 @@ export default { } }, setBorderOutline(borderOutline) { - this.currentBorderOutline ? this.shapeView.unhighlight(this.shapeBody, this.currentBorderOutline) : null; + if (this.currentBorderOutline) { + this.shapeView.unhighligh...
7
diff --git a/backend/internal/certificate.js b/backend/internal/certificate.js @@ -11,7 +11,7 @@ const debug_mode = process.env.NODE_ENV !== 'production' || !!process.env. const le_staging = process.env.NODE_ENV !== 'production'; const internalNginx = require('./nginx'); const internalHost = require('./host'); -const c...
4
diff --git a/app/api/apiConfig.js b/app/api/apiConfig.js @@ -41,7 +41,7 @@ export const settingsAPIs = { {url: "wss://eu.openledger.info/ws", location: "Berlin, Germany"}, {url: "wss://bitshares.nu/ws", location: "Stockholm, Sweden"}, {url: "wss://bit.btsabc.org/ws", location: "Hong Kong"}, - {url: "wss://bts.ai.la/ws"...
14
diff --git a/app/src/renderer/components/common/ActionModal.vue b/app/src/renderer/components/common/ActionModal.vue @@ -131,7 +131,7 @@ export default { selectedSignMethod: `local`, signMethods: [ { - key: `(Unsafe) Local Account`, + key: `Account Password (Unsafe)`, value: `local` } // {
3
diff --git a/avatars/avatars.js b/avatars/avatars.js @@ -611,11 +611,11 @@ const _getLerpFn = isPosition => isPosition ? THREE.Vector3.prototype.lerp : THR const animationMappingConfig = [ new AnimationMapping('mixamorigHips.position', 'Hips', false, true), new AnimationMapping('mixamorigHips.quaternion', 'Hips', false...
0
diff --git a/packages/pf3-component-mapper/src/form-fields/switch-field.js b/packages/pf3-component-mapper/src/form-fields/switch-field.js @@ -53,6 +53,14 @@ class Switch extends React.Component { <label className={ `pf3-switch${disabled || isReadOnly ? ' disabled' : ''}${bsSize === 'mini' || bsSize === 'mn' ? ' mini' ...
11
diff --git a/tools/metadata/lib/index.ts b/tools/metadata/lib/index.ts @@ -129,9 +129,7 @@ class TokenMetadata { } // given a token address, try to fetch name, symbol, and decimals from the contract and store it in memory tokens array - public crawlToken = async ( - searchAddress: string - ): Promise<NormalizedToken> =...
10
diff --git a/assets/src/edit-story/components/panels/layer/layer.js b/assets/src/edit-story/components/panels/layer/layer.js @@ -100,6 +100,9 @@ const BackgroundDescription = styled.div` const LayerContentContainer = styled.div` margin-right: 8px; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; `;...
7
diff --git a/scenes/street.scn b/scenes/street.scn "quaternion": [0, 0, 0, 1], "start_url": "https://avaer.github.io/poster/.metaversefile" }, - { - "position": [-1, 1, -1], - "quaternion": [0, 0, 0, 1], - "start_url": "https://webaverse.github.io/arrow-loader/" - }, { "position": [-5, 4, -6], "quaternion": [
2