Skip to content

Commit

Permalink
Release v2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Mrowetz committed Feb 13, 2018
1 parent ee74a50 commit abc66bd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions perf-cascade-file-reader.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! github.com/micmro/PerfCascade Version:2.2.1 (21/11/2017) */
/*! github.com/micmro/PerfCascade Version:2.2.2 (13/02/2018) */
/*
Copyright (c) 2013 Gildas Lormeau. All rights reserved.
Expand Down Expand Up @@ -3122,7 +3122,7 @@
env.Inflater = env._jzlib_Inflater = Inflater;
})(this);

/*! github.com/micmro/PerfCascade Version:2.2.1 (21/11/2017) */
/*! github.com/micmro/PerfCascade Version:2.2.2 (13/02/2018) */

(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.perfCascadeFileReader = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
"use strict";
Expand Down
2 changes: 1 addition & 1 deletion perf-cascade-file-reader.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion perf-cascade.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! github.com/micmro/PerfCascade Version:2.2.1 (21/11/2017) */
/*! github.com/micmro/PerfCascade Version:2.2.2 (13/02/2018) */
.water-fall-chart {width:100%; overflow: visible; font-size: 12px; line-height: 1em;}
.water-fall-chart * {box-sizing: border-box;}
.water-fall-chart button {cursor: pointer;}
Expand Down
5 changes: 4 additions & 1 deletion perf-cascade.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! github.com/micmro/PerfCascade Version:2.2.1 (21/11/2017) */
/*! github.com/micmro/PerfCascade Version:2.2.2 (13/02/2018) */

(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.perfCascade = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
"use strict";
Expand Down Expand Up @@ -638,6 +638,9 @@ var htmlChars = new RegExp(Object.keys(htmlCharMap).join("|"), "g");
*/
function escapeHtml(unsafe) {
if (unsafe === void 0) { unsafe = ""; }
if (unsafe === null) {
return ""; // See https://github.com/micmro/PerfCascade/issues/217
}
if (typeof unsafe !== "string") {
if (typeof unsafe["toString"] === "function") {
unsafe = unsafe.toString();
Expand Down
4 changes: 2 additions & 2 deletions perf-cascade.min.js

Large diffs are not rendered by default.

0 comments on commit abc66bd

Please sign in to comment.