code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/bids-validator/utils/files/readFile.js b/bids-validator/utils/files/readFile.js @@ -8,6 +8,12 @@ const JSONFilePattern = /.json$/
const isJSONFile = file =>
JSONFilePattern.test(isNode ? file.name : file.relativePath)
+// Work around JSDom not providing TextDecoder yet
+if (typeof TextDecoder === 'undefine... | 7 |
diff --git a/server/homebrew.model.js b/server/homebrew.model.js @@ -34,10 +34,9 @@ HomebrewSchema.methods.sanatize = function(full=false){
return brew;
};
-HomebrewSchema.methods.sanitizeHtml = function(){
- const brew = this.toJSON();
+HomebrewSchema.methods.escapeTextForHtmlDisplay = function(){
const replaceStrings... | 10 |
diff --git a/templates/docs/installation.fr.md b/templates/docs/installation.fr.md +<% seoDescription("Installer le framework Buffalo") %>
+<% seoKeywords(["buffalo", "go", "golang", "installation", "framework", "web"]) %>
+
<%= h1("Installation") %>
Buffalo fournit **deux composants majeurs** :
| 7 |
diff --git a/assets/js/modules/analytics/datastore/properties.js b/assets/js/modules/analytics/datastore/properties.js @@ -36,7 +36,7 @@ const FETCH_PROPERTIES_PROFILES = 'FETCH_PROPERTIES_PROFILES';
const RECEIVE_CREATE_PROPERTY = 'RECEIVE_CREATE_PROPERTY';
const RECEIVE_CREATE_PROPERTY_FAILED = 'RECEIVE_CREATE_PROPER... | 10 |
diff --git a/public/assets/homepage.js b/public/assets/homepage.js @@ -216,18 +216,20 @@ $( document ).ready(function() {
var pausedVideos = {};
-// Throttle to 1 call/second to avoid lag
-var lazyPlayVideosThrottled = _.throttle(lazyPlayVideos, 1000);
+// Wrappers around lazyPlayVideos()
+var lazyPlayVideosThrottled =... | 7 |
diff --git a/_includes/community/community-meetings-table.html b/_includes/community/community-meetings-table.html <a name="meetings"></a>
<div align="center"><h3 class="first">Layer5 Meetings</h3></div>
-<div style="overflow-x:hidden;">
+<div style="overflow-x:auto;">
<table id="meetingstable">
<tr>
<th class="first" ... | 11 |
diff --git a/js/webcomponents/bisweb_mainviewerapplication.js b/js/webcomponents/bisweb_mainviewerapplication.js @@ -918,7 +918,6 @@ class ViewerApplicationElement extends HTMLElement {
let filetreepipeline = document.querySelector(filetreepipelineid);
webutil.createMenuItem(hmenu, 'Open File Tree Pipeline',
() => {
- ... | 2 |
diff --git a/js/core/bis_wrapperutils.js b/js/core/bis_wrapperutils.js @@ -126,16 +126,23 @@ var initialize_wasm=function(obj=null) {
return new Promise( (resolve,reject) => {
+ let done=function(m) {
+ resolve(m);
+ };
+
if (!obj) {
if (typeof window !== 'undefined') {
obj=window;
binary=genericio.fromzbase64(window.b... | 1 |
diff --git a/lib/waterline/utils/query/private/normalize-criteria.js b/lib/waterline/utils/query/private/normalize-criteria.js @@ -239,6 +239,9 @@ module.exports = function normalizeCriteria(criteria, modelIdentity, orm, meta)
'usage has changed. Now, to run aggregate queries using the `groupBy` operator, '+
'use a nat... | 0 |
diff --git a/docs/source/guides/cypress-basics/commands-elements-and-assertions.md b/docs/source/guides/cypress-basics/commands-elements-and-assertions.md @@ -225,7 +225,7 @@ expect(true).to.be.true
Check out our example recipes for [unit testing](https://github.com/cypress-io/cypress-example-recipes/blob/master/cypres... | 3 |
diff --git a/assets/js/modules/analytics/components/dashboard/DashboardUniqueVisitorsWidget.stories.js b/assets/js/modules/analytics/components/dashboard/DashboardUniqueVisitorsWidget.stories.js @@ -35,7 +35,7 @@ const Template = ( args ) => {
const widgetSlug = 'dashboardUniqueVisitorsWidget';
return (
- <WithRegistry... | 2 |
diff --git a/sirepo/template/srw.py b/sirepo/template/srw.py @@ -394,7 +394,7 @@ def find_height_profile_dimension(dat_file):
def fixup_old_data(data):
"""Fixup data to match the most recent schema."""
- for m in ('fluxAnimation', 'fluxReport', 'gaussianBeam', 'initialIntensityReport', 'intensityReport', 'mirrorReport'... | 12 |
diff --git a/README.md b/README.md @@ -16,7 +16,7 @@ Simply include the library and the css in your JQuery UI project and you're away
Tabulator is packed with useful features including:
-
+ => (
const translateId = (transaction, actionArgs, actionKind, accountId) => (
`actions.${actionKind
}${actionKind === `AddKey`
- ... | 3 |
diff --git a/components/bases-locales/index.js b/components/bases-locales/index.js -import React, {useEffect, useState} from 'react'
+import React from 'react'
import PropTypes from 'prop-types'
import Link from 'next/link'
import Image from 'next/image'
@@ -11,17 +11,12 @@ import Partners from '@/components/bases-loca... | 7 |
diff --git a/package.json b/package.json "node-sass": "4.12.0",
"postcss": "7.0.18",
"postcss-combine-duplicated-selectors": "8.0.2",
- "postcss-custom-properties": "9.0.2",
+ "postcss-custom-properties": "8.0.11",
"postcss-remove-root": "0.0.2",
"prettier": "1.18.2",
"react": "16.9.0",
| 13 |
diff --git a/src/lib/utils/index.js b/src/lib/utils/index.js @@ -59,7 +59,7 @@ export function priceByCurrencyCode(currencyCode, pricing) {
* @param {String} variantId - _id of target variant or option
* @returns {Object} - found variant or option or null if none found.
*/
-export function variantOrOptionById(variants,... | 10 |
diff --git a/lib/ui/components/Editor.js b/lib/ui/components/Editor.js @@ -111,13 +111,12 @@ class Editor extends React.Component {
render() {
const { selectedMock } = this.props;
+ const { selectedResponseContentTab } = this.state;
if (!selectedMock) {
return <div>Please select mock</div>;
}
- const value = selectedMo... | 1 |
diff --git a/src/client/js/components/CustomNavbar.jsx b/src/client/js/components/CustomNavbar.jsx @@ -27,8 +27,8 @@ const CustomNavbar = (props) => {
}
- const navTitleId = `custom-navbar-${Math.random().toString(32).substring(2)}`;
- const navTabId = `custom-navbar-${Math.random().toString(32).substring(2)}`;
+ const... | 10 |
diff --git a/includes/Core/Authentication/Clients/OAuth_Client.php b/includes/Core/Authentication/Clients/OAuth_Client.php @@ -627,12 +627,8 @@ final class OAuth_Client {
// another way.
if ( $this->using_proxy() ) {
$this->user_options->set( Verification::OPTION, 'verified' );
- $this->options->set(
- Search_Console\S... | 14 |
diff --git a/cy_scripts/deploy.js b/cy_scripts/deploy.js @@ -70,6 +70,12 @@ const getDeployEnvironment = R.partial(cliOrAsk,
function ensureCleanWorkingDirectory () {
return repo.statusAsync()
+ .catch((e) => {
+ console.error('Could not get Git status')
+ console.error(e)
+ console.error('assuming clean status')
+ ret... | 9 |
diff --git a/src/components/Filter.atoms.js b/src/components/Filter.atoms.js @@ -7,12 +7,11 @@ export const FilterList = styled.ul`
justify-content: center;
list-style-type: none;
margin: 0;
- padding: 0 0 15px 0;
+ padding: 5px 0 15px 0;
@media screen and (min-width: 700px) {
li:not(:first-of-type):before {
content: '... | 7 |
diff --git a/Source/Shaders/SkyAtmosphereFS.glsl b/Source/Shaders/SkyAtmosphereFS.glsl @@ -76,7 +76,7 @@ void main (void)
#endif
// Alter alpha based on how close the viewer is to the ground (1.0 = on ground, 0.0 = at edge of atmosphere)
- float atmosphereAlpha = clamp((u_cameraAndRadiiAndDynamicAtmosphereColor.y - len... | 14 |
diff --git a/src/views/autoCompleteView.js b/src/views/autoCompleteView.js let resultsList;
// Gets the user's input value
-const getInput = selector => document.querySelector(selector);
+const getInput = selector => typeof selector === 'string' ? document.querySelector(selector) : selector();
// Creats the results lis... | 11 |
diff --git a/edit.js b/edit.js @@ -49,6 +49,7 @@ const localVector = new THREE.Vector3();
const localVector2 = new THREE.Vector3();
const localVector3 = new THREE.Vector3();
const localVector4 = new THREE.Vector3();
+const localVector2D = new THREE.Vector2();
const localQuaternion = new THREE.Quaternion();
const localQ... | 0 |
diff --git a/tests/utils/misc/index.js b/tests/utils/misc/index.js @@ -67,9 +67,9 @@ function createTestService(tmpDir, options = {
throw new Error("Either 'templateName' or 'templateDir' options have to be provided");
}
- // Ensure unique service name
const serverlessFilePath = path.join(tmpDir, 'serverless.yml');
con... | 7 |
diff --git a/js/annotationtools/AnnotationStore.js b/js/annotationtools/AnnotationStore.js @@ -78,7 +78,7 @@ AnnotationStore.prototype.fetchAnnotations = function (x1, y1, x2, y2, footprint
algorithms_urlparam = algorithms_urlparam.replace(']', '%5D')
algorithms_urlparam = algorithms_urlparam.replace(/"/g, '%22')
- foo... | 1 |
diff --git a/app/talk/lib/display-roles.cjsx b/app/talk/lib/display-roles.cjsx React = require 'react'
PropTypes = require 'prop-types'
createReactClass = require 'create-react-class'
-uniq = require 'lodash/uniq'
+uniqBy = require 'lodash/uniqBy'
zooniverseTeamRole = (role) ->
role.section is 'zooniverse' and [ 'admin... | 14 |
diff --git a/articles/api-auth/tutorials/migration/_index.md b/articles/api-auth/tutorials/migration/_index.md * [Calling your APIs with Auth0 tokens](/api-auth/tutorials/migration/api-tokens)
-* [User consent and third-party clients](/api-auth/user-consent.md)
+* [User consent and third-party clients](/api-auth/user-c... | 0 |
diff --git a/generators/server/templates/build.gradle.ejs b/generators/server/templates/build.gradle.ejs @@ -156,7 +156,7 @@ task cucumberTestReport(type: TestReport) {
<%_ } _%>
apply from: 'gradle/docker.gradle'
apply from: 'gradle/sonar.gradle'
-<%_ if (enableSwaggerCodegen) { _%>hibernate:spring:<%=packageName%>.do... | 2 |
diff --git a/runtime/html/AsyncStream.js b/runtime/html/AsyncStream.js @@ -392,7 +392,20 @@ var proto = AsyncStream.prototype = {
var stack = this._stack;
var name = this.name;
- var message = 'Async fragment failed' + (name ? ' (' + name + ')': '') + '. Exception: ' + (e.stack || e) + (stack ? ('\nCreation stack trace... | 7 |
diff --git a/includes/Modules/Analytics_4.php b/includes/Modules/Analytics_4.php @@ -1231,13 +1231,7 @@ final class Analytics_4 extends Module
$valid_metrics = apply_filters(
'googlesitekit_shareable_analytics_4_metrics',
array(
- // FIXME: Remove these before PR.
- 'sessions',
- 'totalUsers',
- 'screenPageViews',
- 'e... | 2 |
diff --git a/policykit/integrations/discord/views.py b/policykit/integrations/discord/views.py @@ -479,3 +479,8 @@ def post_policy(policy, action, users=None, template=None, channel=None):
if action.action_type == "ConstitutionAction" or action.action_type == "PlatformAction":
action.community_post = res['id']
action.s... | 0 |
diff --git a/src/cn.js b/src/cn.js D.tmr && clearTimeout(D.tmr);
delete D.tmr;
hideDlgs();
+ const [e] = x;
+ if (!(e instanceof Error)) {
$.err(...x);
+ } else if (e.code === 'ENOTFOUND') {
+ $.err(`The host "${e.host}" could not be found.`, 'Host not found');
+ } else if (e.code !== 'ETIMEDOUT') $.err(e.message, e.na... | 7 |
diff --git a/frontend/src/app/components/modals/file-uploads-modal/upload-row.js b/frontend/src/app/components/modals/file-uploads-modal/upload-row.js @@ -16,7 +16,7 @@ export default class UploadRowViewModel {
const { name, bucket, completed, error, size, loaded } = upload;
const progressText = completed ?
(error ? 'F... | 1 |
diff --git a/MigrationV3V4/Node/Skills/v3-booking-bot-skill/app.js b/MigrationV3V4/Node/Skills/v3-booking-bot-skill/app.js @@ -107,6 +107,13 @@ bot.dialog('helpDialog', function (session) {
// Add global endConversation() action bound to the 'Goodbye' intent
bot.endConversationAction('endAction', "Ok... See you later."... | 0 |
diff --git a/src/style/variables.less b/src/style/variables.less -@header-height: 5rem; // 80px
+@header-height: 3.5rem; // 56px
+@app-main-height: @header-height + 2.5rem; // 96px for banner
@header-mobile-breakpoint: 50rem;
@sidebar-width: 20rem;
@sidebar-break: ~'(min-width: 900px)';
| 13 |
diff --git a/index.html b/index.html <table class="table" style="margin: 0 auto">
<tr>
<td>
- <div class="eternityupbtnlocked" style="opacity: 0"></div>
+ <div class="eternityupbtnbought" style="opacity: 0"></div>
</td>
<td>
<button id="epmult" class="eternityupbtn" onclick="buyEPMult()">You gain 5 times more EP<p>Cost... | 10 |
diff --git a/articles/extensions/account-link.md b/articles/extensions/account-link.md @@ -23,8 +23,6 @@ The extension will create a new **Application** named `auth0-account-link` to us
## Setup
-First, navigate to the [Advanced Settings](${manage_url}/#/tenant/advanced) for your tenant. Scroll to the bottom of the pag... | 2 |
diff --git a/userscript.user.js b/userscript.user.js @@ -5974,14 +5974,16 @@ var $$IMU_EXPORT$$;
var match = result.responseText.match(/<meta\s+property=["']og:title["']\s+content=["']([^'"]+)["']/);
if (!match) {
+ console_warn("Newsen title not found", result);
return done(null, false);
}
- var title = match[1];
+ va... | 7 |
diff --git a/docs/helpers/display.html b/docs/helpers/display.html @@ -9,29 +9,57 @@ prev: "breakpoints"
<div class="siimple-h2">Display</div>
<div class="siimple-paragraph">
- Use these classes to change the display value of a element.
+ Use these classes to change the display value of an element.
</div>
+<style>
+.ex... | 7 |
diff --git a/www/_template/guides/routing.md b/www/_template/guides/routing.md @@ -41,7 +41,12 @@ module.exports = {
routes: [
{
src: '/api/.*',
- dest: (req, res) => proxy.web(req, res),
+ dest: (req, res) => {
+ // remove /api prefix (optional)
+ req.url = req.url.replace(/^\/api/, '');
+
+ proxy.web(req, res);
+ }
}... | 2 |
diff --git a/src/resources/views/crud/fields/select_grouped.blade.php b/src/resources/views/crud/fields/select_grouped.blade.php <optgroup label="{{ $category->{$field['group_by_attribute']} }}">
@foreach ($category->{$field['group_by_relationship_back']} as $subEntry)
<option value="{{ $subEntry->getKey() }}"
- @if ($... | 13 |
diff --git a/index.html b/index.html <button class="btn btn-dark" onclick="hyperfind()">Check</button><p> </p>
<p style="font-family:mathfont" id="hyperans"></p><br>
</div>
-<div class="collapse" id="kaps">
- <h1 style="color: white;font-family:mathfont">Kaprekarumber</h2><p> </p>
- <input style="color: white... | 7 |
diff --git a/components/popover/popover.jsx b/components/popover/popover.jsx @@ -437,7 +437,7 @@ const Popover = React.createClass({
assistiveText={props.closeButtonAssistiveText}
iconName="close"
iconSize="small"
- className="slds-float--right slds-popover__close"
+ className="slds-button slds-button--icon-small slds-... | 3 |
diff --git a/src/utils/schema-utils.js b/src/utils/schema-utils.js @@ -414,7 +414,7 @@ export function schemaToSampleObj(schema, config = { }) {
if (schema.allOf) {
const objWithAllProps = {};
- if (schema.allOf.length === 1 && !schema.allOf[0].properties && !schema.allOf[0].items) {
+ if (schema.allOf.length === 1 && ... | 4 |
diff --git a/packages/components/src/components/as-stacked-bar-widget/as-stacked-bar-widget.tsx b/packages/components/src/components/as-stacked-bar-widget/as-stacked-bar-widget.tsx @@ -59,7 +59,7 @@ export class StackedBarWidget {
private container: Selection<HTMLElement, {}, null, undefined>;
private zeroAxis: number ... | 4 |
diff --git a/js/navbar/bookmarkStar.js b/js/navbar/bookmarkStar.js @@ -3,8 +3,10 @@ const places = require('places/places.js')
const bookmarkStar = {
create: function (tabId) {
- const star = document.createElement('i')
+ const star = document.createElement('button')
star.className = 'fa fa-star-o tab-icon bookmarks-bu... | 7 |
diff --git a/src/traces/histogram/attributes.js b/src/traces/histogram/attributes.js @@ -172,11 +172,6 @@ module.exports = {
dflt: null,
role: 'style',
editType: 'calc',
- impliedEdits: {
- 'ybins.start': undefined,
- 'ybins.end': undefined,
- 'ybins.size': undefined
- },
description: [
'Obsolete: since v1.42 each bin ... | 2 |
diff --git a/packages/plexus/src/LayoutManager/dot/convPlain.tsx b/packages/plexus/src/LayoutManager/dot/convPlain.tsx @@ -85,11 +85,16 @@ function parseGraph(str: string, startIndex: number): { end: number; graph: TLay
};
}
+// TODO: Temporary hack to circumvent how long vertex keys are handled
+function _removeBacksl... | 0 |
diff --git a/token-metadata/0xf3A2ace8e48751c965eA0A1D064303AcA53842b9/metadata.json b/token-metadata/0xf3A2ace8e48751c965eA0A1D064303AcA53842b9/metadata.json "symbol": "HXY",
"address": "0xf3A2ace8e48751c965eA0A1D064303AcA53842b9",
"decimals": 8,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
}... | 3 |
diff --git a/src/components/dashboard/SendQRSummary.js b/src/components/dashboard/SendQRSummary.js @@ -112,6 +112,7 @@ SendQRSummary.navigationOptions = {
SendQRSummary.shouldNavigateToComponent = props => {
const { screenState } = props.screenProps
+ // Component shouldn't be loaded if there's no 'amount', nor 'to' fi... | 0 |
diff --git a/drop-manager.js b/drop-manager.js @@ -5,6 +5,7 @@ import {rigManager} from './rig.js';
import Simplex from './simplex-noise.js';
import physicsManager from './physics-manager.js';
import easing from './easing.js';
+import {rarityColors} from './constants.js';
const localVector = new THREE.Vector3();
const ... | 0 |
diff --git a/docs/react-testing-library/setup.md b/docs/react-testing-library/setup.md @@ -214,7 +214,7 @@ _Typescript config needs to be updated as follow:_
// ...,
+ "baseUrl": "src",
+ "paths": {
-+ "test-utils": ["../utils/test-utils"]
++ "test-utils": ["./utils/test-utils"]
+ }
}
}
| 1 |
diff --git a/README.markdown b/README.markdown [](./license)
[](https://www.codetriage.com/sendgrid/docs)
-This site is based on Octopress, which in turn is based on Jekyll,... | 10 |
diff --git a/lib/project/results-model.coffee b/lib/project/results-model.coffee @@ -247,10 +247,14 @@ class ResultsModel
return unless editor.getPath()
matches = []
+ if parseFloat(atom.getVersion()) >= 1.17
leadingContextLineCount = atom.config.get('find-and-replace.searchContextLineCountBefore')
trailingContextLineC... | 4 |
diff --git a/test/lib/viewports/web-mercator-viewport.spec.js b/test/lib/viewports/web-mercator-viewport.spec.js // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
-import {WebMercatorViewport} from 'deck.gl/lib/viewports';
import test from 'tape-catch';
import {vec2, vec3} fr... | 2 |
diff --git a/src/og/renderer/RendererEvents.js b/src/og/renderer/RendererEvents.js @@ -104,8 +104,10 @@ class RendererEvents extends Events {
moving: false,
/** Mouse has just stopped now. */
justStopped: false,
- /** Mose double click delay response.*/
+ /** Mose double click delay response time.*/
doubleClickDelay: 3... | 0 |
diff --git a/docs/content/examples/charts/column/Combination.js b/docs/content/examples/charts/column/Combination.js -import { HtmlElement, Grid, Repeater } from "cx/widgets";
+import { HtmlElement, Grid, Repeater, Tab, Content } from "cx/widgets";
import { Controller, KeySelection } from "cx/ui";
import { Svg, Rectang... | 0 |
diff --git a/.eslintrc.js b/.eslintrc.js @@ -16,7 +16,8 @@ module.exports = {
"react/sort-comp": 0,
"react/prop-types": 0,
"no-underscore-dangle": 0,
- "comma-dangle": 0
+ "comma-dangle": 0,
+ "no-static-element-interactions": 0,
},
"plugins": [
"react",
| 8 |
diff --git a/accessibility-checker-extension/src/ts/devtools/Header.tsx b/accessibility-checker-extension/src/ts/devtools/Header.tsx @@ -173,7 +173,7 @@ export default class Header extends React.Component<IHeaderProps, IHeaderState>
{this.props.layout === "sub" ?
<div className="bx--row" style={{ marginTop: '10px' }}>
... | 1 |
diff --git a/monetization.js b/monetization.js -const monetize = async () => {
+ export default (instanceId) => {
+ if (!instanceId) { return; }
-};
+ const monetizationStartHandler = (e) => {
+ console.log("e:", e.detail);
+ console.log("instanceId:", instanceId);
-export {
- monetize,
-};
+ if (e.detail.instanceId ==... | 0 |
diff --git a/include/rbac.hrl b/include/rbac.hrl rbac_permission_pattern_operations()}.
-type rbac_compiled_role() :: [rbac_permission_pattern()].
--type rbac_role_params() :: [{name | desc, binary()}].
--type rbac_role_def() :: {rbac_role_name(), [atom()], rbac_role_params(),
+-type rbac_role_props() :: [{name | desc,... | 10 |
diff --git a/packages/fether-react/src/Send/TxForm/TxForm.js b/packages/fether-react/src/Send/TxForm/TxForm.js @@ -331,7 +331,6 @@ class Send extends Component {
return token.address !== 'ETH'
? { amount: 'ETH balance too low to pay for gas' }
: { amount: "You don't have enough ETH balance" };
- } else {
}
} catch (err... | 1 |
diff --git a/README.md b/README.md @@ -121,14 +121,17 @@ See also
### Options
Node.js application can be called with runtime options
-(belonging to Node.js or V8). To list them type `node --help` or
-`node --v8-options`. You can "bake" these runtime options into
-packaged application. The app will always run with the o... | 7 |
diff --git a/src/govuk/components/accordion/accordion.mjs b/src/govuk/components/accordion/accordion.mjs @@ -154,13 +154,13 @@ Accordion.prototype.initSectionHeaders = function () {
/**
* Construct section header
*
- * @param {HTMLDivElement} $headerWrapper - Section header wrapper
+ * @param {HTMLDivElement} $header -... | 10 |
diff --git a/src/plot_api/plot_config.js b/src/plot_api/plot_config.js @@ -179,7 +179,9 @@ var configAttributes = {
description: [
'Sets the delay for registering a double-click in ms.',
'This is the time interval (in ms) between first mousedown and',
- '2nd mouseup to constitute a double-click.'
+ '2nd mouseup to cons... | 7 |
diff --git a/src/lib/gundb/UserStorageClass.js b/src/lib/gundb/UserStorageClass.js @@ -1494,7 +1494,11 @@ export class UserStorage {
//a race exists between enqueing and receipt from websockets/polling
const release = await this.feedMutex.lock()
try {
- const existingEvent = await this.feed.get('byid').then(feedIds => ... | 13 |
diff --git a/packages/@uppy/webcam/src/RecordButton.js b/packages/@uppy/webcam/src/RecordButton.js const { h } = require('preact')
module.exports = function RecordButton ({ recording, onStartRecording, onStopRecording, i18n }) {
- console.log('is recording', recording)
if (recording) {
return (
<button class="uppy-u-re... | 2 |
diff --git a/userscript.user.js b/userscript.user.js @@ -27864,18 +27864,23 @@ var $$IMU_EXPORT$$;
];
}
- if (domain_nosub === "bing.com" &&
- host_domain_nosub === "bing.com" && options.element) {
+ if (host_domain_nosub === "bing.com" &&
+ (domain === "" || domain_nosub === "bing.com") && options.element) {
var curre... | 7 |
diff --git a/layouts/partials/helpers/container.html b/layouts/partials/helpers/container.html {{- if .start }}
<section id="{{ .Name }}">
{{- if ne .in_slot true }}
- <div class="overlay container-fluid
+ <div class="container-fluid
{{- printf " bg-%s" .bg -}}
">
{{- end }}
{{- if .end }}
</div>{{/* .container */}}
{{... | 2 |
diff --git a/src/stores/TokenStore.js b/src/stores/TokenStore.js import { observable, action, computed } from 'mobx';
-import { validateName, validateTicker } from '../utils/utils'
import { VALIDATION_TYPES } from '../utils/constants'
import autosave from './autosave'
const { EMPTY, VALID, INVALID } = VALIDATION_TYPES;... | 2 |
diff --git a/core/workspace_comment_svg.js b/core/workspace_comment_svg.js @@ -50,7 +50,6 @@ goog.require('Blockly.Events.Selected');
* Size of the resize icon.
* @type {number}
* @const
- * @private
*/
const RESIZE_SIZE = 8;
@@ -58,7 +57,6 @@ const RESIZE_SIZE = 8;
* Radius of the border around the comment.
* @type {n... | 2 |
diff --git a/lib/prepare.js b/lib/prepare.js @@ -111,19 +111,26 @@ async function resolveOptions (sourceDir) {
options.themePath = path.resolve(__dirname, 'default-theme/Layout.vue')
options.notFoundPath = path.resolve(__dirname, 'default-theme/NotFound.vue')
} else {
+ let themeDir
+ let themePath
// resolve custom th... | 7 |
diff --git a/articles/best-practices/rules.md b/articles/best-practices/rules.md @@ -461,4 +461,20 @@ If you have rules that call paid services - such as sending SMS messages via Twi
#### Limiting calls to the Management API
Outside use of the [`auth0`](#auth0-object) object, prefer to avoid calls to the Auth0 Manageme... | 3 |
diff --git a/assets/js/modules/analytics/components/common/ExistingGTMPropertyNotice.js b/assets/js/modules/analytics/components/common/ExistingGTMPropertyNotice.js @@ -38,9 +38,9 @@ export default function ExistingGTMPropertyNotice() {
select( MODULES_TAGMANAGER ).getSingleAnalyticsPropertyID()
);
- if ( ! gtmAnalytic... | 7 |
diff --git a/articles/logout/index.md b/articles/logout/index.md @@ -36,6 +36,27 @@ Although this is not common practice, you can force the user to also log out of
https://${account.namespace}/v2/logout?federated
```
+The following Social providers support federated logout:
+
+* AOL
+* Evernote
+* Facebook
+* Fitbit
+*... | 0 |
diff --git a/test/cli/run.spec.ts b/test/cli/run.spec.ts @@ -6,6 +6,7 @@ import * as peggy from "../../lib/peg.js";
import { CommanderError, PeggyCLI } from "../../bin/peggy.js";
import { Transform, TransformCallback, TransformOptions } from "stream";
import { SourceMapConsumer } from "source-map";
+import { promisify ... | 9 |
diff --git a/packages/vulcan-ui-bootstrap/lib/components/forms/Select.jsx b/packages/vulcan-ui-bootstrap/lib/components/forms/Select.jsx @@ -9,7 +9,7 @@ const SelectComponent = ({refFunction, inputProperties, ...properties}, { intl }
value: '',
disabled: true,
};
- let otherOptions = inputProperties.options;
+ let othe... | 9 |
diff --git a/src/embeds/EarthCycleEmbed.js b/src/embeds/EarthCycleEmbed.js @@ -14,7 +14,6 @@ class EarthCycleEmbed extends BaseEmbed {
super();
this.color = state.isDay ? 0xB64624 : 0x000066;
- this.title = `Worldstate - ${state.isCetus ? 'Plains of Eidolon' : 'Earth'} Cycle`;
this.thumbnail = {
url: state.isCetus ? 'h... | 2 |
diff --git a/lib/spyglass/spyglass.js b/lib/spyglass/spyglass.js @@ -191,6 +191,7 @@ Spyglass.prototype.open = function(x = 0,y = 0){
Spyglass.prototype.close = function(){
//
this.elt.style.display = 'none';
+ this.indicator.style.display = 'none';
this.elt.style.top = '-100%';
this.elt.style.left = '-100%';
this._tar... | 1 |
diff --git a/.travis.yml b/.travis.yml @@ -187,7 +187,7 @@ jobs:
- <<: *doc-deploy
name: Deploy docs.kuzzle.io
- if: branch =~ /^master|[0-9]+-stable$/
+ if: branch =~ /^master|[0-9]+-(stable|beta)$/
env:
- *doc-deploy-env
- S3_BUCKET=docs.kuzzle.io
@@ -204,7 +204,7 @@ stages:
- name: Cross-platform tests
if: type = cr... | 11 |
diff --git a/includes/Core/Permissions/Permissions.php b/includes/Core/Permissions/Permissions.php @@ -716,7 +716,7 @@ final class Permissions {
return new WP_REST_Response( $this->check_all_for_current_user() );
},
'permission_callback' => function() {
- return current_user_can( Permissions::VIEW_SPLASH );
+ return cu... | 11 |
diff --git a/assets/js/modules/analytics/components/setup/SetupFormUA.stories.js b/assets/js/modules/analytics/components/setup/SetupFormUA.stories.js */
import SetupFormUA from './SetupFormUA';
import { STORE_NAME } from '../../datastore/constants';
-import { createTestRegistry, WithTestRegistry, provideModules } from... | 14 |
diff --git a/packages/reactotron-app/rebuild.sh b/packages/reactotron-app/rebuild.sh @@ -26,16 +26,16 @@ cd win32-ia32
mv Reactotron-win32-ia32 Reactotron
zip -r Reactotron-win32-ia32.zip Reactotron
mv Reactotron-win32-ia32.zip ../
-# cd ../
-#
-# # 64 bit windows
+cd ../
+
+# 64 bit windows
cd win32-x64
mv Reactotron-... | 13 |
diff --git a/controls_fhemtabletui.txt b/controls_fhemtabletui.txt @@ -9,7 +9,7 @@ DIR www/tablet/fonts
UPD 2019-04-02_21:15:45 705403 www/tablet/icons_table.html
UPD 2019-04-02_21:15:45 3742 www/tablet/ftui_snippet_tester.html
UPD 2019-04-02_21:15:45 1079 www/tablet/css/ftui_medialist.css
-UPD 2020-05-05_21:11:41 6716... | 3 |
diff --git a/app/src/pages/inside/stepPage/stepGrid/groupHeader/groupHeader.jsx b/app/src/pages/inside/stepPage/stepGrid/groupHeader/groupHeader.jsx @@ -25,13 +25,13 @@ export const GroupHeader = connect((state) => ({
}))(({ data, activeProject, launchId, filterId }) => (
<div className={cx('group-header-row')}>
<div c... | 14 |
diff --git a/src/e2e/mobile.spec.ts b/src/e2e/mobile.spec.ts @@ -108,7 +108,8 @@ describe('Mobile interface', () => {
cy.get('.overlay').click(300, 300, {force: true});
});
- it('Close with swipe', () => {
+ // Ignore firefox as Touch is not recognized
+ it('Close with swipe', {browser: '!firefox'}, () => {
// Open and... | 8 |
diff --git a/character-controller.js b/character-controller.js @@ -14,6 +14,7 @@ import metaversefile from './metaversefile-api.js';
import {actionsMapName, crouchMaxTime, activateMaxTime, useMaxTime} from './constants.js';
import {AppManager} from './app-manager.js';
import {BiActionInterpolant, UniActionInterpolant, ... | 0 |
diff --git a/token-metadata/0xD8a8843b0a5aba6B030E92B3F4d669FaD8A5BE50/metadata.json b/token-metadata/0xD8a8843b0a5aba6B030E92B3F4d669FaD8A5BE50/metadata.json "symbol": "AFDLT",
"address": "0xD8a8843b0a5aba6B030E92B3F4d669FaD8A5BE50",
"decimals": 4,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/articles/policies/rate-limits.md b/articles/policies/rate-limits.md ---
description: This page details Auth0's Rate Limit Policy with hitting Auth0 API endpoints.
---
-
# Auth0 API Rate Limit Policy
-To ensure the quality of Auth0's services, the Auth0 API is subject to rate limiting.
+To ensure the qualit... | 0 |
diff --git a/README.md b/README.md @@ -59,19 +59,11 @@ Where `<env>` is the name of a configuration file under `./config/environments/`
The [docs directory](https://github.com/CartoDB/Windshaft-cartodb/tree/master/docs) contains different documentation resources, from higher level to more detailed ones: the [Maps API](... | 7 |
diff --git a/articles/extensions/delegated-admin/v3/index.md b/articles/extensions/delegated-admin/v3/index.md @@ -71,7 +71,7 @@ When working with roles, we recommend that you use the Authorization Core featur
1. [Create DAE roles](/dashboard/guides/roles/create-roles). The names of the roles you create must match the ... | 3 |
diff --git a/CHANGELOG.md b/CHANGELOG.md + Now supports batch-at-a-time or record-at-a-time iteration.
-
-
-<!--
-
- TODO: figure this out; see https://gist.github.com/mikermcneil/dfc6b033ea8a75cb467e8d50606c81cc
-
##### `required` & `allowNull`
* [BREAKING] Standardizing the definition of `required`
+ If an attribute ... | 1 |
diff --git a/token-metadata/0xB4272071eCAdd69d933AdcD19cA99fe80664fc08/metadata.json b/token-metadata/0xB4272071eCAdd69d933AdcD19cA99fe80664fc08/metadata.json "symbol": "XCHF",
"address": "0xB4272071eCAdd69d933AdcD19cA99fe80664fc08",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/packages/app/src/stores/share-link.tsx b/packages/app/src/stores/share-link.tsx +import { Nullable } from '@growi/core';
import useSWR, { SWRResponse } from 'swr';
import { apiv3Get } from '~/client/util/apiv3-client';
-import { Nullable } from '~/interfaces/common';
import { IResShareLinkList } from '~/in... | 10 |
diff --git a/docs/change-log.md b/docs/change-log.md #### Bug fixes
- core: render() function can no longer prevent from changing `document.activeElement` in lifecycle hooks ([#1988](https://github.com/MithrilJS/mithril.js/pull/1988), [@purplecode](https://github.com/purplecode))
-- core: don't call `onremove` on the c... | 7 |
diff --git a/src/encoded/batch_download.py b/src/encoded/batch_download.py @@ -44,7 +44,6 @@ _tsv_mapping = OrderedDict([
('Biosample treatments duration', ['replicates.library.biosample.treatments.duration',
'replicates.library.biosample.treatments.duration_units']),
('Experiment target', ['target.name']),
- ('Antibod... | 2 |
diff --git a/source/light-validator/contracts/LightValidator.sol b/source/light-validator/contracts/LightValidator.sol @@ -12,10 +12,7 @@ import "../../light/contracts/Light.sol";
*/
contract LightValidator {
- bytes internal constant DOM_VERSION = "3";
- bytes internal constant DOM_NAME = "SWAP_LIGHT";
address public ... | 2 |
diff --git a/src/server/routes/admin.js b/src/server/routes/admin.js @@ -1073,13 +1073,12 @@ module.exports = function(crowi, app) {
}
debug('form content', form);
- await saveSettingAsync(form);
- const config = await crowi.getConfig();
+ await crowi.configManager.updateConfigsInTheSameNamespace('crowi', form);
// res... | 4 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.