Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
* master:
  4.8.6
  closes #2805
  4.8.5
  • Loading branch information
GianlucaGuarini committed Jan 18, 2020
2 parents 6651d1e + 75eeda0 commit 2ee1af4
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "riot",
"version": "4.8.4",
"version": "4.8.6",
"description": "Simple and elegant component-based UI library",
"homepage": "http://riot.js.org/",
"repository": "riot/riot",
Expand Down
10 changes: 5 additions & 5 deletions riot+compiler.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions riot+compiler.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions riot.esm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Riot v4.8.4, @license MIT */
/* Riot v4.8.6, @license MIT */
const COMPONENTS_IMPLEMENTATION_MAP = new Map(),
DOM_COMPONENT_INSTANCE_PROPERTY = Symbol('riot-component'),
PLUGINS_SET = new Set(),
Expand Down Expand Up @@ -1000,8 +1000,8 @@ function evaluateAttributeExpressions(attributes) {

const REMOVE_ATTRIBUTE = 'removeAttribute';
const SET_ATTIBUTE = 'setAttribute';
const HTMLProto = HTMLElement.prototype;
const isNativeHtmlProperty = memoize(name => HTMLProto.hasOwnProperty(name) || HTMLProto[name]); // eslint-disable-line
const ElementProto = typeof Element === 'undefined' ? {} : Element.prototype;
const isNativeHtmlProperty = memoize(name => ElementProto.hasOwnProperty(name)); // eslint-disable-line

/**
* Add all the attributes provided
Expand Down Expand Up @@ -2597,7 +2597,7 @@ function pure(func) {
}
/** @type {string} current riot version */

const version = 'v4.8.4'; // expose some internal stuff that might be used from external tools
const version = 'v4.8.6'; // expose some internal stuff that might be used from external tools

const __ = {
cssManager,
Expand Down
8 changes: 4 additions & 4 deletions riot.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Riot v4.8.4, @license MIT */
/* Riot v4.8.6, @license MIT */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
Expand Down Expand Up @@ -1006,8 +1006,8 @@

const REMOVE_ATTRIBUTE = 'removeAttribute';
const SET_ATTIBUTE = 'setAttribute';
const HTMLProto = HTMLElement.prototype;
const isNativeHtmlProperty = memoize(name => HTMLProto.hasOwnProperty(name) || HTMLProto[name]); // eslint-disable-line
const ElementProto = typeof Element === 'undefined' ? {} : Element.prototype;
const isNativeHtmlProperty = memoize(name => ElementProto.hasOwnProperty(name)); // eslint-disable-line

/**
* Add all the attributes provided
Expand Down Expand Up @@ -2603,7 +2603,7 @@
}
/** @type {string} current riot version */

const version = 'v4.8.4'; // expose some internal stuff that might be used from external tools
const version = 'v4.8.6'; // expose some internal stuff that might be used from external tools

const __ = {
cssManager,
Expand Down
Loading

0 comments on commit 2ee1af4

Please sign in to comment.