code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/lib/loader.js b/lib/loader.js @@ -72,7 +72,7 @@ let Loader = function () {
// Support no file extension as well
let exts = Object.keys(SUPPORTED_EXTENSIONS).concat(['']);
exts.some((ext) => {
- let fname = `${name}.${ext}`;
+ let fname = ext ? name : `${name}.${ext}`;
if (existsSync(fname)) {
nameWithExt =... | 9 |
diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json {
"name": "gatsby-plugin-react-helmet",
- "description": "Provides drop-in support for server rendering data added with react-helmet",
+ "description": "Manage document head data with react-helmet. Provides ... | 7 |
diff --git a/lib/config/index.js b/lib/config/index.js @@ -32,7 +32,11 @@ const CONFIG_FILE_LOCATIONS = [
path.join(__dirname, '../../../..') // above node_modules
]
-const HAS_ARBITRARY_KEYS = new Set(['ignore_messages', 'expected_messages', 'labels'])
+const HAS_ARBITRARY_KEYS = new Set([
+ 'ignore_messages',
+ 'expe... | 13 |
diff --git a/src/neat.js b/src/neat.js @@ -140,18 +140,23 @@ Neat.prototype = {
return filtered;
},
},
+
/**
* Create a pool of identical genomes.
*
* @param {Network} network An initial network to evolve from
*/
createPool: function (network) {
- this.population = [];
+ let self = this;
+ self.population = [];
+
+ for... | 7 |
diff --git a/rollup.config.js b/rollup.config.js @@ -8,7 +8,7 @@ const plugins = [
// taken when executed in Deno after magicpen porting work
ignore: process.env.ESM_BUILD ? ['os'] : undefined
}),
- require('rollup-plugin-node-resolve')(),
+ require('rollup-plugin-node-resolve')({ preferBuiltins: true }),
require('roll... | 12 |
diff --git a/includes/Core/Authentication/Authentication.php b/includes/Core/Authentication/Authentication.php @@ -537,7 +537,7 @@ final class Authentication {
*/
private function allowed_redirect_hosts( $hosts ) {
$hosts[] = 'accounts.google.com';
- $hosts[] = 'sitekit.withgoogle.com';
+ $hosts[] = str_replace( array(... | 11 |
diff --git a/src/core/plugins/oas3/components/request-body.jsx b/src/core/plugins/oas3/components/request-body.jsx @@ -2,6 +2,7 @@ import React from "react"
import PropTypes from "prop-types"
import ImPropTypes from "react-immutable-proptypes"
import { Map, OrderedMap, List } from "immutable"
+import { getCommonExtensi... | 7 |
diff --git a/docs/api-reference/mapbox/mapbox-layer.md b/docs/api-reference/mapbox/mapbox-layer.md @@ -29,6 +29,8 @@ const myScatterplotLayer = new MapboxLayer({
getColor: [255, 0, 0]
});
+// wait for map to be ready
+map.on('load', () => {
// add to mapbox
map.addLayer(myScatterplotLayer);
@@ -36,6 +38,7 @@ map.addLay... | 3 |
diff --git a/web/console.html b/web/console.html placeholder="Press enter to send" autocomplete="off" {{disableWrite}}>
</div>
<button type="button" id="clearConsole" class="btn btn-outline-light btn-sm mb-2">Clear Console</button>
- <button type="button" id="toggleAutoScroll" class="btn btn-outline-light btn-sm mb-2">... | 1 |
diff --git a/server/game/cards/08-MotC/PoliticalSanctions.js b/server/game/cards/08-MotC/PoliticalSanctions.js @@ -11,7 +11,7 @@ class PoliticalSanctions extends DrawCard {
canAttach(card, context) {
let diff = this.game.currentConflict.attackerSkill - this.game.currentConflict.defenderSkill;
return context.game.isDuri... | 1 |
diff --git a/articles/users/guides/manage-users-using-the-dashboard.md b/articles/users/guides/manage-users-using-the-dashboard.md @@ -27,7 +27,6 @@ User Management is included as part of the **Developer** subscription plan. You
## Keep reading
* [User Profiles](/users/concepts/overview-user-profile)
-* [Manage Users U... | 2 |
diff --git a/lib/ParserHelpers.js b/lib/ParserHelpers.js Author Tobias Koppers @sokra
*/
"use strict";
-const BasicEvaluatedExpression = require("./BasicEvaluatedExpression");
-const ConstDependency = require("./dependencies/ConstDependency");
-const UnsupportedFeatureWarning = require("./UnsupportedFeatureWarning");
-... | 10 |
diff --git a/package.json b/package.json "compression": "^1.6.2",
"envify": "^4.0.0",
"html-tags": "^1.1.1",
+ "idyll-compiler": "^1.0.1",
"idyll-component": "^1.0.2",
- "idyll-grammar": "^1.0.1",
"immutable": "^3.8.1",
"minimist": "^1.2.0",
"nearley": "^2.7.11",
| 4 |
diff --git a/website/src/docs/uppy.md b/website/src/docs/uppy.md @@ -660,11 +660,25 @@ uppy.on('file-added', (file) => {
Fired each time a file is removed.
```javascript
-uppy.on('file-removed', (file) => {
+uppy.on('file-removed', (file, reason) => {
console.log('Removed file', file)
})
```
+Reason is provided as a se... | 0 |
diff --git a/src/components/play-mode/hotbar/Hotbar.jsx b/src/components/play-mode/hotbar/Hotbar.jsx @@ -452,13 +452,17 @@ const HotbarItem = props => {
const pixelRatio = window.devicePixelRatio;
return (
- <canvas className={styles.hotbox}
- style={props.selected ? {
+ <canvas
+ className={styles.hotbox}
+ /* style={... | 2 |
diff --git a/src/content/en/fundamentals/security/prevent-mixed-content/_code/xmlhttprequest-example.html b/src/content/en/fundamentals/security/prevent-mixed-content/_code/xmlhttprequest-example.html XMLHttpRequest mixed content example!
</h1>
<p>
- View page over: <a href="http://googlesamples.github.io/web-fundament... | 1 |
diff --git a/src/utils/utils.js b/src/utils/utils.js @@ -79,6 +79,9 @@ const Utils = {
}
return query;
},
+ isObject(o) {
+ return typeof o === 'object' && o !== null && o.constructor && o.constructor === Object;
+ },
extend(...args) {
const to = Object(args[0]);
for (let i = 1; i < args.length; i += 1) {
@@ -89,7 +92,... | 7 |
diff --git a/packages/idyll-components/src/dynamic.js b/packages/idyll-components/src/dynamic.js @@ -91,7 +91,7 @@ Dynamic._idyll = {
{
name: 'display',
type: 'expression',
- example: '`x === 0 ? "none" : x`',
+ defaultValue: 'none',
description: 'A custom display transform to use'
}
]
| 3 |
diff --git a/sirepo/simulation_db.py b/sirepo/simulation_db.py @@ -875,9 +875,14 @@ def _init():
fn = STATIC_FOLDER.join('json/schema-common{}'.format(JSON_SUFFIX))
with open(str(fn)) as f:
SCHEMA_COMMON = json_load(f)
- # In development, you can touch schema-common to get a new version
- SCHEMA_COMMON.version = _times... | 1 |
diff --git a/userscript.user.js b/userscript.user.js @@ -96415,7 +96415,9 @@ var $$IMU_EXPORT$$;
// https://diy-magazine.s3.amazonaws.com/d/diy/Artists/S/Sigrid/Class-Of-2018/Sigrid-class-of-hi-res-_MIK2573.jpg
// https://diy-magazine.s3.amazonaws.com/d/diy/Artists/N/Nils-Frahm/_landscape/NILS_FRAHM_All_Melody_credit_A... | 7 |
diff --git a/token-metadata/0x907cb97615b7cD7320Bc89bb7CDB46e37432eBe7/metadata.json b/token-metadata/0x907cb97615b7cD7320Bc89bb7CDB46e37432eBe7/metadata.json "symbol": "FRENS",
"address": "0x907cb97615b7cD7320Bc89bb7CDB46e37432eBe7",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED... | 3 |
diff --git a/articles/extensions/gitlab-deploy.md b/articles/extensions/gitlab-deploy.md @@ -17,6 +17,7 @@ Set the following configuration variables:
* **GITLAB_REPOSITORY**: The name of your GitLab repository.
* **GITLAB_BRANCH**: The branch of your GitLab repository your extension should monitor.
+* **GITLAB_URL**: T... | 0 |
diff --git a/package.json b/package.json "screenshot": "storybook-chrome-screenshot -p 9001 -c .storybook",
"lint": "npm run lint:js && npm run lint:php && npm run lint:css",
"lint:js": "wp-scripts lint-js",
- "lint:php": "gulp phpcs",
"lint:css": "stylelint ./assets/sass --syntax scss",
"env:start": "./bin/local-env/s... | 2 |
diff --git a/packages/mjml-core/src/index.js b/packages/mjml-core/src/index.js @@ -139,7 +139,7 @@ export default function mjml2html(mjml, options = {}) {
(acc, value) => {
const mjClassValues = globalDatas.classes[value]
let multipleClasses = {}
- if (acc['css-class'] && mjClassValues && mjClassValues['css-class']) {
... | 4 |
diff --git a/docs/big-iq-licensing.rst b/docs/big-iq-licensing.rst @@ -117,7 +117,7 @@ Revoking a license without relicensing
--------------------------------------
If you want to revoke a license from a BIG-IP and not supply a new license, you simply add the **revokeFrom** property with name of the license pool to the... | 5 |
diff --git a/ui/src/screens/DiagramScreen/DiagramScreen.jsx b/ui/src/screens/DiagramScreen/DiagramScreen.jsx @@ -24,8 +24,7 @@ export class DiagramScreen extends Component {
downloadTriggered: false,
};
- this.onCollectionSearch = this.onCollectionSearch.bind(this);
- this.onDiagramSearch = this.onDiagramSearch.bind(th... | 10 |
diff --git a/src/application/Component.mjs b/src/application/Component.mjs @@ -172,7 +172,13 @@ export default class Component extends Element {
if (key === "text") {
const propKey = cursor + "__text";
loc.push(`var ${propKey} = ${cursor}.enableTextTexture()`);
+ if (value.__propertyBinding === true) {
+ // Allow bindi... | 11 |
diff --git a/articles/libraries/lock/v10/ui-customization.md b/articles/libraries/lock/v10/ui-customization.md @@ -41,7 +41,7 @@ var options = {
```
### Customizing Text
-The `languageDictionary` option allows customization of every piece of text displayed in the Lock. Defaults to {}. See below Language Dictionary Spec... | 0 |
diff --git a/server/game/gamesteps/conflictphase.js b/server/game/gamesteps/conflictphase.js @@ -105,20 +105,9 @@ class ConflictPhase extends Phase {
this.game.queueStep(new SimpleStep(this.game, () => this.startConflictChoice(this.currentPlayer)));
}
- chooseOpponent(attackingPlayer) {
- return this.game.getOtherPlaye... | 2 |
diff --git a/articles/_includes/_api-auth-rules.md b/articles/_includes/_api-auth-rules.md - Redirect rules won't work. If you try to do a [redirect](/rules/redirect) by specifying `context.redirect` in your rule, the authentication flow will return an error.
-- If you try to do MFA by specifying `context.multifactor` ... | 2 |
diff --git a/edit.js b/edit.js @@ -291,7 +291,7 @@ function animate(timestamp, frame) {
const isVisible = shieldLevel === 2;
const isTarget = shieldLevel === 0 && selectedTool !== 'select';
const isVolume = shieldLevel === 1 || selectedTool === 'select';
- for (const p of pe.packages) {
+ for (const p of pe.children) {... | 4 |
diff --git a/lib/cartodb/controllers/layergroup.js b/lib/cartodb/controllers/layergroup.js @@ -453,47 +453,6 @@ LayergroupController.prototype.layer = function (tileBackend) {
};
};
-LayergroupController.prototype.incrementSuccessMetrics = function (statsClient) {
- return function incrementSuccessMetricsMiddleware (re... | 5 |
diff --git a/src/components/Map/Map.js b/src/components/Map/Map.js @@ -66,10 +66,15 @@ const Map: ComponentType<Props> = ({
center: [55, -4],
zoom: 4.5,
layers: [
- L.tileLayer('https://tiles.stadiamaps.com/tiles/alidade_smooth/{z}/{x}/{y}{r}.png', {
+ // L.tileLayer('https://tiles.stadiamaps.com/tiles/alidade_smooth/{... | 4 |
diff --git a/packages/wast-parser/src/tokenizer.js b/packages/wast-parser/src/tokenizer.js @@ -115,13 +115,13 @@ function tokenize(input: string) {
/**
* Can be used to look at the next character(s).
*
- * The default behavior `peek()` simply returns the next character without consuming it.
+ * The default behavior `lo... | 10 |
diff --git a/app/src/components/Containers/Peer.js b/app/src/components/Containers/Peer.js @@ -349,11 +349,21 @@ const Peer = (props) =>
{
const handler = setTimeout(() =>
{
- const consumer = webcamConsumer || screenConsumer;
+ const consumers = [];
- if (!consumer)
- return;
+ if (webcamConsumer)
+ consumers.push(web... | 12 |
diff --git a/src/js/libcs/Operators.js b/src/js/libcs/Operators.js @@ -5107,7 +5107,7 @@ evaluator.guess$1 = function(args, modifs) {
const inx2 = [x, a, c]; // check whether x is rational
const res = PSLQ.doPSLQ(inx2, 15);
if (!res || res[2] !== 0.0)
- return nada;
+ return undefined;
return [Math.round(res[0]), Math.... | 9 |
diff --git a/website/js/components/import.vue b/website/js/components/import.vue @@ -179,7 +179,10 @@ module.exports={
var reader = new FileReader();
reader.onload = function(e){
try {
- res(parseJson(e.srcElement.result))
+ res({
+ name:file.name,
+ data:parseJson(e.srcElement.result)
+ })
} catch(e) {
rej(e)
}
@@ -18... | 7 |
diff --git a/civictechprojects/views.py b/civictechprojects/views.py @@ -8,7 +8,6 @@ from django.template import loader
from django.utils import timezone
from django.views.decorators.csrf import ensure_csrf_cookie
from time import time
-from .forms import GroupCreationForm
from urllib import parse as urlparse
import si... | 11 |
diff --git a/config/redirects.js b/config/redirects.js @@ -1632,5 +1632,9 @@ module.exports = [
{
from: '/i18n/i18n-custom-login-page',
to: '/i18n'
+ },
+ {
+ from: '/multifactor-authentication/developer/step-up-with-acr',
+ to: '/multifactor-authentication/developer/step-up-authentication'
}
];
| 0 |
diff --git a/lib/assets/test/spec/builder/data/user-actions.spec.js b/lib/assets/test/spec/builder/data/user-actions.spec.js @@ -848,7 +848,7 @@ describe('builder/data/user-actions', function () {
id: 'a0',
type: 'source',
table_name: '"000cd294-b124-4f82-b569-0f7fe41d2db8"',
- query: 'SELECT * FROM "public.000cd294-b1... | 1 |
diff --git a/config.toml b/config.toml # https://github.com/MunifTanjim/minimo/blob/master/exampleSite/config.toml
-baseURL = "https://optimistic-kilby-438ca3.netlify.com/"
+baseURL = "http://openpracticelibrary.com/"
languageCode = "en-us"
title = "Open Practice Library"
| 4 |
diff --git a/src/_data/examples.yml b/src/_data/examples.yml @@ -12,7 +12,7 @@ showcase:
slug: helloworld
scene_url: https://aframe.io/aframe/examples/boilerplate/hello-world/
source_url: https://github.com/aframevr/aframe/blob/v0.4.0/examples/boilerplate/hello-world/index.html
- title: Hello World
+ title: Hello WebVR... | 10 |
diff --git a/framer/SVGLayer.coffee b/framer/SVGLayer.coffee @@ -30,6 +30,7 @@ class exports.SVGLayer extends Layer
disableBorder: true
if elements?
for element in elements
+ options.name = element.id
if element instanceof SVGGElement
@elements[element.id] = new SVGGroup(element, options)
continue
| 12 |
diff --git a/src/userscript.ts b/src/userscript.ts @@ -404,22 +404,40 @@ var $$IMU_EXPORT$$;
};
}
+ var is_native = function(x) {
+ var x_str = x.toString();
+
+ if (x_str.length < 80 && /native code/.test(x_str)) {
+ return true;
+ } else {
+ return false;
+ }
+ };
+
// restore console.log for websites that remove it ... | 7 |
diff --git a/closure/goog/i18n/numberformat.js b/closure/goog/i18n/numberformat.js @@ -1059,7 +1059,7 @@ goog.i18n.NumberFormat.PATTERN_EXPONENT_ = 'E';
/**
- * An plus character.
+ * A plus character.
* @type {string}
* @private
*/
@@ -1067,7 +1067,7 @@ goog.i18n.NumberFormat.PATTERN_PLUS_ = '+';
/**
- * A quote chara... | 1 |
diff --git a/src/asset_manager/view/AssetImageView.js b/src/asset_manager/view/AssetImageView.js module.exports = require('./AssetView').extend({
events: {
+ 'click [data-toggle=asset-remove]': 'onRemove',
click: 'onClick',
dblclick: 'onDblClick',
- 'click [data-toggle=asset-remove]': 'onRemove',
},
getPreview() {
@@ -... | 1 |
diff --git a/test-integration/scripts/11-generate-entities.sh b/test-integration/scripts/11-generate-entities.sh @@ -106,8 +106,6 @@ elif [[ "$JHI_ENTITY" == "sqlfull" ]]; then
moveEntity EntityWithDTO
moveEntity EntityWithPagination
moveEntity EntityWithPaginationAndDTO
- moveEntity EntityWithServiceClass
- moveEntity... | 2 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -9,6 +9,21 @@ To see all merged commits on the master branch that will be part of the next plo
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.57.1] -- 2020-10-20
+
+### Changed
+ - Update template for new pull requests [#5220]
+ - Provide a default `hovert... | 3 |
diff --git a/vault/dendron.topic.teams.md b/vault/dendron.topic.teams.md @@ -42,7 +42,7 @@ Follow the instructions of [[converting a local vault to a remote vault|dendron.
- for company material that you plan on publishing publically
## Schemas
-- NOTE: you can get a copy of these schemas by adding this [vault](https:/... | 14 |
diff --git a/docs/repl_text.md b/docs/repl_text.md @@ -477,7 +477,7 @@ A few notes:
---
-## Notes
+## stdlib
* All `stdlib` REPL texts should use an alias placeholder.
@@ -516,3 +516,5 @@ A few notes:
```
External aliases are resolved during a separate build process which manages the REPL namespace. Where possible, lim... | 10 |
diff --git a/media/articles/appliance/modules.md b/media/articles/appliance/modules.md @@ -4,5 +4,35 @@ For security reasons, rules and custom database connections for Auth0 appliances
The current sandbox supports:
+* [async](https://github.com/caolan/async) _(~0.9.0)_
* [auth0](https://github.com/auth0/node-auth0) _(2... | 13 |
diff --git a/src/lib/blocks.js b/src/lib/blocks.js @@ -44,7 +44,7 @@ export default function (vm) {
const backdropsMenu = function () {
if (vm.runtime.targets[0] && vm.runtime.targets[0].sprite.costumes.length > 0) {
- var a = vm.runtime.targets[0].sprite.costumes.map(costume => [costume.name, costume.name]);
+ const a... | 14 |
diff --git a/addon/components/power-select-multiple/trigger.js b/addon/components/power-select-multiple/trigger.js @@ -68,7 +68,7 @@ export default Component.extend({
maybePlaceholder: computed('placeholder', 'select.selected.length', function() {
if (isIE) {
- return null;
+ return;
}
let select = this.get('select');
... | 14 |
diff --git a/app/models/mission/MissionTable.scala b/app/models/mission/MissionTable.scala @@ -234,10 +234,9 @@ object MissionTable {
def selectMissions(userId: UUID): List[AuditMission] = db.withSession { implicit session =>
// gets all the missions that correspond to the user
val userMissions = for {
- ((_users, _mis... | 7 |
diff --git a/client/components/AvailabilityGrid/AvailabilityGrid.js b/client/components/AvailabilityGrid/AvailabilityGrid.js @@ -136,6 +136,11 @@ class AvailabilityGrid extends Component {
_.findIndex(nQuarter.participants, curUser._id), 1);
nQuarter.notParticipants.push(temp[0]);
}
+ if (operation === 'new') {
+ const... | 1 |
diff --git a/apps/terminalclock/metadata.json b/apps/terminalclock/metadata.json "name": "Terminal Clock",
"shortName":"Terminal Clock",
"description": "A terminal cli like clock displaying multiple sensor data",
- "version":"0.01",
+ "version":"0.02",
"icon": "app.png",
"type": "clock",
"tags": "clock",
| 3 |
diff --git a/_CodingChallenges/133-times-tables-cardioid.md b/_CodingChallenges/133-times-tables-cardioid.md @@ -56,7 +56,6 @@ contributions:
url: "https://github.com/Palma99"
url: "http://palma99webpage.altervista.org/card/index.html"
source: "https://github.com/Palma99/Cardioid"
-
---
In this video, I visualize the "... | 1 |
diff --git a/test/parser.coffee b/test/parser.coffee @@ -533,7 +533,6 @@ describe 'VASTParser', ->
break
VASTParser.load xml, (err, response) =>
@response = response
- console.log response.ads[0]
done()
after () =>
| 2 |
diff --git a/articles/clients/client-grant-types.md b/articles/clients/client-grant-types.md @@ -9,6 +9,10 @@ Auth0 provides many authentication and authorization flows that suit your needs,
## Grant Types
+::: note
+Please refer to [Which OAuth 2.0 flow should I use?](https://auth0.com/docs/api-auth/which-oauth-flow-t... | 0 |
diff --git a/package.json b/package.json {
"name": "file-icons",
"main": "lib/main.js",
- "version": "2.0.5",
+ "version": "2.0.6",
"private": true,
"description": "Assign file extension icons and colours for improved visual grepping",
"repository": "https://github.com/file-icons/atom",
"bugs": "https://github.com/file... | 6 |
diff --git a/spec/models/visualization/member_spec.rb b/spec/models/visualization/member_spec.rb @@ -10,6 +10,8 @@ require_dependency 'cartodb/redis_vizjson_cache'
include CartoDB
describe Visualization::Member do
+
+ include Carto::Factories::Visualizations
let(:user) { create(:carto_user) }
before(:all) do
@@ -370,80... | 1 |
diff --git a/js/webcomponents/bisweb_cpmelement.js b/js/webcomponents/bisweb_cpmelement.js @@ -255,13 +255,17 @@ class CPMElement extends HTMLElement {
//create a file button then click it to mimic the button in the modal being the file button
let fileBtn = bis_webfileutil.createFileButton({
- 'callback' : (name) => { ... | 1 |
diff --git a/src/utils/support.js b/src/utils/support.js @@ -4,7 +4,7 @@ const Support = (function Support() {
const testDiv = document.createElement('div');
return {
touch: (window.Modernizr && window.Modernizr.touch === true) || (function checkTouch() {
- return !!(('ontouchstart' in window) || (window.DocumentTouch ... | 0 |
diff --git a/lib/assets/javascripts/new-dashboard/components/BulkActions/BulkActions.vue b/lib/assets/javascripts/new-dashboard/components/BulkActions/BulkActions.vue v-if="action.shouldShow"
v-for="action in actions"
:key="action.event"
- @click="doAction(action.event)">
+ @click="emitEvent(action.event)">
{{ action.n... | 10 |
diff --git a/src/controllers/messages.ts b/src/controllers/messages.ts @@ -113,12 +113,16 @@ export const getAllMessages = async (req, res) => {
console.log(`=> getAllMessages, limit: ${limit}, offset: ${offset}`)
}
- const messages = await models.Message.findAll({
+ const clause = {
order: [['id', 'desc']],
- limit,
-... | 3 |
diff --git a/includes/Modules/Site_Verification.php b/includes/Modules/Site_Verification.php @@ -35,6 +35,16 @@ use Exception;
final class Site_Verification extends Module implements Module_With_Scopes {
use Module_With_Scopes_Trait;
+ /**
+ * Meta site verification type.
+ */
+ const VERIFICATION_TYPE_META = 'META';
+... | 12 |
diff --git a/docs/source/platform/schema-validation.md b/docs/source/platform/schema-validation.md @@ -28,34 +28,76 @@ Engine's cloud service uses an algorithm to detect breaking changes in a schema
#### Removals
-- `FIELD_REMOVED` A field referenced by at least one operation was removed
-- `TYPE_REMOVED` A referenced ... | 4 |
diff --git a/packages/cx/src/widgets/form/TextField.scss b/packages/cx/src/widgets/form/TextField.scss $placeholder: $placeholder
);
+ text-overflow: ellipsis;
+
.#{$state}icon > & {
padding-left: cx-calc(2 * cx-left($padding), $icon-size);
}
| 0 |
diff --git a/src/js/core/Tippy.js b/src/js/core/Tippy.js @@ -515,14 +515,13 @@ export function _mount(callback) {
this.popperInstance = _createPopperInstance.call(this)
if (!options.livePlacement) {
this.popperInstance.disableEventListeners()
- setFlipModifier(false)
}
} else {
+ setFlipModifier(!!options.flip)
resetPo... | 8 |
diff --git a/lib/assets/javascripts/builder/editor/layers/layer-content-views/data/data-view.js b/lib/assets/javascripts/builder/editor/layers/layer-content-views/data/data-view.js @@ -370,12 +370,12 @@ module.exports = DatasetBaseView.extend({
type: 'code',
title: _t('editor.data.messages.sql-readonly.title'),
body: _... | 4 |
diff --git a/package.json b/package.json "react": "^15.4.0",
"react-addons-css-transition-group": "^15.4.0",
"react-dom": "^15.4.0",
- "rimraf": "^2.6.1",
"sass-loader": "^4.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"skins": "babel ./source/skins --out-dir ./lib/skins",
"babel": "npm run components && np... | 14 |
diff --git a/src/ui.bar.js b/src/ui.bar.js @@ -6,11 +6,18 @@ var _ = Mavo.UI.Bar = $.Class({
constructor: function(mavo) {
this.mavo = mavo;
- this.element = $(".mv-bar", this.mavo.element) || $.create({
+ this.element = $(".mv-bar", this.mavo.element);
+
+ if (this.element) {
+ this.custom = true;
+ }
+ else {
+ this.... | 11 |
diff --git a/utils.js b/utils.js @@ -154,11 +154,9 @@ export function get_text_width(game, text) { //get text width in px (dirty way)
}
export function check_isdown(cursors, ...keys) {
- let result = true;
- ["up", "left", "down", "right"].forEach(direction => {
- result = result && !(cursors[direction].isDown ^ keys.i... | 7 |
diff --git a/js/mexc3.js b/js/mexc3.js @@ -33,6 +33,7 @@ module.exports = class mexc3 extends Exchange {
'createLimitOrder': undefined,
'createMarketOrder': undefined,
'createOrder': true,
+ 'createReduceOnlyOrder': true,
'deposit': undefined,
'editOrder': undefined,
'fetchAccounts': true,
| 12 |
diff --git a/README.md b/README.md * `brew install watchman`
* `npm install -g react-native-cli`
+More information on getting started can be found here: https://facebook.github.io/react-native/docs/getting-started.html under the `Building prodjects with React Native` tab.
+
### Running
* `react-native run-ios`
| 0 |
diff --git a/package.json b/package.json "stack-chain": "^1.3.6",
"strip-bom": "^2.0.0",
"testcafe-browser-tools": "1.2.4",
- "testcafe-hammerhead": "11.0.1",
+ "testcafe-hammerhead": "11.0.3",
"testcafe-legacy-api": "3.0.0",
"testcafe-reporter-json": "^2.1.0",
"testcafe-reporter-list": "^2.1.0",
| 3 |
diff --git a/src/components/Form.js b/src/components/Form.js @@ -213,7 +213,7 @@ class Form extends React.Component {
isLoading={this.props.formState.isLoading}
message={this.getErrorMessage()}
onSubmit={this.submit}
- onFixTheErrorsPressed={() => {
+ onFixTheErrorsLinkPressed={() => {
this.inputRefs[_.first(_.keys(thi... | 13 |
diff --git a/app/components/Layout/Header.jsx b/app/components/Layout/Header.jsx @@ -20,13 +20,13 @@ import cnames from "classnames";
import TotalBalanceValue from "../Utility/TotalBalanceValue";
import ReactTooltip from "react-tooltip";
import {Apis} from "bitsharesjs-ws";
-import notify from "actions/NotificationActi... | 14 |
diff --git a/articles/rules/references/modules.md b/articles/rules/references/modules.md @@ -24,7 +24,7 @@ Rules run in a JavaScript sandbox. The sandbox supports the ECMAScript 5 languag
| [crypto](http://nodejs.org/docs/v0.10.24/api/crypto.html)
| [ip](https://github.com/keverw/range_check) | 0.0.1 |
| [jwt](https://... | 2 |
diff --git a/src/core/core.scale.js b/src/core/core.scale.js @@ -1028,7 +1028,7 @@ var Scale = Element.extend({
x = me.right - (isMirrored ? 0 : tl) - tickPadding;
textAlign = isMirrored ? 'left' : 'right';
} else {
- x = me.right + (isMirrored ? 0 : tl) + tickPadding;
+ x = me.left + (isMirrored ? 0 : tl) + tickPaddin... | 1 |
diff --git a/js/bootstrap-datepicker.js b/js/bootstrap-datepicker.js var d = new Date(this.viewDate),
year = d.getUTCFullYear(),
month = d.getUTCMonth(),
- prevState,
- nextState;
+ prevState, nextState,
+ factor = 1;
switch (this.viewMode){
case 0:
prevState = (
month >= this.o.endDate.getUTCMonth()
);
break;
- case 1... | 1 |
diff --git a/src/plots/cartesian/axis_autotype.js b/src/plots/cartesian/axis_autotype.js @@ -15,13 +15,14 @@ var Lib = require('../../lib');
var BADNUM = require('../../constants/numerical').BADNUM;
module.exports = function autoType(array, calendar, opts) {
- var convertNumeric = opts.autotypenumbers !== 'strict'; // ... | 0 |
diff --git a/src/plugins/Instagram/index.js b/src/plugins/Instagram/index.js @@ -102,6 +102,7 @@ module.exports = class Instagram extends Plugin {
getItemName (item) {
if (item && item['created_time']) {
+ const ext = item.type === 'video' ? 'mp4' : 'jpeg'
let date = new Date(item['created_time'] * 1000)
date = date.to... | 0 |
diff --git a/src/client/styles/scss/theme/_apply-colors.scss b/src/client/styles/scss/theme/_apply-colors.scss @@ -118,6 +118,36 @@ pre:not(.hljs):not(.CodeMirror-line) {
}
}
+// Pagination
+ul.pagination {
+ li.page-item.disabled {
+ button.page-link {
+ color: $gray-400;
+ }
+ }
+ li.page-item.active {
+ button.page-... | 5 |
diff --git a/js/preload/passwordFill.js b/js/preload/passwordFill.js @@ -120,7 +120,7 @@ function getBestInput (names, exclusionNames, types) {
// Shortcut to get username fields from a page.
function getBestUsernameField () {
- return getBestInput(['user', 'name', 'mail', 'login', 'auth', 'identifier'], ['confirm'], [... | 1 |
diff --git a/src/api/nw_clipboard_api.cc b/src/api/nw_clipboard_api.cc #include "ui/gfx/codec/png_codec.h"
#include "third_party/skia/include/core/SkBitmap.h"
+#pragma clang diagnostic ignored "-Wunreachable-code-break"
+
using namespace extensions::nwapi::nw__clipboard;
namespace extensions {
| 8 |
diff --git a/token-metadata/0x38A2fDc11f526Ddd5a607C1F251C065f40fBF2f7/metadata.json b/token-metadata/0x38A2fDc11f526Ddd5a607C1F251C065f40fBF2f7/metadata.json "symbol": "PHNX",
"address": "0x38A2fDc11f526Ddd5a607C1F251C065f40fBF2f7",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/scenes/treehouse.scn b/scenes/treehouse.scn 1
],
"start_url": "https://webaverse.github.io/silsword/"
+ },
+ {
+ "position": [
+ -6,
+ 0.5,
+ 10
+ ],
+ "quaternion": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "scale": [
+ 1,
+ 1,
+ 1
+ ],
+ "start_url": "https://webaverse.github.io/uzi/"
+ },
+ {
+ "position": [
+ -6,
+ ... | 0 |
diff --git a/src/components/playerController/index.js b/src/components/playerController/index.js @@ -4,13 +4,15 @@ const cloneDeep = require('lodash/cloneDeep');
const low = require('lowdb');
const FileAsync = require('lowdb/adapters/FileAsync');
const { customAlphabet } = require('nanoid');
-const dict51 = require('na... | 0 |
diff --git a/userscript.user.js b/userscript.user.js @@ -12611,7 +12611,15 @@ var $$IMU_EXPORT$$;
if (domain === "data.whicdn.com") {
// https://data.whicdn.com/images/284282683/superthumb.jpg
// https://data.whicdn.com/images/284282683/original.jpg
- return src.replace(/\/[^/.]*\.([^/.]*)$/, "/original.$1");
+ match =... | 7 |
diff --git a/components/Article/Page.js b/components/Article/Page.js @@ -73,7 +73,7 @@ const Votebox = dynamic(() => import('../Vote/Voting'), dynamicOptions)
const VoteCounter = dynamic(() => import('../Vote/VoteCounter'), dynamicOptions)
const VoteResult = dynamic(
() => import('../Vote/VoteResultAuto'),
- dynamicOpt... | 11 |
diff --git a/lib/marklogic.js b/lib/marklogic.js @@ -43,7 +43,7 @@ var valuesBuilder = require('./values-builder.js');
*/
/**
- * Provides functions provides functions that maintain patch replacement libraries
+ * Provides functions that maintain patch replacement libraries
* on the REST server. The client must have be... | 2 |
diff --git a/src/ui/Preferences.hx b/src/ui/Preferences.hx @@ -533,12 +533,14 @@ class Preferences {
current.tabSpaces = val;
save();
}
+ if (Main.aceEditor != null) {
var opts:DynamicAccess<Dynamic> = Main.aceEditor.getOptions();
opts.remove("enableLiveAutocompletion");
opts.remove("theme");
opts.remove("enableSnippet... | 1 |
diff --git a/package.json b/package.json {
"name": "vue-easytable",
- "version": "2.21.8",
+ "version": "2.21.9",
"main": "libs/main.js",
"description": "Vue table component",
"keywords": [
"docVersions": [
{
"value": "/vue-easytable",
- "label": "2.21.8"
+ "label": "2.21.9"
},
{
"value": "/vue-easytable/2.20.2",
| 1 |
diff --git a/packages/laconia-aws-lambda/test/index.spec.js b/packages/laconia-aws-lambda/test/index.spec.js /* eslint-env jest */
-const lp = require("../src/index.js");
+const laconiaHandler = require("../src/index.js");
-describe("laconia promise", () => {
+describe("aws handler", () => {
let callback;
beforeEach(()... | 10 |
diff --git a/src/matrix/room/timeline/PowerLevels.js b/src/matrix/room/timeline/PowerLevels.js @@ -41,8 +41,6 @@ export class PowerLevels {
}
if (typeof userLevel === "number") {
return userLevel;
- } else {
- return 0;
}
} else if (this._createEvent) {
if (userId === this._createEvent.content?.creator) {
| 4 |
diff --git a/src/os/search/isearch.js b/src/os/search/isearch.js @@ -21,7 +21,7 @@ os.search.ISearch = function() {};
* @param {string=} opt_sortBy The sort order for the search.
* The sort order to be used
* @param {boolean=} opt_noFacets flag to indicate facets not needed
- * @param {string=} opt_sortOder - the sort ... | 1 |
diff --git a/aura-integration-test/src/test/java/org/auraframework/integration/test/ClientOutOfSyncUITest.java b/aura-integration-test/src/test/java/org/auraframework/integration/test/ClientOutOfSyncUITest.java @@ -177,6 +177,8 @@ public class ClientOutOfSyncUITest extends WebDriverTestCase {
}
@Test
+ // exclude due t... | 8 |
diff --git a/lambda/proxy-es/lib/supportedLanguages.js b/lambda/proxy-es/lib/supportedLanguages.js @@ -7,6 +7,7 @@ const supportedLanguages = {
"Bengali": "bn",
"Bosnian": "bs",
"Bulgarian": "bg",
+ "Chinese": "zh",
"Chinese (Simplified)": "zh",
"Chinese (Traditional)": "zh-TW",
"Croatian": "hr",
| 3 |
diff --git a/src/components/AddressSearch.js b/src/components/AddressSearch.js import _ from 'underscore';
-import React from 'react';
+import React, { useRef, useEffect } from 'react';
import PropTypes from 'prop-types';
import {GooglePlacesAutocomplete} from 'react-native-google-places-autocomplete';
import CONFIG fr... | 12 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.