code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/physics-manager.js b/physics-manager.js @@ -400,6 +400,7 @@ const _collideItems = matrix => { geometryManager.currentChunkMesh.update(localVector3); }; */ +physicsManager.getGravity = () => gravity; physicsManager.setGravity = g => { if (g === true) { gravity.set(0, -9.8, 0);
0
diff --git a/src/runtime/plugin.ts b/src/runtime/plugin.ts @@ -81,8 +81,7 @@ export default defineNuxtPlugin(async nuxt => { * If `initLocale` is not set, then the `vueI18n` option `locale` is respect! * It means a mode that works only with simple vue-i18n, without nuxtjs/i18n routing, browser detection, SEO, and other...
14
diff --git a/src/plots/polar/polar.js b/src/plots/polar/polar.js @@ -556,36 +556,25 @@ proto.updateAngularAxis = function(fullLayout, polarLayout) { var out = Axes.makeLabelFns(ax, 0); var labelStandoff = out.labelStandoff; - var labelShift = out.labelShift; - var offset4fontsize = (angularLayout.ticks !== 'outside' ? ...
7
diff --git a/accessibility-checker-engine/src/v4/rules/element_tabbable_role_valid.ts b/accessibility-checker-engine/src/v4/rules/element_tabbable_role_valid.ts @@ -37,13 +37,13 @@ export let element_tabbable_role_valid: Rule = { }, rulesets: [{ "id": ["IBM_Accessibility"], - "num": ["2.4.3"], + "num": ["4.1.2"], "leve...
3
diff --git a/src/internal/proc.js b/src/internal/proc.js @@ -164,11 +164,6 @@ export default function proc( ) { const { sagaMonitor, logger, onError, middleware } = options const log = logger || _log - const logError = err => { - let message = err.sagaStack - - log('error', message || err) - } const taskContext = Objec...
2
diff --git a/src/plots/gl2d/index.js b/src/plots/gl2d/index.js @@ -170,101 +170,3 @@ function makeSubplotData(gd) { return subplotData; } - -function makeSubplotLayer(plotinfo) { - var plotgroup = plotinfo.plotgroup, - id = plotinfo.id; - - // Layers to keep plot types in the right order. - // from back to front: - // ...
2
diff --git a/articles/support/matrix.md b/articles/support/matrix.md @@ -82,10 +82,6 @@ This section covers the browsers that Auth0 will support when using the Auth0 Da <td>Apple Safari (Latest version)</td> <td><div class="label label-warning">Sustained</div></td> </tr> - <tr> - <td>Microsoft Internet Explorer 11</td>...
2
diff --git a/src/UnitTests/Core/Events/CommandHandlerTests/CommandReceivedHandlerShould.cs b/src/UnitTests/Core/Events/CommandHandlerTests/CommandReceivedHandlerShould.cs @@ -19,7 +19,7 @@ public void CallProcessOnCommandWhenEnabled() var fakeCommand = new FakeCommand(GetTestRepository(), true); CommandHandler commandH...
14
diff --git a/Libraries/Components/ScrollResponder.js b/Libraries/Components/ScrollResponder.js @@ -440,7 +440,7 @@ const ScrollResponderMixin = { UIManager.dispatchViewManagerCommand( nullthrows(this.scrollResponderGetScrollableNode()), - UIManager.RCTScrollView.Commands.scrollTo, + commandID, [x || 0, y || 0, animated...
11
diff --git a/website/themes/uppy/layout/example.ejs b/website/themes/uppy/layout/example.ejs text = JSON.stringify(text); } - container.value += text; + container.value += text + '\n'; container.scrollTop = container.scrollHeight + '\n'; }; }(console.log.bind(console), document.getElementById("console-log")));
0
diff --git a/books/admin.py b/books/admin.py @@ -20,9 +20,9 @@ class LibraryAdmin(admin.ModelAdmin): class BookAdmin(admin.ModelAdmin): inlines = [BookCopyInline] - list_display = ['title', 'author'] + list_display = ['isbn', 'title', 'author'] list_per_page = 20 - search_fields = ['title', 'author'] + search_fields = ...
0
diff --git a/src/libraries/adapters/DatabaseMySql.php b/src/libraries/adapters/DatabaseMySql.php @@ -1857,7 +1857,7 @@ class DatabaseMySql implements DatabaseInterface switch($name) { case 'album': - $subquery = sprintf("`id` IN (SELECT element FROM `{$this->mySqlTablePrefix}elementAlbum` WHERE `{$this->mySqlTablePrefi...
1
diff --git a/OurUmbraco.Site/config/uVersion.config b/OurUmbraco.Site/config/uVersion.config <configuration default="v750"> <versions> <!-- version key="v5" name="Version 5.0.x" description="Compatible with version 5.0.x" vote="false"/ --> + <version key="v830" name="Version 8.3.x" description="Compatible with version ...
11
diff --git a/assets/js/modules/analytics/datastore/accounts.test.js b/assets/js/modules/analytics/datastore/accounts.test.js @@ -89,7 +89,7 @@ describe( 'modules/analytics accounts', () => { registry.dispatch( STORE_NAME ).createAccount( { accountName, propertyName, profileName, timezone } ); await subscribeUntil( regi...
7
diff --git a/local_modules/SendFundsTab/Views/SendFundsView.web.js b/local_modules/SendFundsTab/Views/SendFundsView.web.js @@ -491,7 +491,7 @@ class SendFundsView extends View ) const estimatedTotalFee_JSBigInt = hostingServiceFee_JSBigInt.add(estimatedNetworkFee_JSBigInt) const estimatedTotalFee_str = monero_utils.for...
2
diff --git a/src/modules/Graphics.js b/src/modules/Graphics.js @@ -774,9 +774,9 @@ class Graphics { textObj.textContent = textString if (textString.length > 0) { // ellipsis is needed - if (textObj.getComputedTextLength() >= width) { + if (textObj.getComputedTextLength() >= width / 1.1) { for (let x = textString.length...
7
diff --git a/packages/app/src/server/service/config-loader.ts b/packages/app/src/server/service/config-loader.ts @@ -458,7 +458,7 @@ const ENV_VAR_NAME_TO_CONFIG_INFO = { }, SLACKBOT_TYPE: { ns: 'crowi', - key: 'slackbot:currentType', // enum SlackbotType + key: 'slackbot:currentBotType', // enum SlackbotType type: Val...
13
diff --git a/components/explorer/explore-search.js b/components/explorer/explore-search.js @@ -2,6 +2,8 @@ import React, {useState, useCallback, useEffect} from 'react' import Router from 'next/router' import {debounce} from 'lodash' +import theme from '@/styles/theme' + import {search} from '@/lib/explore/api' import ...
0
diff --git a/src/track.js b/src/track.js @@ -33,7 +33,16 @@ const getSlideClasses = spec => { spec.currentSlide <= index && index < spec.currentSlide + spec.slidesToShow; } - let slickCurrent = index === spec.targetSlide; + + let focusedSlide; + if (spec.targetSlide < 0) { + focusedSlide = spec.targetSlide + spec.slide...
1
diff --git a/extensions/README.md b/extensions/README.md -# Content Extensions +# Extensions This folder contains content extensions to the SpatioTemporal Asset Catalog specification. The core STAC specification defines only a minimal core, but is designed for extension. It is expected that most real-world
2
diff --git a/generators/client/templates/vue/src/main/webapp/app/admin/configuration/configuration.service.ts.ejs b/generators/client/templates/vue/src/main/webapp/app/admin/configuration/configuration.service.ts.ejs @@ -12,11 +12,10 @@ export default class ConfigurationService { } } - resolve( properties.sort((propert...
7
diff --git a/src/main-blockchain/wallet/Main-Blockchain-Wallet.js b/src/main-blockchain/wallet/Main-Blockchain-Wallet.js @@ -190,12 +190,12 @@ class MainBlockchainWallet { if (typeof address === "object" && address.hasOwnProperty("address")) address = address.address; - for (let i = 0; i < this.addresses.length; i++) -...
7
diff --git a/src/components/dashboard/Claim.js b/src/components/dashboard/Claim.js @@ -48,10 +48,9 @@ class Claim extends Component<ClaimProps, ClaimState> { } const { entitlement } = this.props.store.get('account') - const goodWallet = this.goodWalletWrapped const [claimedToday, nextClaimDate] = await Promise.all([ - ...
1
diff --git a/src/components/webView/iframe.embed.html b/src/components/webView/iframe.embed.html +<!-- IFrame DOMContentLoaded support --> <script type="text/javascript"> (function () { - var DOMReady = 'DOMContentLoaded'; - var messenger = (window.ReactNativeWebView || parent || {}).postMessage; + var messenger = wind...
3
diff --git a/package.json b/package.json }, "devDependencies": { "@11ty/eleventy-plugin-syntaxhighlight": "^2.0.3", - "ava": "^2.2.0", + "ava": "^2.4.0", "ink-docstrap": "1.3.2", "jsdoc": "3.6.2", "lint-staged": "^9.2.5",
3
diff --git a/packages/openneuro-app/src/scripts/utils/global-polyfill.ts b/packages/openneuro-app/src/scripts/utils/global-polyfill.ts @@ -4,16 +4,9 @@ interface Object { global: object } -// eslint-disable-next-line @typescript-eslint/ban-types -function polyfillGlobal(): object { - if (typeof global !== 'undefined') ...
7
diff --git a/docs/Air.md b/docs/Air.md @@ -16,6 +16,7 @@ The Air workflow allows you to do what most travel agents did in the past and wh * [.importPNR(params)](#importPNR) * [.flightInfo(params)](#flightInfo) * [.getPNRByTicketNumber(params)](#getPNRByTicketNumber) +* [.searchBookingsByPassengerName(params)](#searchBo...
0
diff --git a/spec/calculus.spec.js b/spec/calculus.spec.js @@ -181,5 +181,194 @@ describe('calculus', function () { } }); + it('should integrate properly', function () { + // given + var testCases = [ + { + given: 'integrate(sin(x), x)', + expected: '-cos(x)' + }, + { + given: 'integrate(cos(x), x)', + expected: 'sin(x...
0
diff --git a/shared/data/constants.js b/shared/data/constants.js -let constants = { +module.exports = { "trackerListLoc": "data/tracker_lists", "blockLists": [ "trackersWithParentCompany.json" @@ -48,7 +48,3 @@ let constants = { "automattic": 7 } } - -if (module && module.exports) { - module.exports = constants -}
2
diff --git a/packages/composables/use-polyline-drawing/index.ts b/packages/composables/use-polyline-drawing/index.ts @@ -79,6 +79,13 @@ export default function (props, $services: VcViewerProvider, drawTipOpts) { } } + const { defined, Cartesian2 } = Cesium + lastClickPosition = lastClickPosition || new Cesium.Cartesian...
1
diff --git a/token-metadata/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83/metadata.json b/token-metadata/0xe61eECfDBa2aD1669cee138f1919D08cEd070B83/metadata.json "symbol": "VGTG", "address": "0xe61eECfDBa2aD1669cee138f1919D08cEd070B83", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/token-metadata/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B/metadata.json b/token-metadata/0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B/metadata.json "symbol": "CBR", "address": "0x4Ba012f6e411a1bE55b98E9E62C3A4ceb16eC88B", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/src/defaults.js b/src/defaults.js @@ -274,7 +274,7 @@ JSONEditor.defaults.resolvers.unshift(function(schema) { // Use the table editor for arrays with the format set to `table` JSONEditor.defaults.resolvers.unshift(function(schema) { // Type `array` with format set to `table` - if(schema.type == "array" &&...
4
diff --git a/js/models/denseMatrix.js b/js/models/denseMatrix.js @@ -106,7 +106,7 @@ function dataToHeatmap(column, vizSettings, data, samples) { function geneProbesToHeatmap(column, vizSettings, data, samples) { var pos = parsePos(column.fields[0]); // disabled until we support the query - if (!_.get(data, 'req') || !...
9
diff --git a/Source/Core/Resource.js b/Source/Core/Resource.js @@ -1774,7 +1774,7 @@ define([ }; function loadWithHttpRequest(url, responseType, method, data, headers, deferred, overrideMimeType) { - // Note: only the 'json' responseType transforms the loaded buffer + // Note: only the 'json' and 'text' responseTypes t...
9
diff --git a/doc/README.md b/doc/README.md * **Tooltip queuing** - The tooltip queue makes it a fundamental rule of the system that there will only ever be one tooltip visible on the screen. When the user moves their cursor to another element with a tooltip, the last tooltip will close gracefully before the next toolti...
7
diff --git a/ui/src/plugins/Notify.js b/ui/src/plugins/Notify.js @@ -129,8 +129,8 @@ const Notifications = { if (notif.group === false) { notif.group = void 0 } - else if (notif.group !== void 0) { - if (notif.group === true) { + else { + if (notif.group === void 0 || notif.group === true) { // do not replace notificat...
1
diff --git a/src/regions/TextAreaRegion.js b/src/regions/TextAreaRegion.js @@ -13,6 +13,7 @@ import { TextAreaModel } from "../tags/control/TextArea"; import { guidGenerator } from "../core/Helpers"; import styles from "./TextAreaRegion/TextAreaRegion.module.scss"; +import { HtxTextBox } from "../components/HtxTextBox/...
4
diff --git a/components/FontSize/Sync.js b/components/FontSize/Sync.js @@ -2,25 +2,30 @@ import React, { useEffect } from 'react' import { FONT_SIZE_KEY, useFontSize } from '../../lib/fontSize' import { DEFAULT_FONT_SIZE } from '@project-r/styleguide' import NextHead from 'next/head' +import { css } from 'glamor' const...
12
diff --git a/src/utils/init/config-github.js b/src/utils/init/config-github.js @@ -101,6 +101,8 @@ async function configGithub(ctx, site, repo) { } } + // TODO: Generalize this so users can reset these automatically. + // Quick and dirty implementation const ntlHooks = await ctx.netlify.listHooksBySiteId({ siteId: site...
12
diff --git a/ui/component/markdownLink/view.jsx b/ui/component/markdownLink/view.jsx @@ -18,9 +18,13 @@ type Props = { function MarkdownLink(props: Props) { const { children, href, title, embed = false, parentCommentId, isMarkdownPost, simpleLinks = false } = props; - const decodedUri = decodeURI(href); - if (!href) { ...
9
diff --git a/modules/Cockpit/webhooks.php b/modules/Cockpit/webhooks.php @@ -17,17 +17,23 @@ if (!function_exists('curl_init')) { if ($cachepath = $this->path('#tmp:webhooks.cache.php')) { $webhooks = include($cachepath); } else { - $webhooks = $app->storage->find('cockpit/webhooks'); - $this->helper('fs')->write('#tmp...
7
diff --git a/src/main/webapp/render.html b/src/main/webapp/render.html <script src="lib/jquery.ba-resize.js"></script> <script src="plugins/echart/china.js"></script> <script src="plugins/ace/ace.js"></script> - <script src="plugins/ui-ace/ui-ace.min.js"></script> + <script src="plugins/ui-ace/ui-ace.js"></script> <scr...
14
diff --git a/common/stores/organisation-store.js b/common/stores/organisation-store.js @@ -16,7 +16,9 @@ const controller = { data.get(`${Project.api}organisations/${id}/invites/`), ] : [])).then((res) => { if (id === store.id) { - const [projects, users, invites, usage] = res; + // eslint-disable-next-line prefer-cons...
9
diff --git a/deepfence_ui/app/scripts/components/integration-view/reports/reports.js b/deepfence_ui/app/scripts/components/integration-view/reports/reports.js @@ -579,8 +579,8 @@ const Reports = props => { const hostName = host_name && host_name.map(v => v.value); globalFilter = { type: [compliance_provider.value], - h...
3
diff --git a/source/setup/containers/AddArchivePage.js b/source/setup/containers/AddArchivePage.js @@ -117,9 +117,6 @@ export default connect( onConnectWebDAVBasedSource: (type, url, username, password) => dispatch => { let webdavURL; switch (type) { - case "nextcloud": - webdavURL = joinURL(url, "remote.php/dav/files/...
2
diff --git a/gulpfile.js b/gulpfile.js @@ -234,10 +234,8 @@ async function unpackPacks() { * Cook db source json files into .db files with nedb */ var cookErrorCount = 0; -var cookWarningCount = 0; var cookAborted = false; var packErrors = {}; -var packWarnings = {}; async function cookPacks() { console.log(`Cooking db...
2
diff --git a/src/workingtitle-vcockpits-instruments-cj4/html_ui/Pages/VCockpit/Instruments/Airliners/CJ4/Shared/Autopilot/WT_VnavAutopilot.js b/src/workingtitle-vcockpits-instruments-cj4/html_ui/Pages/VCockpit/Instruments/Airliners/CJ4/Shared/Autopilot/WT_VnavAutopilot.js @@ -228,12 +228,9 @@ class WT_VnavAutopilot { i...
13
diff --git a/html/settings/_settings.scss b/html/settings/_settings.scss @@ -1638,7 +1638,7 @@ $sprk-toggle-trigger-transition: $sprk-link-transition !default; /// The hover border bottom style for Toggle Trigger. $sprk-toggle-trigger-hover-border-bottom: $sprk-link-has-icon-hover-border-bottom !default; /// The hover ...
3
diff --git a/js/coreweb/bisweb_connectivityvis3d.js b/js/coreweb/bisweb_connectivityvis3d.js @@ -15,10 +15,6 @@ const globalParams={ const lobeoffset=20.0; const axisoffset=[0,5.0,20.0]; -const brain_colors = [ - [ 1.0,1.0,1.0 ], - [ 1.0,1.0,1.0 ] -]; const color_modes = [ 'Uniform', 'PosDegree', 'NegDegree', 'Sum', 'D...
3
diff --git a/includes/Modules/Analytics.php b/includes/Modules/Analytics.php @@ -1421,7 +1421,6 @@ final class Analytics extends Module $dimension_filter->setExpressions( array( rawurldecode( $args['page'] ) ) ); $dimension_filter_clause = new Google_Service_AnalyticsReporting_DimensionFilterClause(); $dimension_filter...
2
diff --git a/tests/unit/specs/store/session.spec.js b/tests/unit/specs/store/session.spec.js @@ -195,12 +195,31 @@ describe(`Module: Session`, () => { const commit = jest.fn() const dispatch = jest.fn() state.signedIn = true + state.addresses = [ + { + address: `123`, + type: `explore` + }, + { + address: `456`, + type...
7
diff --git a/docs/content/widgets/Grids.js b/docs/content/widgets/Grids.js @@ -65,7 +65,13 @@ export const Grids = <cx> selection={{type: KeySelection, bind: '$page.selection', multiple: true}} /> </div> - <CodeSnippet putInto="code" fiddle="kzHH3vkM">{` + <Content name="code"> + <div> + <Tab value-bind="$page.code.tab...
0
diff --git a/tools/CommandLineTools.hx b/tools/CommandLineTools.hx @@ -928,7 +928,7 @@ class CommandLineTools { LogHelper.println ("\x1b[37m 888 \x1b[0m"); LogHelper.println (""); - LogHelper.println ("\x1b[1mOpenFL Command-Line Tools\x1b[0;1m (" + HaxelibHelper.getVersion (new Haxelib ("openfl")) + "-L" + StringHelper...
7
diff --git a/packages/vue/docs/contributing/github-guidelines.md b/packages/vue/docs/contributing/github-guidelines.md @@ -219,7 +219,7 @@ For example: `#290-contribution-guide`, and description of the issue **should no There are lots of way to create a local branch, below are two most common ways: -### Using terminal ...
1
diff --git a/login.js b/login.js @@ -164,6 +164,10 @@ async function tryLogin() { <i class="fal fa-sign-in"></i> Switch account </nav> + <nav class=subbutton id=logout-button> + <i class="fal fa-sign-out"></i> + Log out + </nav> </div> </nav> </div> @@ -236,6 +240,10 @@ async function tryLogin() { loginForm.classList.a...
0
diff --git a/test/unit/specs/components/staking/__snapshots__/PageValidator.spec.js.snap b/test/unit/specs/components/staking/__snapshots__/PageValidator.spec.js.snap @@ -989,9 +989,9 @@ exports[`PageValidator shows a validator profile information if user hasn't sign </tmpage-stub> `; -exports[`PageValidator shows a va...
3
diff --git a/resources/prosody-plugins/token/util.lib.lua b/resources/prosody-plugins/token/util.lib.lua @@ -142,7 +142,7 @@ function Util:get_public_key(keyId) end --- Verifies issuer part of token --- @param 'iss' claim from the token to verify +-- @param 'issClaim' claim from the token to verify -- @param 'acceptedI...
11
diff --git a/README.md b/README.md @@ -24,7 +24,7 @@ If you want the ansible approach, you can find ansible role [here](https://githu ## Package Installation If you want to install it on the Debian & Ubuntu based operating systems. * Prerequisites: -multiparty-meeting will run on nodejs v12.x and later versions. +multi...
3
diff --git a/public/javascripts/Admin/src/Admin.js b/public/javascripts/Admin/src/Admin.js @@ -941,28 +941,60 @@ function Admin(_, $, c3, turf) { }); }); $.getJSON('/adminapi/labels/all', function (data) { + for (var i = 0; i < data.features.length; i++) { + data.features[i].label_type = data.features[i].properties.lab...
1
diff --git a/token-metadata/0xa0246c9032bC3A600820415aE600c6388619A14D/metadata.json b/token-metadata/0xa0246c9032bC3A600820415aE600c6388619A14D/metadata.json "symbol": "FARM", "address": "0xa0246c9032bC3A600820415aE600c6388619A14D", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/includes/Core/Modules/Module.php b/includes/Core/Modules/Module.php @@ -659,8 +659,6 @@ abstract class Module { /** * Sets whether or not to return raw requests and returns a callback to reset to the previous value. * - * This works similar to e.g. a higher-order component in JavaScript. - * * @since n.e.x...
2
diff --git a/src/core/background/object/song.js b/src/core/background/object/song.js @@ -103,17 +103,7 @@ define((require) => { * Safe copy of initial parsed data. * Must not be modified. */ - this.parsed = { - artist: parsedData.artist, - track: parsedData.track, - album: parsedData.album, - uniqueID: parsedData.uniqu...
12
diff --git a/src/types/components/a11y.d.ts b/src/types/components/a11y.d.ts @@ -51,4 +51,25 @@ export interface A11yOptions { * @default 'swiper-notification' */ notificationClass?: string; + + /** + * Message for screen readers for outer swiper container + * + * @default null + */ + containerMessage?: string; + + /**...
0
diff --git a/packages/lib/src/core/presets/columnGallery.js b/packages/lib/src/core/presets/columnGallery.js @@ -13,7 +13,6 @@ const fixToColumn = (options) => { presetOptions.isVertical = false; presetOptions.groupSize = 1; presetOptions.groupTypes = '1'; - presetOptions.slideshowLoop = false; presetOptions.numberOfIm...
11
diff --git a/docs-website/pages/cli-export.md b/docs-website/pages/cli-export.md @@ -31,20 +31,28 @@ Provide the `--output=/path/to/assets` argument to specify a custom output folde ## Layers -Any layer can be exported with `sketchtool`. By default only slices and layers marked _Exportable_ are exported. Alternatively,...
7
diff --git a/src/plugins/Dashboard/index.js b/src/plugins/Dashboard/index.js @@ -131,6 +131,7 @@ module.exports = class Dashboard extends Plugin { this.isModalOpen = this.isModalOpen.bind(this) this.addTarget = this.addTarget.bind(this) + this.removeTarget = this.removeTarget.bind(this) this.hideAllPanels = this.hideAl...
0
diff --git a/api/test/utils/__snapshots__/create-graphql-error-formatter.test.js.snap b/api/test/utils/__snapshots__/create-graphql-error-formatter.test.js.snap exports[`createGraphQLErrorFormatter logs error path 1`] = ` Array [ "---GraphQL Error---", - "GraphQLError: Cannot return null for non-nullable field Thread.c...
1
diff --git a/bin/language_scan.js b/bin/language_scan.js @@ -168,7 +168,7 @@ languages.forEach(language => { log("=========="); var translations = JSON.parse(fs.readFileSync(BASEDIR+"/lang/"+language.url).toString()); translatedStrings.forEach(str => { - if (!translations.GLOBAL[str]) + if (!translations.GLOBAL[str.str...
4
diff --git a/articles/email/liquid-syntax.md b/articles/email/liquid-syntax.md @@ -24,12 +24,46 @@ There are two types of markup in Liquid: **output** and **tag**. `Hello {{ name }}!` -You can further customize the appearance of the output by using [filters](https://github.com/Shopify/liquid/wiki/Liquid-for-Designers#s...
0
diff --git a/assets/data/landing_pages.json b/assets/data/landing_pages.json "name": "Congressional Plan" }, { - "id": "state_sen", - "name": "State Senate Plan" + "id": "leg_dist", + "name": "Legislative Districts" } ] }
10
diff --git a/.eslintrc.js b/.eslintrc.js @@ -27,7 +27,7 @@ module.exports = { ], "block-scoped-var": "error", "block-spacing": "error", - "brace-style": ["error", "1tbs"], + "brace-style": ["error", "1tbs", { "allowSingleLine": true }], "callback-return": "error", camelcase: "off", "capitalized-comments": "off", @@ -45...
11
diff --git a/assets/images/expensify-wordmark.svg b/assets/images/expensify-wordmark.svg <?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/...
4
diff --git a/packages/spark/components/masthead.js b/packages/spark/components/masthead.js @@ -5,7 +5,7 @@ import { isEscPressed } from '../utilities/keypress'; import isElementVisible from '../utilities/isElementVisible'; import scrollYDirection from '../utilities/scrollYDirection'; import { hideDropDown, showDropDown...
3
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -73,6 +73,41 @@ Markdown on this site conforms to the [CommonMark](http://commonmark.org/) spec. ### Headings +``` +The headings are written in the following manner (the number of hashtags describes the level of the heading in the document.): +# H1 +## H2 +### H3 +#### ...
3
diff --git a/src/patterns/fundamentals/color/collection.yaml b/src/patterns/fundamentals/color/collection.yaml description: These are the colors that have been chosen to represent the brand. The colors are set as - variables in Spark and as document colors in the Design Toolkit. + variables in Spark. sparkPackageCore: ...
3
diff --git a/docs/event-listener.rst b/docs/event-listener.rst @@ -79,14 +79,14 @@ To configure carrier-grade network address translation (CGNAT), use the followin - The Large Scale NAT (LSN) Pool must use the Telemetry Streaming Log Publisher you created (**telemetry_publisher** if you used the AS3 example to configur...
1
diff --git a/continuous_deployment/bs.js b/continuous_deployment/bs.js @@ -14,14 +14,14 @@ var iPhone = { 'browserstack.key': process.argv[3] } -// var android = { -// browserName: 'android', -// device: 'Samsung Galaxy S8', -// realMobile: 'true', -// os_version: '7.0', -// 'browserstack.user': process.argv[2], -// 'b...
2
diff --git a/token-metadata/0xbCa3C97837A39099eC3082DF97e28CE91BE14472/metadata.json b/token-metadata/0xbCa3C97837A39099eC3082DF97e28CE91BE14472/metadata.json "symbol": "DUST", "address": "0xbCa3C97837A39099eC3082DF97e28CE91BE14472", "decimals": 8, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/microraiden/microraiden/test/test_eth_ticker.py b/microraiden/microraiden/test/test_eth_ticker.py import pytest # noqa: F401 +from _pytest.monkeypatch import MonkeyPatch +from flask import jsonify from microraiden import DefaultHTTPClient from microraiden.examples.eth_ticker import ETHTickerClient, ETHTick...
7
diff --git a/javascripts/core/timestudies.js b/javascripts/core/timestudies.js @@ -281,7 +281,9 @@ var path = [0,0]; } for (var i = 1; i < row; i++) { var chosenPath = path[i > 11 ? 1 : 0]; + if (row > 6 && row < 11) var secondPath = col; if ((i > 6 && i < 11) || (i > 11 && i < 15)) buyTimeStudy(i * 10 + (chosenPath ==...
11
diff --git a/assets/js/components/settings/SettingsApp.test.js b/assets/js/components/settings/SettingsApp.test.js @@ -30,7 +30,6 @@ import { fireEvent, createTestRegistry, provideModules, - act, } from '../../../../tests/js/test-utils'; import { CORE_USER } from '../../googlesitekit/datastore/user/constants'; import {...
2
diff --git a/api/services/KongService.js b/api/services/KongService.js @@ -166,11 +166,18 @@ var KongService = { getData(data, (Utils.withoutTrailingSlash(req.kong_admin_url) || Utils.withoutTrailingSlash(req.connection.kong_admin_url)) + response.body.next); } else { + try { response.body.data = data; ProxyHooks.after...
9
diff --git a/token-metadata/0x291FA2725d153bcc6C7E1C304bcaD47fdEf1EF84/metadata.json b/token-metadata/0x291FA2725d153bcc6C7E1C304bcaD47fdEf1EF84/metadata.json "symbol": "MX3", "address": "0x291FA2725d153bcc6C7E1C304bcaD47fdEf1EF84", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/packages/spark-core/settings/_settings.scss b/packages/spark-core/settings/_settings.scss @@ -486,7 +486,7 @@ $modal-shadow: 0 4px 5px rgba(0, 0, 0, 0.6) !default; // Masthead / Main Nav // $masthead-bg-color: $white !default; -$big-nav-breakpoint: 50rem !default; +$big-nav-breakpoint: 54rem !default; $mas...
3
diff --git a/app-template/package-template.json b/app-template/package-template.json "bezier-easing": "^2.0.3", "bhttp": "1.2.1", "bitauth": "^0.2.1", - "bitcore-wallet-client": "6.1.0", + "bitcore-wallet-client": "6.2.0", "bower": "^1.7.9", "cordova-android": "5.1.1", "cordova-custom-config": "^3.0.5",
3
diff --git a/includes/Core/Permissions/Permissions.php b/includes/Core/Permissions/Permissions.php @@ -18,7 +18,6 @@ use Google\Site_Kit\Core\Modules\Module_With_Owner; use Google\Site_Kit\Core\Modules\Modules; use Google\Site_Kit\Core\Storage\User_Options; use Google\Site_Kit\Core\Util\Feature_Flags; -use WP_User; /**...
2
diff --git a/shaders.js b/shaders.js @@ -975,6 +975,108 @@ const _ensureLoadMesh = p => { transparent: true, }); */ +/* const wallGeometry = (() => { + const panelGeometries = []; + for (let x = -1 / 2; x <= 1 / 2; x++) { + panelGeometries.push( + new THREE.BoxBufferGeometry(0.01, 1, 0.01) + .applyMatrix4(new THREE.Mat...
0
diff --git a/index.html b/index.html <input class="form__field" type="number" placeholder="Enter Radius" id="inputradiushemisph" oninput="solvehemisphere();"> - <p class="stopwrap" id="resultofvolhollowsp" + <p class="stopwrap" id="resultofvolhemisp" style="font-family:mathfont;"></p> - <p class="stopwrap" id="resultof...
1
diff --git a/packages/diffhtml-website/public/styles/index.css b/packages/diffhtml-website/public/styles/index.css @import 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/tomorrow-night.min.css'; -@import 'https://fonts.googleapis.com/css?family=Lato:300,400,bold'; +@import 'https://fonts.googleapis....
7
diff --git a/src/utils/wallet.js b/src/utils/wallet.js @@ -442,6 +442,7 @@ class Wallet { async getLedgerAccountIds() { const publicKey = await this.getLedgerPublicKey() + await store.dispatch(setLedgerTxSigned(true)) // TODO: getXXX methods shouldn't be modifying the state await setKeyMeta(publicKey, { type: 'ledger' ...
12
diff --git a/src/components/EditableField/EditableFieldComposite.tsx b/src/components/EditableField/EditableFieldComposite.tsx @@ -70,6 +70,9 @@ export class EditableFieldComposite extends React.PureComponent< size: props.size, onInputFocus: this.handleFieldFocus(child.props.onInputFocus), onInputBlur: this.handleField...
9
diff --git a/scripts/get-quests.js b/scripts/get-quests.js @@ -3,7 +3,6 @@ const path = require('path'); const got = require('got'); -const allItems = require('../src/data/all-en.json'); const traders = require('../src/data/traders'); const formatName = (name) => { @@ -45,8 +44,7 @@ const getTraderId = (name) => { } co...
4
diff --git a/articles/tokens/id-token.md b/articles/tokens/id-token.md @@ -96,8 +96,8 @@ Once issued, tokens can not be revoked in the same fashion as cookies with sessi ## More Information * [Overview of JSON Web Tokens](/jwt) -* [Silent Authentication for Single Page Apps](/api-auth/tutorials/silent-authentication). ...
2
diff --git a/app/shared/components/ColdWallet/Wallet/Transaction.js b/app/shared/components/ColdWallet/Wallet/Transaction.js @@ -48,7 +48,7 @@ class ColdWalletTransaction extends Component<Props> { const validContracts = ['eosio', 'eosio.token', 'eosio.msig']; const validActions = actions.filter((action) => validContra...
11
diff --git a/token-metadata/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/metadata.json b/token-metadata/0x49E833337ECe7aFE375e44F4E3e8481029218E5c/metadata.json "symbol": "VALUE", "address": "0x49E833337ECe7aFE375e44F4E3e8481029218E5c", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED...
3
diff --git a/token-metadata/0x035dF12E0F3ac6671126525f1015E47D79dFEDDF/metadata.json b/token-metadata/0x035dF12E0F3ac6671126525f1015E47D79dFEDDF/metadata.json "symbol": "0XMR", "address": "0x035dF12E0F3ac6671126525f1015E47D79dFEDDF", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/tests/mocha/block_test.js b/tests/mocha/block_test.js @@ -105,7 +105,7 @@ suite('Blocks', function() { // Add extra input to middle block blocks.B.appendValueInput("INPUT").setCheck(null); blocks.B.unplug(true); - assertUnpluggedNoheal(blocks); + assertUnpluggedHealed(blocks); }); test('Child block has mul...
1
diff --git a/README.md b/README.md @@ -74,24 +74,23 @@ $ npm install vue ## Build Setup ``` bash -Once you have cloned this repo : -# install dependencies -npm install +# Once you have cloned this repo, install dependencies +$ npm install # build for development and production with minification -npm run build +$ npm ru...
1
diff --git a/src/components/Main/Main.tsx b/src/components/Main/Main.tsx @@ -215,7 +215,9 @@ function Main() { result={result} caseCounts={empiricalCases} scenarioUrl={scenarioUrl} - openPrintPreview={() => setPrintable(true)} + openPrintPreview={() => { + setPrintable(true) + }} /> </Col> </Row>
1