code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/src/tilemap/TilemapParser.js b/src/tilemap/TilemapParser.js @@ -265,6 +265,9 @@ Phaser.TilemapParser = {
{
var object = slice(objectGroup.objects[v], ['name', 'type', 'x', 'y', 'visible', 'rotation', 'properties']);
+ object.x += relativePosition.x
+ object.y += relativePosition.y
+
// Parse the polygon in... | 9 |
diff --git a/azure-pipelines.yml b/azure-pipelines.yml @@ -6,6 +6,12 @@ trigger:
- azure-pipelines
- release-*
+# variables
+variables:
+ GH_TOKEN: $(GH_TOKEN)
+ WIN_CSC_KEY_PASSWORD: $(WIN_CSC_KEY_PASSWORD)
+ WIN_CSC_LINK: $(WIN_CSC_LINK)
+
# describe each job seperately
jobs:
- job: Linux
| 12 |
diff --git a/src/components/molecules/SfAlert/SfAlert.scss b/src/components/molecules/SfAlert/SfAlert.scss @@ -8,13 +8,13 @@ $sf-alert__text-margin : 0 !default;
$sf-alert__icon-padding-right : 0.625rem !default;
$sf-alert--info-background-color : $c-yellow-secondary !default;
-$sf-alert--info-color : $c-yellow-primary... | 14 |
diff --git a/package.json b/package.json "name": "find-and-replace",
"main": "./lib/find",
"description": "Find and replace within buffers and across the project.",
- "version": "0.206.3",
+ "version": "0.207.0",
"license": "MIT",
"activationCommands": {
"atom-workspace": [
| 6 |
diff --git a/articles/native-platforms/wpf-winforms/01-login.md b/articles/native-platforms/wpf-winforms/01-login.md @@ -41,7 +41,7 @@ There are three options to do the integration:
### Option 1: Auth0 Lock
-To start, we'd recommend using __Lock__. Here is a snippet of code to copy & paste on your project.
+To start, w... | 2 |
diff --git a/src/docs.mts b/src/docs.mts @@ -6,18 +6,41 @@ import flatmap from "unist-util-flatmap";
import { globby } from "globby";
import { join, dirname } from "path";
import { exec } from "child_process";
+// @ts-ignore
import prettier from "prettier";
-const verify = process.argv.includes("--verify");
+const SOUR... | 10 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/editor.js b/packages/node_modules/@node-red/editor-client/src/js/ui/editor.js @@ -2425,6 +2425,7 @@ RED.editor = (function() {
el = $("<div>").appendTo(el).addClass("red-ui-editor-text-container")[0];
var editor = ace.edit(el);
editor.setTheme("ace/th... | 2 |
diff --git a/src/utils/editor.ts b/src/utils/editor.ts @@ -45,18 +45,23 @@ export const generatePermlink = (title, random = false) => {
};
export const extractWordAtIndex = (text:string, index:number) => {
+ const END_REGEX = /[\s,]/
let word = '';
- for(let i = index; i >= 0 && text[i] !== ' '; i--){
+ for(let i = ind... | 7 |
diff --git a/package.json b/package.json "name": "@mojs/core",
"version": "0.288.2",
"description": "The motion graphics toolbelt for the web",
+ "source": "src/mojs.babel.js",
"main": "dist/mo.umd.js",
+ "browser": "dist/mo.umd.js",
"unpkg": "dist/mo.umd.js",
"scripts": {
"lint": "eslint \"**/*.js\"",
| 0 |
diff --git a/test/unit/specs/components/common/TmSessionSignIn.spec.js b/test/unit/specs/components/common/TmSessionSignIn.spec.js @@ -83,13 +83,35 @@ describe(`TmSessionSignIn`, () => {
expect(wrapper.vm.error).toBe(`The provided username or password is wrong.`)
})
+ it(`should show the only account that exists`, () =... | 7 |
diff --git a/token-metadata/0x3845badAde8e6dFF049820680d1F14bD3903a5d0/metadata.json b/token-metadata/0x3845badAde8e6dFF049820680d1F14bD3903a5d0/metadata.json "symbol": "SAND",
"address": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/articles/support/index.md b/articles/support/index.md @@ -52,3 +52,17 @@ The Auth0 Support Center offers ticketed support, where dedicated support specia
Customers with an Enterprise subscription plan receive extended support hours (including an option to add 24/7 availability) with quicker response times,... | 0 |
diff --git a/lib/node/index.js b/lib/node/index.js @@ -108,6 +108,15 @@ exports.serialize = {
exports.parse = require('./parsers');
+
+/**
+ * Default buffering map. Can be used to set certain
+ * response types to buffer/not buffer.
+ *
+ * superagent.buffer['application/xml'] = true;
+ */
+exports.buffer = {};
+
/**
... | 11 |
diff --git a/_includes/meshery.html b/_includes/meshery.html </tr>
<tr>
<td><a href="https://github.com/layer5io/meshery-maesh">
- <img src='https://raw.githubusercontent.com/containous/maesh/master/docs/content/assets/img/maesh.png' alt='Maesh Service Mesh' class="adapter-logo">Meshery adapter for Maesh</a>
+ <img src... | 1 |
diff --git a/app/builtin-pages/views/library-view.js b/app/builtin-pages/views/library-view.js @@ -1379,26 +1379,42 @@ async function onCreateDraft () {
window.location = `beaker://library/${fork.url}`
}
-async function onDeleteDraft (e, draft) {
+async function onDeleteDraft (e, draft, confirm = true) {
e.stopPropagat... | 11 |
diff --git a/packages/fether-react/src/Send/Sent/Sent.js b/packages/fether-react/src/Send/Sent/Sent.js @@ -20,6 +20,13 @@ const MIN_CONFIRMATIONS = 6;
@inject('sendStore')
@observer
class Sent extends Component {
+ componentWillMount () {
+ // If we refresh on this page, return to homepage
+ if (!this.props.sendStore.t... | 1 |
diff --git a/Bundle/CoreBundle/Resources/views/Widget/Form/new_partial.html.twig b/Bundle/CoreBundle/Resources/views/Widget/Form/new_partial.html.twig -<div class="v-collapse" id="widget-{{ id }}-tab-pane" data-flag="v-collapse" data-group="tab-widget-quantum" data-quantum="{{ quantum }}" {% if forms.active is defined ... | 7 |
diff --git a/src/pages/Group/Index.js b/src/pages/Group/Index.js @@ -158,6 +158,8 @@ class Main extends PureComponent {
this.handleTimers(
'timer',
() => {
+ this.fetchAppDetailState();
+ this.fetchAppDetail();
this.loadTopology(true);
},
10000
@@ -172,6 +174,8 @@ class Main extends PureComponent {
this.handleTimers(
'... | 1 |
diff --git a/packages/bitcore-node/src/modules/ripple/api/event-adapter.ts b/packages/bitcore-node/src/modules/ripple/api/event-adapter.ts import { BaseModule } from '../..';
import { RippleStateProvider } from './csp';
import { RippleAPI } from 'ripple-lib';
+import { StateStorage } from '../../../models/state';
expor... | 12 |
diff --git a/server/preprocessing/other-scripts/linkedcat.R b/server/preprocessing/other-scripts/linkedcat.R @@ -105,7 +105,6 @@ build_query <- function(query, params, limit){
# additional filter params
pub_year <- paste0("pub_year:", "[", params$from, " TO ", params$to, "]")
- params$include_content_type <- c('Bericht... | 2 |
diff --git a/token-metadata/0x45804880De22913dAFE09f4980848ECE6EcbAf78/metadata.json b/token-metadata/0x45804880De22913dAFE09f4980848ECE6EcbAf78/metadata.json "symbol": "PAXG",
"address": "0x45804880De22913dAFE09f4980848ECE6EcbAf78",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/src/tagui b/src/tagui @@ -34,7 +34,7 @@ if [ -f "$online_reponame" ]; then if grep -iq "404\|400" "$online_reponame"; th
fi;fi;fi;fi; set -- "$online_flowname" "${@:2}"; fi
# enter live mode directly without user creating dummy file
-if [ "$1" = "live" ]; then echo live > "$1.tag" ; set -- "$1.tag" "${@:2}... | 7 |
diff --git a/src/scripts/interactive-video.js b/src/scripts/interactive-video.js @@ -123,6 +123,7 @@ function InteractiveVideo(params, id, contentData) {
exitFullscreen: 'Exit fullscreen',
summary: 'Open summary dialog',
bookmarks: 'Bookmarks',
+ endscreen: 'Submit Screen',
endscreens: 'Submit Screens',
defaultAdaptivi... | 0 |
diff --git a/assets/js/components/optin.js b/assets/js/components/optin.js @@ -58,13 +58,10 @@ class OptIn extends Component {
toggleTracking( checked );
if ( checked ) {
- global.console.warn( 'trackEvent:before', 'tracking_plugin', this.props.optinAction );
await trackEvent( 'tracking_plugin', this.props.optinAction ... | 2 |
diff --git a/src/angular/projects/spark-core-angular/src/lib/components/sprk-accordion-item/sprk-accordion-item.component.spec.ts b/src/angular/projects/spark-core-angular/src/lib/components/sprk-accordion-item/sprk-accordion-item.component.spec.ts @@ -23,9 +23,7 @@ describe('SparkAccordionItemComponent', () => {
compo... | 3 |
diff --git a/index.d.ts b/index.d.ts @@ -316,7 +316,7 @@ declare namespace Eris {
title?: string;
description?: string;
url?: string;
- timestamp?: string;
+ timestamp?: Date | string;
color?: number;
footer?: { text: string; icon_url?: string; proxy_icon_url?: string };
image?: { url?: string; proxy_url?: string; heig... | 11 |
diff --git a/src/pages/devtools/themes/moonlight/moonlight.js b/src/pages/devtools/themes/moonlight/moonlight.js if(!ConfigManager.info_pvp_info)
return;
console.debug("PvP Enemy List", data);
- const jpRankArr = ["","\u5143\u5e25","\u5927\u5c06","\u4e2d\u5c06","\u5c11\u5c06","\u5927\u4f50","\u4e2d\u4f50","\u65b0\u7c73... | 1 |
diff --git a/token-metadata/0x0128E4FcCf5EF86b030b28f0a8A029A3c5397a94/metadata.json b/token-metadata/0x0128E4FcCf5EF86b030b28f0a8A029A3c5397a94/metadata.json "symbol": "FSP",
"address": "0x0128E4FcCf5EF86b030b28f0a8A029A3c5397a94",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/grails-app/domain/streama/Video.groovy b/grails-app/domain/streama/Video.groovy @@ -58,14 +58,8 @@ class Video implements SimpleInstance{
Episode episode = (Episode) this
- Video nextEpisode = episode.show.episodes?.find{
- return (it.episode_number == episode.episode_number+1 && it.season_number == episod... | 1 |
diff --git a/token-metadata/0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB/metadata.json b/token-metadata/0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB/metadata.json "symbol": "GRAP",
"address": "0xC8D2AB2a6FdEbC25432E54941cb85b55b9f152dB",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/protocols/peer/test/Peer-unit.js b/protocols/peer/test/Peer-unit.js @@ -42,6 +42,8 @@ contract('Peer Unit Tests', async accounts => {
.encodeABI()
mockSwap = await MockContract.new()
+
+ orders.setVerifyingContract(mockSwap.address)
}
before('deploy Peer', async () => {
@@ -325,7 +327,7 @@ contract('Peer U... | 12 |
diff --git a/content/intro-to-storybook/react/en/using-addons.md b/content/intro-to-storybook/react/en/using-addons.md @@ -69,7 +69,7 @@ import { withKnobs, object } from '@storybook/addon-knobs/react';
Next, within the `default` export of `Task.stories.js` file, add `withKnobs` to the `decorators` key:
-````javascript... | 1 |
diff --git a/plugins/networking/app/assets/javascripts/networking/plugin/subnets.coffee b/plugins/networking/app/assets/javascripts/networking/plugin/subnets.coffee @@ -208,7 +208,9 @@ class Subnets
$deleteButton = $('<a class="btn btn-danger btn-sm" href="#"><i class="fa fa-trash"></i></a>')
.appendTo($('<td class="sn... | 1 |
diff --git a/packages/core/notification.js b/packages/core/notification.js @@ -6,29 +6,9 @@ const pkgVersion = require('./package.json')
.slice(0, -1)
.join('.');
-const showPromo = function(promoVersion) {
- const lastpromoVersion = storage.get('promoVersion');
-
- storage.set('promoVersion', promoVersion);
-
- if (la... | 2 |
diff --git a/source/components/NumericInput.js b/source/components/NumericInput.js @@ -87,7 +87,6 @@ export default class NumericInput extends FormField {
const regex = /^[0-9.,]+$/;
let isValueRegular = regex.test(value);
let handledValue;
-
if (!isValueRegular && value !== '') {
// input contains invalid value
// e.g... | 9 |
diff --git a/sirepo/simulation_db.py b/sirepo/simulation_db.py @@ -1177,7 +1177,7 @@ def _validate_enum(val, sch_field_info, sch_enums):
if not type in sch_enums:
return
if str(val) not in map(lambda enum: str(enum[0]), sch_enums[type]):
- raise AssertionError(util.err(sch_enums, 'enum value {} not in schema', val))
+ ... | 7 |
diff --git a/src/lib/default-project/project.json b/src/lib/default-project/project.json "currentCostume": 0,
"costumes": [
{
- "assetId": "739b5e2a2435f6e1ec2993791b423146",
+ "assetId": "cd21514d0531fdffb22204e0ec5ed84a",
"name": "backdrop1",
- "bitmapResolution": 1,
- "md5ext": "739b5e2a2435f6e1ec2993791b423146.png"... | 14 |
diff --git a/articles/api/info.md b/articles/api/info.md @@ -8,7 +8,12 @@ section: apis
Auth0 exposes two APIs for developers to consume in their applications:
* **Authentication**: Handles identity-related tasks;
-* **Management**: Allows automation of Auth0 tasks such as user creation.
+* **Management**: Handles mana... | 0 |
diff --git a/core/options.js b/core/options.js @@ -283,7 +283,7 @@ Blockly.Options.parseThemeOptions_ = function(options) {
if (theme instanceof Blockly.Theme) {
return /** @type {!Blockly.Theme} */ (theme);
}
- return Blockly.Theme.defineTheme('builtin', theme);
+ return Blockly.Theme.defineTheme(theme.name || 'builti... | 4 |
diff --git a/src/pages/MetricDocs/Sections/GenericSection.js b/src/pages/MetricDocs/Sections/GenericSection.js @@ -11,7 +11,7 @@ import RenderMetrics from "components/MetricView";
import useResponsiveLayout from "hooks/useResponsiveLayout";
import useGenericAPI from "hooks/useGenericAPI";
import { capitalise } from "co... | 7 |
diff --git a/runtime.js b/runtime.js @@ -4,8 +4,9 @@ import {VOXLoader} from './VOXLoader.js';
// import {GLTFExporter} from './GLTFExporter.js';
import {getExt, mergeMeshes} from './util.js';
// import {bake} from './bakeUtils.js';
+import {rigManager} from './rig.js';
import {makeIconMesh, makeTextMesh} from './vr-ui... | 0 |
diff --git a/physics-manager.js b/physics-manager.js @@ -171,9 +171,12 @@ physicsManager.cookGeometry = (mesh) => {
const buffer = physx.physxWorker.cookGeometryPhysics(physx.physics, physicsMesh);
return buffer;
};
-physicsManager.cookGeometryAsync = async (mesh) => {
+physicsManager.cookGeometryAsync = async (mesh, {... | 0 |
diff --git a/src/traces/pie/attributes.js b/src/traces/pie/attributes.js @@ -187,13 +187,16 @@ module.exports = {
values: ['horizontal', 'radial', 'tangential', 'auto'],
dflt: 'auto',
editType: 'plot',
+
description: [
- 'Determines the orientation of text inside slices.',
- 'With *auto* the texts may automatically be'... | 3 |
diff --git a/source/views/RootView.js b/source/views/RootView.js @@ -55,6 +55,7 @@ const RootView = Class({
Array.prototype.slice.call( arguments, 1 ) );
// Node.DOCUMENT_NODE => 9.
+ const className = this.get( 'className' );
const nodeIsDocument = ( node.nodeType === 9 );
const doc = nodeIsDocument ? node : node.owne... | 12 |
diff --git a/lib/views/admin/security.html b/lib/views/admin/security.html <div class="form-group">
<label for="settingForm[security:registrationWhiteList]" class="col-xs-3 control-label">{{ t('The whitelist of registration permission E-mail address') }}</label>
<div class="col-xs-8">
- <textarea class="form-control" t... | 14 |
diff --git a/aws/cloudformation/util.go b/aws/cloudformation/util.go @@ -51,6 +51,7 @@ var cloudformationPollingTimeout = 3 * time.Minute
////////////////////////////////////////////////////////////////////////////////
type resourceProvisionMetrics struct {
+ resourceType string
logicalResourceID string
startTime time.... | 7 |
diff --git a/sparta_main.go b/sparta_main.go @@ -468,6 +468,9 @@ func MainEx(serviceName string,
switch OptionsGlobal.LogFormat {
case "text", "txt":
formatter = &logrus.TextFormatter{}
+ formatter = &logrus.TextFormatter{
+ DisableColors: (runtime.GOOS == "windows"),
+ }
prettyHeader = true
case "json":
formatter = &l... | 9 |
diff --git a/src/react/projects/spark-core-react/src/SprkTabs/SprkTabs.js b/src/react/projects/spark-core-react/src/SprkTabs/SprkTabs.js @@ -182,25 +182,32 @@ class SprkTabs extends Component {
...other
} = this.props;
+ const buttons = [];
+ const panels = [];
+
/*
* Loop through all the SprkTabsPanels and
* generate ... | 7 |
diff --git a/core/pipeline-driver/lib/tasks/task-runner.js b/core/pipeline-driver/lib/tasks/task-runner.js @@ -50,7 +50,8 @@ class TaskRunner {
getStatus() {
return {
jobId: this._jobId,
- active: this._active
+ active: this._active,
+ pipelineName: this.pipeline.name
};
}
| 0 |
diff --git a/Examples/UIExplorer/UIExplorerUnitTests/RCTAllocationTests.m b/Examples/UIExplorer/UIExplorerUnitTests/RCTAllocationTests.m @@ -144,8 +144,8 @@ RCT_EXPORT_METHOD(test:(__unused NSString *)a
(void)bridge;
}
- RCT_RUN_RUNLOOP_WHILE(weakModule);
- XCTAssertNil(weakModule, @"AllocationTestModule should have be... | 8 |
diff --git a/src/dev/fdm/Creality.CR-30 b/src/dev/fdm/Creality.CR-30 "G1 X200 E50 F800 ; extruder purge line",
"G1 Z0.3 ; shift belt away 0.3mm",
"G1 X0 E100 ; extruder purge line",
- "G1 Z2 E98 ; shift belt away 2mm, retract extruder",
- "G92 Z0 E-2 ; reset bed + extruder position",
+ "G92 Z0 E0 ; reset bed + extruder... | 3 |
diff --git a/src/core/operations/ToCaseInsensitiveRegex.mjs b/src/core/operations/ToCaseInsensitiveRegex.mjs @@ -51,36 +51,35 @@ class ToCaseInsensitiveRegex extends Operation {
}
// Example: [test] -> [[tT][eE][sS][tT]]
- input = preProcess(input);
+ return preProcess(input)
// Example: [A-Z] -> [A-Za-z]
- input = inp... | 14 |
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -25,9 +25,38 @@ body:
description: >
Clone repository https://github.com/primefaces/primefaces-test.git in order to reproduce your problem,
you'll have better chance to receive an answer and a solution and attach the GitHub Li... | 7 |
diff --git a/docs/src/pages/quasar-cli/developing-electron-apps/build-commands.md b/docs/src/pages/quasar-cli/developing-electron-apps/build-commands.md @@ -25,5 +25,35 @@ $ quasar build --mode electron
It builds your app for production and then uses electron-packager to pack it into an executable. Check how to configu... | 3 |
diff --git a/app/assets/src/components/ProjectSelection.jsx b/app/assets/src/components/ProjectSelection.jsx @@ -2,6 +2,8 @@ import React from 'react';
import axios from 'axios';
import $ from 'jquery';
import Samples from './Samples';
+import Nanobar from 'nanobar';
+
/**
@class ProjectSelection
@desc Creates react co... | 14 |
diff --git a/scripts/contractInteraction/contract_interaction.py b/scripts/contractInteraction/contract_interaction.py @@ -24,7 +24,8 @@ def main():
#addAdmin(contracts['LockedSOV'], contracts['VestingRegistry3'])
#setFeesController()
#withdrawFees()
- #replaceProtocolSettings()
+ replaceProtocolSettings()
+ deployAffi... | 5 |
diff --git a/src/core/Core.test.js b/src/core/Core.test.js @@ -256,10 +256,10 @@ describe('src/Core', () => {
const core = new Core()
core.use(AcquirerPlugin1)
- // const corePauseEventMock = jest.fn()
const coreCancelEventMock = jest.fn()
const coreStateUpdateEventMock = jest.fn()
- // core.on('pause-all', corePauseEv... | 0 |
diff --git a/Dockerfile b/Dockerfile -FROM ubuntu:bionic
+FROM ubuntu:cosmic
RUN \
# configure the "jhipster" user
@@ -8,7 +8,7 @@ RUN \
mkdir /home/jhipster/app && \
# install open-jdk 8
apt-get update && \
- apt-get install -y openjdk-8-jdk && \
+ apt-get install -y openjdk-11-jdk && \
# install utilities
apt-get ins... | 3 |
diff --git a/docs/05-configuration.md b/docs/05-configuration.md @@ -112,7 +112,7 @@ $ snowpack dev --no-bundle
- **`fallback`** | `string` | Default: `"index.html"`
- When using the Single-Page Application (SPA) pattern, this is the HTML "shell" file that gets served for every (non-resource) user route. Make sure that... | 0 |
diff --git a/src/widgets/histogram/content-view.js b/src/widgets/histogram/content-view.js @@ -333,7 +333,7 @@ module.exports = cdb.core.View.extend({
var $tooltip = this.$('.js-tooltip');
if (info && info.data) {
- var bottom = this.defaults.chartHeight + 3 - info.top;
+ var bottom = this.defaults.chartHeight + 23 - i... | 3 |
diff --git a/src/modules/axes/XAxis.js b/src/modules/axes/XAxis.js @@ -88,7 +88,7 @@ export default class XAxis {
for (let i = 0; i < labelsGroup.length; i++) {
labels.push(labelsGroup[i].title)
}
- this.drawXAxisLabelGroup(false, graphics, elXaxisTexts, labels, w.globals.isXNumeric, (i, colWidth) => labelsGroup[i].col... | 1 |
diff --git a/generators/client/templates/angular/src/main/webapp/_sw.js b/generators/client/templates/angular/src/main/webapp/_sw.js -var dataCacheName = '"<%=angular2AppName%>-v1';
-var cacheName = '"<%=angular2AppName%>-1';
+var dataCacheName = '<%=angular2AppName%>-v1';
+var cacheName = '<%=angular2AppName%>-1';
var... | 2 |
diff --git a/index.css b/index.css @@ -1985,6 +1985,10 @@ body.dragging-package .footer {
background-color: #111;
color: #FFF;
font-size: 50px;
+ cursor: pointer;
+}
+.ftu .ftu-phase .buttons .button:hover {
+ color: #ff5f2d;
}
.ftu .ftu-phase .avatar-grid {
display: flex;
@@ -1997,6 +2001,10 @@ body.dragging-package .... | 0 |
diff --git a/demo/index.html b/demo/index.html <script defer src="../node_modules/popper.js/dist/umd/popper.min.js"></script>
<!-- Tooltips are made using tippy.js: -->
<script defer src="../node_modules/tippy.js/umd/index.min.js"></script>
+ <!-- Improved PWA capability on mobile Safari is enabled by loading pwacompat... | 7 |
diff --git a/packages/preset-noir/index.js b/packages/preset-noir/index.js @@ -23,7 +23,7 @@ export default {
},
fonts: {
...base.fonts,
- body: "Rubik, apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif",
+ body: "Rubik, apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif",... | 1 |
diff --git a/test/jasmine/tests/transition_test.js b/test/jasmine/tests/transition_test.js @@ -1196,9 +1196,9 @@ describe('Plotly.react transitions:', function() {
gd.layout.xaxis.range = ['2018-06-01', '2019-06-01'];
gd.layout.xaxis2.range = [0.5, 1.5];
- var promise = Plotly.react(gd, gd.data, gd.layout);
- setTimeou... | 7 |
diff --git a/articles/quickstart/spa/angular2/06-token-renewal.md b/articles/quickstart/spa/angular2/06-token-renewal.md @@ -53,16 +53,9 @@ console.log('Listening on http://localhost:3001');
<meta charset="utf-8">
<script src="${auth0js_urlv8}"></script>
<script>
- var AUTH0_CLIENT_ID = '${account.clientId}';
- var AUT... | 3 |
diff --git a/src/plots/plots.js b/src/plots/plots.js @@ -523,18 +523,18 @@ function remapTransformedArrays(cd0, newTrace) {
var oldTrace = cd0.trace;
var arrayAttrs = PlotSchema.findArrayAttributes(oldTrace);
var transformedArrayHash = {};
- var i, ast;
+ var i, astr;
for(i = 0; i < arrayAttrs.length; i++) {
- ast = ar... | 14 |
diff --git a/_data/conferences.yml b/_data/conferences.yml id: kr23
link: https://kr.org/KR2023/
deadline: '2023-03-14 23:59:59'
- abstract_deadline: '2023-03-07 23:59:59'
+ abstract_deadline: '2023-03-03 23:59:59'
timezone: UTC-12
place: Rhodes, Greece
date: Sep 02-08, 2023
end: 2023-09-08
hindex: -1
sub: KR
- note: M... | 3 |
diff --git a/src/elements.js b/src/elements.js @@ -158,8 +158,6 @@ _.register({
selector: "img, video, audio",
attribute: "src",
editor: function() {
- var uploadBackend = this.mavo.storage && this.mavo.storage.upload? this.mavo.storage : this.uploadBackend;
-
var mainInput = $.create("input", {
"type": "url",
"placeho... | 7 |
diff --git a/datalad_service/tasks/validator.py b/datalad_service/tasks/validator.py @@ -3,6 +3,7 @@ import os
import subprocess
import requests
+from datalad_service.common.raven import client
from datalad_service.common.celery import app
# TODO - This is hardcoded because it is internal
@@ -23,9 +24,12 @@ def validat... | 12 |
diff --git a/assets/js/components/surveys/CurrentSurvey.test.js b/assets/js/components/surveys/CurrentSurvey.test.js @@ -147,7 +147,7 @@ describe( 'CurrentSurvey', () => {
// Submit button should be enabled if text has been entered.
expect(
getByRole( 'button', { name: 'Submit' } )
- ).not.toHaveAttribute( 'disabled' )... | 4 |
diff --git a/articles/overview/deployment-models.md b/articles/overview/deployment-models.md @@ -88,12 +88,26 @@ The following table describes operational and feature differences between each o
<td>Configurable</td>
</tr>
<tr>
- <th>Search</th>
+ <th>User Search</th>
+ <td>Lucene queries</td>
+ <td>Simple attribute sea... | 0 |
diff --git a/packages/idyll-docs/pages/docs/publishing/deploying-to-the-web.js b/packages/idyll-docs/pages/docs/publishing/deploying-to-the-web.js @@ -10,17 +10,16 @@ Once you are happy with your project, the \`idyll\` command-line tool can also b
build a stand alone bundle. If you used the Idyll project generator, npm... | 3 |
diff --git a/lib/carto/oauth_provider/scopes.rb b/lib/carto/oauth_provider/scopes.rb @@ -114,9 +114,9 @@ module Carto
database_section = grant_section(grants)
table_section = {
- name: @table,
+ name: table,
permissions: permission,
- schema: @schema || user.database_schema
+ schema: schema || user.database_schema
}
da... | 7 |
diff --git a/src/lib/Network.js b/src/lib/Network.js @@ -265,6 +265,7 @@ function request(command, data, type = 'post') {
// Make the http request, and if we get 407 jsonCode in the response,
// re-authenticate to get a fresh authToken and make the original http request again
+ let authenticateResponse;
return xhr(comm... | 4 |
diff --git a/articles/metadata/management-api.md b/articles/metadata/management-api.md @@ -21,7 +21,7 @@ Using [Auth0's Management APIv2](/api/management/v2), you can create a user and
The Auth0 Management APIv2 token is required to call the Auth0 Management API. [Click here to learn more about how to get a Management ... | 2 |
diff --git a/userscript.user.js b/userscript.user.js @@ -57721,16 +57721,29 @@ var $$IMU_EXPORT$$;
return src.replace(/(\/php\/load_okc_image\.php\/images\/)(?:[0-9]+(?:x[0-9]+)?\/){1,}([0-9]+\.[^/.]*)$/, "$1$2");
}
- if (domain_nosub === "metapix.net") {
+ if (domain_nosub === "metapix.net" ||
+ // thanks to Noodlers ... | 7 |
diff --git a/js/legacy/bis_readbruker.js b/js/legacy/bis_readbruker.js @@ -217,10 +217,10 @@ let parseTextFiles = function(filename,outprefix,debug,forceorient) {
data.havereco=false;
- let reco=null;
+ // let reco=null;
if (printFileStats(reconame)===1) {
data.havereco=true;
- reco=readParameterFile(reconame);
+ //rec... | 2 |
diff --git a/appjs/logicjavascript.js b/appjs/logicjavascript.js @@ -1192,7 +1192,7 @@ function centcal(){
}
function rtfind(){
- let side = parseInt(document.getElementById("inputdecagramside").value)
+ let side = parseInt(document.getElementById("inputrtside").value)
let ar = 2.975*side*side
let vol = 0.422*side*side... | 1 |
diff --git a/packages/2018/src/App.js b/packages/2018/src/App.js @@ -90,7 +90,6 @@ import {
import "./fonts.css";
// eslint-disable-next-line import/no-named-as-default
import RootPage from "./components/RootPage";
-import HomePage from "./components/HomePage";
import NewHomePage from "./components/NewHomePage";
import... | 4 |
diff --git a/articles/scopes/index.md b/articles/scopes/index.md @@ -4,6 +4,10 @@ description: Overview of scopes with a client-side authorization transaction.
# Scopes
+<div class="alert alert-info">
+<strong>Heads up!</strong> If you are working with the <a href="/api-auth">API Authorization flows</a> and you are loo... | 0 |
diff --git a/lib/assets/javascripts/new-dashboard/i18n/locales/en.json b/lib/assets/javascripts/new-dashboard/i18n/locales/en.json "orderMaps": "Order",
"types": {
"maps": "Your maps",
- "datasets": "Your datasets ({count})",
+ "datasets": "Your datasets",
"shared": "Shared with you ({count})",
"favorited": "Favorited ... | 2 |
diff --git a/iris/utils/notification-formatting.js b/iris/utils/notification-formatting.js @@ -115,10 +115,13 @@ const formatNotification = (incomingNotification, currentUserId) => {
let body = payload.content.body;
if (typeof body === 'string')
body = JSON.parse(payload.content.body);
- return `"${toPlainText(toState(... | 14 |
diff --git a/views/services/workers/avatar-worker.js b/views/services/workers/avatar-worker.js @@ -44,6 +44,17 @@ class FileWriter {
}
const fw = new FileWriter()
+const status = {}
+
+const reportStatus = (mstId, type) => () => {
+ if (!status[mstId]) {
+ status[mstId] = {}
+ }
+ status[mstId][type] = true
+ if (statu... | 4 |
diff --git a/commands/call.js b/commands/call.js @@ -8,23 +8,29 @@ module.exports = {
command: 'call <contractName> <methodName> [args]',
desc: 'schedule smart contract call which can modify state',
builder: (yargs) => yargs
+ .option('gas', {
+ desc: 'Max amount of gas this call can use',
+ type: 'string',
+ default: ... | 1 |
diff --git a/sources/osgShader/CompilerFragment.js b/sources/osgShader/CompilerFragment.js @@ -153,47 +153,43 @@ var CompilerFragment = {
return roots;
},
- getOrCreateFrontTangent: function () {
- var frontTangent = this.createVariable( 'vec4', 'frontTangent' );
+ getOrCreateFrontViewTangent: function () {
+ var out =... | 10 |
diff --git a/src/core/index.js b/src/core/index.js @@ -92,6 +92,20 @@ module.exports = function SwaggerUI(opts) {
}, constructorConfig.initialState)
}
+ if(constructorConfig.initialState) {
+ // if the user sets a key as `undefined`, that signals to us that we
+ // should delete the key entirely.
+ // known usage: Swag... | 11 |
diff --git a/app/scripts/controllers/CX/myWalletsCtrl.js b/app/scripts/controllers/CX/myWalletsCtrl.js @@ -68,7 +68,7 @@ var myWalletsCtrl = function($scope, $sce, $timeout, walletService) {
angular.element(function() {
angular.element($scope.sideBarTokens).bind("scroll", function(e) {
- if (e.target.scrollTop === e.ta... | 14 |
diff --git a/govbox/govrules/models.py b/govbox/govrules/models.py @@ -79,6 +79,8 @@ class Measure(PolymorphicModel):
blank=True
)
+ proposal_time = models.DateTimeFiled(auto_now_add=True)
+
PROPOSED = 'proposed'
FAILED = 'failed'
PASSED = 'passed'
| 0 |
diff --git a/userscript.user.js b/userscript.user.js @@ -89471,6 +89471,7 @@ var $$IMU_EXPORT$$;
// thanks to fedesk on discord for reporting
// https://www.nrk.no/video/regjeringa-aatvarar-mot-framtidige-pensjonskostnader_69e67b21-79ba-4973-a86a-65a246813bf1
// https://static.nrk.no/ludo/latest/video-embed.html#id=143... | 7 |
diff --git a/docs/components/toggle.md b/docs/components/toggle.md Toggle component explanation here.
```react
-<Toggle htmlFor="foone" />
+<Toggle htmlFor="one" />
```
### Props
@@ -11,15 +11,23 @@ Toggle component explanation here.
This property sets the node ID for label and input:
```react
-<Toggle htmlFor="fotwo" ... | 7 |
diff --git a/lib/editor/components/GtfsEditor.js b/lib/editor/components/GtfsEditor.js @@ -60,6 +60,11 @@ export default class GtfsEditor extends Component {
}
componentWillMount () {
+ // Wipe any leftover state that may exist for other feed sources in editor.
+ // NOTE: Clear GTFS content happens outside of onCompone... | 1 |
diff --git a/lib/sketch.js b/lib/sketch.js +"use strict";
// THE BASIC SKETCH CLASS, FROM WHICH ALL SKETCHES ARE EXTENDED.
@@ -2058,7 +2059,7 @@ function FreehandSketch() {
// ADJUST TO BEST CENTER POINT TO ROTATE AND SCALE ABOUT.
if (this.sc == 1 || this.tX == 0 && this.tY == 0) {
- B = computeCurveBounds(this.sp, 1);... | 12 |
diff --git a/world.js b/world.js @@ -371,12 +371,12 @@ world.addEventListener('trackedobjectadd', async e => {
}
mesh.run && await mesh.run();
- if (mesh.getStaticPhysicsIds) {
+ /* if (mesh.getStaticPhysicsIds) {
const staticPhysicsIds = mesh.getStaticPhysicsIds();
for (const physicsId of staticPhysicsIds) {
physicsMa... | 2 |
diff --git a/source/indexer/contracts/interfaces/IIndexer.sol b/source/indexer/contracts/interfaces/IIndexer.sol @@ -27,14 +27,14 @@ interface IIndexer {
address indexed staker,
address indexed signerToken,
address indexed senderToken,
- uint256 amount
+ uint256 stakeAmount
);
event Unstake(
address indexed staker,
add... | 10 |
diff --git a/packages/node_modules/@node-red/nodes/core/core/lib/debug/debug-utils.js b/packages/node_modules/@node-red/nodes/core/core/lib/debug/debug-utils.js @@ -400,48 +400,47 @@ RED.debug = (function() {
}
function processDebugMessage(o) {
- var msg = document.createElement("div");
+ var msg = $("<div/>");
var sou... | 4 |
diff --git a/js/huobi.js b/js/huobi.js @@ -679,7 +679,7 @@ module.exports = class huobi extends ccxt.huobi {
}
}
- getUrlByMarketType (type, subType = 'linear', isPrivate = false) {
+ getUrlByMarketType (type, isLinear = true, isPrivate = false) {
const api = this.safeString (this.options, 'api', 'api');
const hostname... | 4 |
diff --git a/src/backend.js b/src/backend.js @@ -19,7 +19,9 @@ var _ = Mavo.Backend = $.Class({
},
get: function(url = new URL(this.url)) {
+ if (url.protocol != "data:") {
url.searchParams.set("timestamp", Date.now()); // ensure fresh copy
+ }
return $.fetch(url.href).then(xhr => Promise.resolve(xhr.responseText), () ... | 1 |
diff --git a/src/client/js/components/TopOfTableContents.jsx b/src/client/js/components/TopOfTableContents.jsx @@ -3,6 +3,11 @@ import PropTypes from 'prop-types';
import { withTranslation } from 'react-i18next';
+import PageList from './PageList';
+import TimeLine from './TimeLine';
+import RecentChanges from './Recen... | 14 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.