code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/articles/libraries/_includes/_get_lock_latest_version.md b/articles/libraries/_includes/_get_lock_latest_version.md -### Update Lock.js +### Update Lock -Update the Lock.js library using npm or yarn. +Update the Lock library using npm or yarn. ```bash # installation with npm @@ -16,7 +16,7 @@ Once updated,...
14
diff --git a/build/avalanchego-apis/health-api.md b/build/avalanchego-apis/health-api.md @@ -16,14 +16,14 @@ This API uses the `json 2.0` RPC format. For more information on making JSON RPC ## Methods -### health.getLiveness +### health.health The node runs a set of health checks every 30 seconds, including a health ch...
10
diff --git a/src/dom_components/view/ComponentTextView.js b/src/dom_components/view/ComponentTextView.js @@ -23,12 +23,13 @@ module.exports = ComponentView.extend({ * @private * */ enableEditing(e) { - e && e.stopPropagation && e.stopPropagation(); - const rte = this.rte; - + // We place this before stopPropagation in ...
7
diff --git a/src/encoded/audit/file.py b/src/encoded/audit/file.py @@ -804,7 +804,12 @@ def extract_award_version(bam_file): 'derived_from.controlled_by.dataset.original_files.analysis_step_version.analysis_step.pipelines', 'derived_from.controlled_by.dataset.original_files.analysis_step_version.software_versions', 'de...
2
diff --git a/pages/app/ExploreDetail.js b/pages/app/ExploreDetail.js @@ -4,6 +4,7 @@ import PropTypes from 'prop-types'; import { Autobind } from 'es-decorators'; import MediaQuery from 'react-responsive'; import { toastr } from 'react-redux-toastr'; +import classnames from 'classnames'; // Redux import withRedux from ...
7
diff --git a/docs/modules/tweakToolContainer.js b/docs/modules/tweakToolContainer.js @@ -61,8 +61,6 @@ const addLabel = (tool) => { let result = []; const push = (title, className) => result.push(createLabel(title, className)); - tool.innerHTML.includes('iOS 11 UI kit for Adobe XD') && console.log(tool.innerHTML); - if...
2
diff --git a/src/tests/addons.test.js b/src/tests/addons.test.js @@ -5,8 +5,6 @@ const cliPath = require('./utils/cliPath') const exec = require('./utils/exec') const sitePath = path.join(__dirname, 'dummy-site') -let siteId - const execOptions = { stdio: [0, 1, 2], cwd: sitePath, @@ -31,8 +29,6 @@ test.before(async t ...
2
diff --git a/src/views/community/index.js b/src/views/community/index.js @@ -214,7 +214,7 @@ class CommunityView extends React.Component<Props, State> { ) : null} {currentUser && - isOwner && ( + (isOwner || isModerator) && ( <Link to={`/${community.slug}/settings`}> <LoginButton icon={'settings'} isMember> Settings
11
diff --git a/scenes/street.scn b/scenes/street.scn "position": [-2, 1, 2], "quaternion": [0, 0.7071067811865475, 0, 0.7071067811865476], "start_url": "https://webaverse.github.io/helm/" - }, - { - "position": [0, -60, 0], - "start_url": "../metaverse_modules/land/" } ] } \ No newline at end of file
2
diff --git a/src/swaps/views/Timeline.vue b/src/swaps/views/Timeline.vue <td v-if="item.agent" class="text-muted text-right small-12">Counter-party</td> <td>{{ item.agent }}</td> </tr> - <tr> + <tr v-if="orderLink"> <td class="text-muted text-right small-12">Order ID</td> <td id="swap_details_order_id"><a :href="orderL...
1
diff --git a/docs/api.md b/docs/api.md @@ -412,7 +412,7 @@ defaultLogLevel: 'error' Note that this value can be overriden by passing 'logLevel' as a prop when rendering the component. -#### autoResize `boolean | Object<String, Boolean>` +#### autoResize `boolean | { height: boolean, width: boolean, element: string }` W...
7
diff --git a/test/map/MapSpec.js b/test/map/MapSpec.js @@ -575,6 +575,9 @@ describe('Map.Spec', function () { describe('Map.FullScreen', function () { it('requestFullScreen', function () { + if (maptalks.Browser.ie) { + return; + } map.requestFullScreen(); // Failed to execute 'requestFullscreen' on 'Element': API can ...
8
diff --git a/articles/metadata/index.md b/articles/metadata/index.md @@ -107,36 +107,6 @@ Currently, Auth0 limits the total size of your user metadata to 16 MB. However, When setting this field with the [Authentication API Signup endpoint](/api/authentication?javascript#signup) size is limited to no more than 10 fields...
2
diff --git a/packages/gatsby/src/utils/api-runner-node.js b/packages/gatsby/src/utils/api-runner-node.js @@ -136,18 +136,20 @@ module.exports = async (api, args = {}, pluginSource) => apisRunning.push(apiRunInstance) + let currentPluginName = null + mapSeries( noSourcePluginPlugins, (plugin, callback) => { + currentPlu...
7
diff --git a/vendor/assets/javascripts/cartodb.uncompressed.js b/vendor/assets/javascripts/cartodb.uncompressed.js // cartodb.js version: 3.15.12 // uncompressed version: cartodb.uncompressed.js -// sha: 77e8d5e7f13024a0fd2201dd4af71747ed366b5b +// sha: fd59cdbd94906f554d820cef55009ec795aaf5f0 (function() { var define;...
3
diff --git a/src/style_manager/view/PropertyStackView.js b/src/style_manager/view/PropertyStackView.js @@ -170,17 +170,20 @@ export default PropertyCompositeView.extend({ // With detached layers values will be assigned to their properties if (detached) { style = target ? target.getStyle() : {}; + const hasDetachedStyle...
7
diff --git a/server/src/fetchers/thread-permission-fetchers.js b/server/src/fetchers/thread-permission-fetchers.js @@ -16,6 +16,11 @@ import { dbQuery, SQL } from '../database/database'; import { fetchKnownUserInfos } from '../fetchers/user-fetchers'; import { fetchThreadInfos } from '../fetchers/thread-fetchers'; +// ...
0
diff --git a/packages/wast-parser/src/tokenizer.js b/packages/wast-parser/src/tokenizer.js @@ -139,19 +139,16 @@ function tokenize(input: string) { return input.substring(current - offset, current - offset + length); } - function eatToken() { - column++; - current++; - } - + /** + * Advances the cursor in the input by ...
14
diff --git a/src/js/components/Clock/Digital.js b/src/js/components/Clock/Digital.js @@ -29,17 +29,17 @@ class Digit extends Component { return ( <StyledDigitalDigit size={size} theme={theme}> <StyledDigitalPrevious direction={direction}> - {previous} + {Math.floor(previous)} </StyledDigitalPrevious> <StyledDigitalNext...
1
diff --git a/guide/english/certifications/front-end-libraries/jquery/change-text-inside-an-element-using-jquery/index.md b/guide/english/certifications/front-end-libraries/jquery/change-text-inside-an-element-using-jquery/index.md @@ -42,5 +42,5 @@ title: Change Text Inside an Element Using jQuery [jQuery API Documenta...
14
diff --git a/src/utils/notify_props.ts b/src/utils/notify_props.ts // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import {Preferences} from '../constants'; -export function getEmailInterval(enableEmailNotification: boolean, enableEmailBatching: number, em...
1
diff --git a/package-lock.json b/package-lock.json }, "dependencies": { "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "version": "3.2.6", + "resolved...
13
diff --git a/js/app/toggleMatchHighlight.js b/js/app/toggleMatchHighlight.js @@ -23,7 +23,7 @@ function refreshHighlightOption() objBrowser.tabs.sendMessage(tabs[0].id, { "func":strMethod }, function(objResponse) { - if(objResponse.status) { + if(objResponse && objResponse.status) { console.log("Response from tab: " + ...
1
diff --git a/activities/Etoys.activity/activity/activity-etoys.svg b/activities/Etoys.activity/activity/activity-etoys.svg ]> <svg enable-background="new 0 0 55 55" height="55px" version="1.1" viewBox="0 0 55 55" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org...
9
diff --git a/src/pages/Group/ComponentList.js b/src/pages/Group/ComponentList.js @@ -55,13 +55,10 @@ export default class ComponentList extends Component { operationState: false, query: '', changeQuery: '', - tableDataLoading: false + tableDataLoading: true }; } componentDidMount() { - this.setState({ - tableDataLoadin...
1
diff --git a/test/plot-schema.json b/test/plot-schema.json "valType": "color" }, "colorsrc": { - "description": "Sets the source reference on Chart Studio Cloud for color .", + "description": "Sets the source reference on Chart Studio Cloud for `color`.", "editType": "none", "valType": "string" }, "valType": "number" }...
3
diff --git a/generators/generator-transforms.js b/generators/generator-transforms.js @@ -22,9 +22,15 @@ const prettier = require('prettier'); const prettierTransform = function (defaultOptions) { return through.obj((file, encoding, callback) => { + if (file.state === 'deleted') { + callback(null, file); + return; + } /...
9
diff --git a/module/gurps.js b/module/gurps.js @@ -427,13 +427,11 @@ const actionFuncs = { // iftest({ action }) { - if (!GURPS.lastTargetedRoll) - return false - if (action.name == 'isCritSuccess') - return !!GURPS.lastTargetedRoll.isCritSuccess - if (action.name == 'isCritFailure') - return !!GURPS.lastTargetedRoll.i...
9
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -9,11 +9,11 @@ jobs: name: fail if the branch name does not start with a valid prefix command: | branch=$CIRCLE_BRANCH - if [[ "$branch" =~ ^(fix|feature|breaking)/ || "$branch" == 'master' ]] + if [[ "$branch" =~ ^(dependabot|fix|feature|breaking)/ || "$branc...
11
diff --git a/angular/projects/spark-angular/src/lib/components/sprk-flag/sprk-flag.stories.ts b/angular/projects/spark-angular/src/lib/components/sprk-flag/sprk-flag.stories.ts @@ -14,7 +14,15 @@ export default { ) ], parameters: { - info: `${markdownDocumentationLinkBuilder('flag')}`, + info: ` +${markdownDocumentatio...
3
diff --git a/gulpfile.mjs b/gulpfile.mjs @@ -15,8 +15,8 @@ import { npmScriptTask } from './tasks/run.mjs' */ gulp.task('scripts', gulp.series( npmScriptTask('lint:js'), - npmScriptTask('build:jsdoc'), - compileJavaScripts + compileJavaScripts, + npmScriptTask('build:jsdoc') )) /**
11
diff --git a/grails-app/assets/javascripts/streama/controllers/createFromFileCtrl.modal.js b/grails-app/assets/javascripts/streama/controllers/createFromFileCtrl.modal.js @@ -139,7 +139,11 @@ function modalCreateFromFileCtrl($scope, $uibModalInstance, apiService, uploadSe } apiService.file.bulkAddMediaFromFile(allFound...
7
diff --git a/package.json b/package.json "license": "MIT", "author": "Government Digital Service developers (https://gds.blog.gov.uk/)", "homepage": "https://github.com/alphagov/govuk-frontend#readme", + "scripts": { + "test": "standard" + }, "devDependencies": { - "gulp": "^3.9.1" + "gulp": "^3.9.1", + "standard": "^1...
12
diff --git a/imports/client/ui/pages/Home/ProjectsSection/Item/index.js b/imports/client/ui/pages/Home/ProjectsSection/Item/index.js @@ -25,9 +25,12 @@ const Item = ({ item, loginButton }) => className="images" /> <CardTitle tag="h5"> - <CardLink href={item.url}> + {/*<CardLink href={item.url}> {item.title} - </CardLin...
14
diff --git a/sirepo/package_data/static/js/radia.js b/sirepo/package_data/static/js/radia.js @@ -3811,7 +3811,7 @@ SIREPO.viewLogic('objectShapeView', function(appState, panelState, radiaService, if (modelType === 'jay') { const j = appState.models.jay; const jx1 = c[0] + s[0] / 2 - j.hookWidth; - const jy1 = sy2 + j.h...
1
diff --git a/assets/sass/components/user-input/googlesitekit-user-input-preview.scss b/assets/sass/components/user-input/googlesitekit-user-input-preview.scss .googlesitekit-user-input__preview-group .googlesitekit-user-input__select-option .mdc-radio { margin-left: -10px; } + + .googlesitekit-user-input__preview-group...
2
diff --git a/docker-compose.yml b/docker-compose.yml @@ -37,9 +37,10 @@ services: MC_APP_ENTRYPOINT: '/hello-world/index.js' build: context: mediacontroller - entrypoint: sh -c 'sh ./run.sh' + entrypoint: sh -c 'sh ./run2.sh' volumes: - ./functions:/functions:ro + - ./mediacontroller/run.sh:/run2.sh:ro expose: - ${MC_A...
14
diff --git a/assets/js/components/higherorder/withdata.js b/assets/js/components/higherorder/withdata.js @@ -142,7 +142,7 @@ const withData = ( } ) => { // ...and returns another component... - return class NewComponent extends Component { + class NewComponent extends Component { constructor( props ) { super( props ); ...
12
diff --git a/elements/simple-toolbar/lib/simple-toolbar-button.js b/elements/simple-toolbar/lib/simple-toolbar-button.js @@ -88,6 +88,14 @@ const SimpleToolbarButtonBehaviors = function (SuperClass) { reflect: true, }, + /** + * Optional to set aria-describedby. + */ + describedby: { + type: String, + attribute: "descr...
1
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,21 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master where X.Y.Z is the semver of most recent plotly.js release. +## [1.45.1] -- 2019-03-05 + +### Fixed +- Fix axis automargin pushes for rotated tick labels [#3605] +- Fix automargin logic on (very) smal...
3
diff --git a/articles/api-auth/index.html b/articles/api-auth/index.html @@ -86,6 +86,9 @@ title: API Authorization <li> <i class="icon icon-budicon-695"></i><a href="/api-auth/tutorials/silent-authentication">Silent authentication for SPAs</a> </li> + <li> + <i class="icon icon-budicon-695"></i><a href="/api-auth/tuto...
0
diff --git a/package.json b/package.json "scripts": { "heroku-prebuild": "bash prebuild.sh", "heroku-postbuild": "bash postbuild.sh", - "precommit": "lint-staged", - "lint-markdown": "node ./check-markdown.js" + "precommit": "lint-staged" }, "lint-staged": { - "*.md": "npm run lint-markdown" + "*.md": "markdownlint" },...
14
diff --git a/packages/node_modules/@node-red/nodes/locales/en-US/function/10-function.html b/packages/node_modules/@node-red/nodes/locales/en-US/function/10-function.html to return nothing in order to halt a flow.</p> <p>The <b>Setup</b> tab contains code that will be run whenever the node is started. The <b>Close</b> ...
3
diff --git a/src/og/ajax.js b/src/og/ajax.js @@ -88,24 +88,6 @@ const defaultParams = { responseType: "text" }; -function createXMLHttp() { - var xhr = null; - if (typeof XMLHttpRequest != "undefined") { - xhr = new XMLHttpRequest(); - return xhr; - } else if (window.ActiveXObject) { - var ieXMLHttpVersions = ['MSXML2....
2
diff --git a/unlock-app/src/services/web3Service.js b/unlock-app/src/services/web3Service.js /* eslint no-console: 0 */ // TODO: remove me when this is clean import Web3 from 'web3' +import Web3Utils from 'web3-utils' import { networks } from '../config' import LockContract from '../artifacts/contracts/Lock.json' @@ -2...
4
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -12,7 +12,6 @@ Contributions to CouchDB are governed by our [Code of Conduct][6] and a set of [Project Bylaws][7]. Apache CouchDB itself also has a [CONTRIBUTING.md][9] if you want to help with the larger project. Come join us! - ## Contributor quick start If you never ...
0
diff --git a/articles/libraries/auth0js/index.md b/articles/libraries/auth0js/index.md @@ -20,10 +20,6 @@ The [example directory](https://github.com/auth0/auth0.js/tree/master/example) o 1. Download dependencies by running `npm install` from the root of this project 1. Finally, execute `npm run example` from the root o...
2
diff --git a/src/encoded/commands/generate_ontology.py b/src/encoded/commands/generate_ontology.py @@ -238,45 +238,6 @@ ntr_assays = { "systems": [], "types": [] }, - "NTR:0001684": { - "assay": ['Transcription'], - "category": [], - "developmental": [], - "name": "5' RLM RACE", - "objectives": [], - "organs": [], - "p...
2
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -109,7 +109,7 @@ fabric-android-secrets: &fabric-android-secrets fabric-ios-secrets: &fabric-ios-secrets run: name: Set Fabric secret - command: echo -e "$FABRIC_API_KEY\n$FABRIC_BUILD_SECRET" >> ./PrideLondonApp/fabric.properties + command: echo -e "$FABRIC_A...
12
diff --git a/components/Discussion/DiscussionProvider/DiscussionProvider.tsx b/components/Discussion/DiscussionProvider/DiscussionProvider.tsx @@ -104,7 +104,7 @@ const DiscussionProvider: FC<Props> = ({ actions: { ...actions, shareHandler, - openDiscussionPreferences: () => { + preferencesHandler: () => { preferencesO...
10
diff --git a/sources/li/countrywide.json b/sources/li/countrywide.json }, "country": "li" }, - "data": "https://www.dropbox.com/s/t77mtmevrdddd4q/li_countrywide.zip?dl=1", + "data": "https://s3.amazonaws.com/data.openaddresses.io/cache/uploads/sergiyprotsiv/3b8bdb/li_countrywide.zip", "website": "http://geodaten.llv.li...
12
diff --git a/avatars/avatars.js b/avatars/avatars.js @@ -340,6 +340,8 @@ const loadPromise = (async () => { `left strafe.fbx`, `right strafe walking.fbx`, `right strafe.fbx`, + `Crouched Sneaking Left.fbx`, + `Crouched Sneaking Right.fbx`, ]; for (const name of reversibleAnimationNames) { const animation = animations.f...
0
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '12.x' + node-version: '14.x' - run: npm install - run: npm test
3
diff --git a/doc/manual.html b/doc/manual.html @@ -3178,14 +3178,14 @@ editor.setOption("extraKeys", { <dt id="addon_tern"><a href="../addon/tern/tern.js"><code>tern/tern.js</code></a></dt> <dd>Provides integration with - the <a href="http://ternjs.net">Tern</a> JavaScript analysis + the <a href="https://ternjs.net">Te...
1
diff --git a/src/actor.js b/src/actor.js @@ -96,6 +96,7 @@ const addInputOptionsOrThrow = (input, contentType, options) => { /** * Parsed representation of the `APIFY_XXX` environmental variables. + * This object is returned by the {@link Apify#getEnv} function. * * @typedef ApifyEnv * @property {string|null} actorId I...
7
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml -image: docker:latest +image: docker:18.06-dind services: - docker:dind @@ -66,7 +66,7 @@ test-lost: # image: docker/compose:1.24.0 stage: test-lost before_script: - - apk add --update python py-pip python-dev && pip install --upgrade --force-reinstall pip==9.0.3 && pip inst...
4
diff --git a/src/registry/domain/repository.js b/src/registry/domain/repository.js @@ -19,6 +19,10 @@ const errorToString = require('../../utils/error-to-string'); module.exports = function(conf) { const cdn = !conf.local && new conf.storage.adapter(conf.storage.options); const options = !conf.local && conf.storage.opt...
11
diff --git a/speech.js b/speech.js @@ -40,7 +40,7 @@ app.use((req, res, next) => { // custom logging middleware to log all incoming }); // initialize passport -app.use(session({ secret: 'cats' })); +app.use(session({ secret: 'cats', resave: false, saveUninitialized: false })); app.use(passport.initialize()); app.use(pa...
12
diff --git a/test/jasmine/tests/axes_test.js b/test/jasmine/tests/axes_test.js @@ -3150,7 +3150,7 @@ describe('Test axes', function() { }) .then(function() { var size = gd._fullLayout._size; - expect(size.l).toBe(previousSize.l); + expect(size.l).toBeWithin(previousSize.l, 1.1); expect(size.r).toBe(previousSize.r); exp...
0
diff --git a/packages/gatsby-source-filesystem/src/create-remote-file-node.js b/packages/gatsby-source-filesystem/src/create-remote-file-node.js @@ -7,7 +7,7 @@ const { isWebUri } = require(`valid-url`) const { createFileNode } = require(`./create-file-node`) const cacheId = url => `create-remote-file-node-${url}` -mod...
12
diff --git a/assets/js/modules/search-console/components/dashboard/SearchFunnelWidget/PreviewGraph.js b/assets/js/modules/search-console/components/dashboard/SearchFunnelWidget/PreviewGraph.js @@ -37,7 +37,7 @@ export default function PreviewGraph( { title, GraphSVG } ) { </div> <div className="googlesitekit-analytics-...
14
diff --git a/README.md b/README.md @@ -509,6 +509,10 @@ meteor: { ``` +You also need to: +1. Make sure `meteor.env.ROOT_URL` starts with `https://` +2. Setup DNS for each of the domains in `meteor.ssl.autogenerate.domains` + Then run `mup deploy`. It will automatically create certificates and set up SSL, which can take...
7
diff --git a/tokensale/Tokensale.sol b/tokensale/Tokensale.sol @@ -74,12 +74,12 @@ pragma solidity ^0.4.19 START_DATE: Date after which the token sale will be live. + `node> + new Date('1 February 2018 GMT+0')/1000` MAX_FUNDING_PERIOD: Period of time the tokensale will be live. Note that the owner can finalise the cont...
3
diff --git a/addon/start-mirage.js b/addon/start-mirage.js -import { getWithDefault } from '@ember/object'; import readModules from './utils/read-modules'; import Server from './server'; import { singularize, pluralize } from 'ember-inflector'; @@ -30,10 +29,12 @@ export default function startMirage(owner, { env, baseC...
14
diff --git a/modules/layers/src/solid-polygon-layer/solid-polygon-layer-vertex-main.glsl.js b/modules/layers/src/solid-polygon-layer/solid-polygon-layer-vertex-main.glsl.js @@ -75,7 +75,10 @@ void calculatePosition(PolygonProps props) { pos.z += props.elevations * vertexPositions.y * elevationScale; #ifdef IS_SIDE_VERT...
7
diff --git a/app/shared/components/Producers/BlockProducers.js b/app/shared/components/Producers/BlockProducers.js @@ -78,7 +78,7 @@ class BlockProducers extends Component<Props> { } = this.state; const account = accounts[settings.account]; - const isMainnet = (connection && connection.chain === 'eos-mainnet'); + const...
12
diff --git a/js/node/bis_netwebsocketfileserver.js b/js/node/bis_netwebsocketfileserver.js @@ -460,7 +460,7 @@ class BisNetWebSocketFileServer extends BaseFileServer { return name; }; - function addToCurrentTransfer(upload, socket, control) { + function addToCurrentTransfer(upload, socket) { let dataInProgress=self.fil...
2
diff --git a/assets/src/home/LibrarySelector.test.js b/assets/src/home/LibrarySelector.test.js @@ -8,14 +8,19 @@ describe('LibrarySelector', () => { let librarySelector; let bookService; let profileService; - const libraries = [ + const libraries = { + count: 1, + next: null, + previous: null, + results: [ { id: 1, url...
1
diff --git a/packages/yoroi-extension/features/support/webdriver.js b/packages/yoroi-extension/features/support/webdriver.js @@ -126,7 +126,7 @@ function CustomWorld(cmdInput: WorldInput) { this.getElementsBy = (locator, method = By.css) => this.driver.findElements(method(locator)); - this.getText = locator => this.get...
7
diff --git a/src/input/pointer.js b/src/input/pointer.js // legacy mouse event type var mouseEventList = [ WHEEL[0], + POINTER_MOVE[1], + POINTER_DOWN[1], + POINTER_UP[1], + POINTER_CANCEL[1], + POINTER_ENTER[1], + POINTER_LEAVE[1] + ]; + + // iOS style touch event type + var touchEventList = [ POINTER_MOVE[2], POINTER...
1
diff --git a/package.json b/package.json "author": "Marius Andra", "license": "MIT", "main": "lib/index.js", - "jsnext:main": "src/index.js", + "module": "src/index.js", "repository": { "type": "git", "url": "git+https://github.com/keajs/kea.git"
14
diff --git a/README.md b/README.md @@ -6,20 +6,20 @@ TA.Gui is a tool for non-developers and business users to automate web apps # Why This Automate repetitive parts of your work - use cases include data acquisition, process and test automations. -TA.Gui converts automation flows in simple natural language into lines o...
7
diff --git a/package.json b/package.json { "name": "minimap", "main": "./lib/main", - "version": "4.28.2", + "version": "4.28.3", "private": true, "description": "A preview of the full source code.", "author": "Fangdun Cai <cfddream@gmail.com>",
6
diff --git a/README.md b/README.md @@ -45,7 +45,7 @@ environment build for anything "serious." ember serve --environment production ``` -You can also specify the port (default is 3000): +You can also specify the port (default is 4200): ``` ember serve --port 8088
12
diff --git a/new-client/src/models/DrawModel.js b/new-client/src/models/DrawModel.js @@ -426,6 +426,9 @@ class DrawModel { this.#drawTooltipElement.innerHTML = null; this.#currentPointerCoordinate = null; this.#drawTooltip.setPosition(this.#currentPointerCoordinate); + // We set the USER_DRAWN prop to true so that we c...
12
diff --git a/src/resources/views/columns/email.blade.php b/src/resources/views/columns/email.blade.php @endphp {{-- email link --}} -<span><a href="mailto:{{ $entry->{$column['name']} }}">{{ str_limit(strip_tags($value), array_key_exists('limit', $column) ? $column['limit'] : 50, "[...]") }}</a></span> +<span><a href="...
12
diff --git a/src/enforcers/MediaType.js b/src/enforcers/MediaType.js @@ -49,11 +49,16 @@ module.exports = { additionalProperties: EnforcerRef('Example') }, schema: EnforcerRef('Schema') + }, + errors: ({ parent, key, warn }) => { + if (parent && parent.key === 'content') { + if (!module.exports.rx.mediaType.test(key)) ...
7
diff --git a/app/templates/_package.json b/app/templates/_package.json "postinstall": "tsc", <% } %> <% if (clientOnly) { %> - "start": "aliv", - "dev": "aliv", + "start": "gulp", + "dev": "gulp", + "watch": "gulp", "test": "gulp client.unit_test", "build-dist": "gulp client.build:dist" <%} else {%>
4
diff --git a/projects/ngx-extended-pdf-viewer/src/assets/viewer.js b/projects/ngx-extended-pdf-viewer/src/assets/viewer.js @@ -12928,7 +12928,6 @@ document.webL10n = function (window, document, undefined) { if (!gMacros._pluralRules) { gMacros._pluralRules = getPluralRules(gLanguage); } - debugger; var index = '[' + gM...
13
diff --git a/vis/stylesheets/modules/_modal.scss b/vis/stylesheets/modules/_modal.scss } #images_modal { - .modal-lg, .modal-dialog { + .modal-lg, + .modal-dialog { max-width: 788px; } + .modal-body { + height: 80vh; + width: 100%; + display: table; + overflow: scroll; + + #images_holder { + width: 100%; + height: 75vh...
1
diff --git a/assets/js/util/i18n.js b/assets/js/util/i18n.js @@ -186,15 +186,7 @@ export const numFmt = ( number, options = {} ) => { return prepareSecondsForDisplay( number ); } - try { return numberFormat( number, formatOptions ); - } catch ( _ ) { - if ( !! options && typeof options === 'string' ) { - // if the form...
2
diff --git a/assets/js/modules/analytics/datastore/accounts.js b/assets/js/modules/analytics/datastore/accounts.js @@ -156,10 +156,10 @@ export const actions = { * @return {Function} Generator function action. */ *createAccount( { accountName, propertyName, profileName, timezone } ) { - invariant( accountName, 'account...
7
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md @@ -6,7 +6,7 @@ Thanks for your interest in contributing to Tailwind CSS! Please take a moment t **Please ask first before starting work on any significant new features.** -It's never a fun experience to have your pull request declined after investing a lot...
2
diff --git a/core/algorithm-builder/dockerfile/get-deps-java.sh b/core/algorithm-builder/dockerfile/get-deps-java.sh @@ -8,4 +8,4 @@ docker run --rm -v $SCRIPTPATH/../environments/java/jars:/jars maven mvn -q dep docker run --rm -v $SCRIPTPATH/../environments/java/jars:/jars maven mvn -q dependency:get -Dartifact=io.hk...
2
diff --git a/dist/doc.md b/dist/doc.md @@ -216,6 +216,9 @@ html('div') import { svg, mount } from 'redom'; const drawing = svg('svg', + svg('symbol', { id: 'box', viewBox: '0 0 100 100' }, + svg('rect', { x: 25, y: 25, width: 50, height: 50 }) + ), svg('circle', { r: 50, cx: 25, cy: 25 }) ); @@ -224,7 +227,11 @@ mount(...
0
diff --git a/articles/users/concepts/overview-user-account-linking.md b/articles/users/concepts/overview-user-account-linking.md @@ -173,10 +173,6 @@ Here are two scenarios that implement account linking: * [User-initiated account linking](#user-initiated-account-linking): allow your users to link their accounts using ...
2
diff --git a/edit.js b/edit.js @@ -344,7 +344,6 @@ const _setCurrentChunkMesh = chunkMesh => { let stairsMesh = null; let platformMesh = null; let wallMesh = null; -let spikesMesh = null; let woodMesh = null; let stoneMesh = null; let metalMesh = null; @@ -980,23 +979,6 @@ const [ scale: new THREE.Vector3(2, 2, 0.1), }...
2
diff --git a/package.json b/package.json { "name": "nativescript-doctor", - "version": "0.8.0", + "version": "0.9.0", "description": "Library that helps identifying if the environment can be used for development of {N} apps.", "main": "lib/index.js", "types": "./typings/nativescript-doctor.d.ts",
12
diff --git a/tasks/partial_bundle.js b/tasks/partial_bundle.js @@ -8,7 +8,6 @@ var header = constants.licenseDist + '\n'; var allTransforms = constants.allTransforms; var allTraces = constants.allTraces; var mainIndex = constants.mainIndex; -var excludedTraces = constants.excludedTraces; // Browserify the plotly.js par...
13
diff --git a/scenes/battalion.scn b/scenes/battalion.scn 300 ], "start_url": "https://webaverse.github.io/dreadnought/" + }, + { + "position": [ + -8, + 34, + -67 + ], + "quaternion": [ + 0, + 1, + 0, + 0 + ], + "start_url": "https://webaverse.github.io/infinistreet/" } ] }
0
diff --git a/LICENSE b/LICENSE same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019 Gladys Assistant + Copyright 2013-2021 Gladys Assistant Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with t...
7
diff --git a/src/encoded/search.py b/src/encoded/search.py @@ -1237,8 +1237,10 @@ def audit(context, request): # Don't use these groupings for audit matrix x_grouping = matrix['x']['group_by'] y_groupings = audit_list_field - y_groupings.append("no.audits") + no_audits_groupings = ['no.error', 'no.not_compliant', 'no.w...
0
diff --git a/src/internal.d.ts b/src/internal.d.ts @@ -131,9 +131,9 @@ export interface DevtoolsHook { _renderers: Record<string, any>; _roots: Set<VNode>; on(ev: string, listener: () => void): void; - emit(ev: string, object): void; + emit(ev: string, data?: object): void; helpers: Record<string, any>; - getFiberRoots...
1
diff --git a/README.md b/README.md # themer [![Travis](https://img.shields.io/travis/mjswensen/themer.svg)](https://travis-ci.org/mjswensen/themer) [![npm](https://img.shields.io/npm/dt/themer.svg)](https://github.com/mjswensen/themer#installation) -<a target='_blank' rel='nofollow' href='https://app.codesponsor.io/lin...
5
diff --git a/src/libraries/controllers/ApiUserController.php b/src/libraries/controllers/ApiUserController.php @@ -91,7 +91,7 @@ class ApiUserController extends ApiBaseController $password = $_POST['password']; $passwordConfirm = $_POST['password-confirm']; $tokenFromDb = $user->getAttribute('passwordToken'); - if($tok...
4
diff --git a/ui/app/components/tx-view.js b/ui/app/components/tx-view.js @@ -54,16 +54,16 @@ TxView.prototype.render = function () { style: { margin: '1em 0.9em', alignItems: 'center' - } + }, + onClick: () => { + this.props.sidebarOpen ? this.props.hideSidebar() : this.props.showSidebar() + }, }, [ // burger h('div.fa...
11
diff --git a/token-metadata/0xc75F15AdA581219c95485c578E124df3985e4CE0/metadata.json b/token-metadata/0xc75F15AdA581219c95485c578E124df3985e4CE0/metadata.json "symbol": "ZZZ", "address": "0xc75F15AdA581219c95485c578E124df3985e4CE0", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/app/api/apiConfig.js b/app/api/apiConfig.js @@ -305,6 +305,14 @@ export const settingsAPIs = { operator: "Witness: xbtsio-wallet", contact: "telegram: xbtsio" }, + { + url: "wss://api.gbacenter.org/ws", + region: "Northern America", + country: "U.S.A.", + location: "Fremont, CA", + operator: "Witness: gbac...
5
diff --git a/apps.json b/apps.json "type": "app", "description": "Learn the NATO Phonetic alphabet plus some numbers.", "tags": "app,learn,visual", + "allow_emulator":true, "storage": [ {"name":"nato.app.js","url":"nato.js"}, {"name":"nato.img","url":"nato-icon.js","evaluate":true}
11
diff --git a/app/catalog-tab/index/template.hbs b/app/catalog-tab/index/template.hbs <ul class="dropdown-menu dropdown-menu-right"> {{#each filters as |opt|}} <li class="text-capitalize {{if (eq catalogId opt.queryParams.catalogId) 'active'}}"> - {{#link-to parentRoute (query-params catalogId=opt.queryParams.catalogId)...
14