Skip to content

Commit

Permalink
Build v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eKoopmans committed Dec 14, 2017
1 parent 3be4900 commit a34ca2f
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 13 deletions.
5 changes: 3 additions & 2 deletions dist/html2pdf.bundle.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* html2pdf v0.8.0
* html2pdf.js v0.8.1
* Copyright (c) 2017 Erik Koopmans
* Released under the MIT License.
*/
Expand Down Expand Up @@ -5065,7 +5065,8 @@ jspdf_min.getPageSize = function (orientation, unit, format) {

// Determine the type of a variable/object.
var objType = function objType(obj) {
if (typeof obj === 'undefined') return 'undefined';else if (typeof obj === 'string' || obj instanceof String) return 'string';else if (typeof obj === 'number' || obj instanceof Number) return 'number';else if (!!obj && obj.constructor === Array) return 'array';else if (obj && obj.nodeType === 1) return 'element';else if ((typeof obj === 'undefined' ? 'undefined' : _typeof(obj)) === 'object') return 'object';else return 'unknown';
var type = typeof obj === 'undefined' ? 'undefined' : _typeof(obj);
if (type === 'undefined') return 'undefined';else if (type === 'string' || obj instanceof String) return 'string';else if (type === 'number' || obj instanceof Number) return 'number';else if (type === 'function' || obj instanceof Function) return 'function';else if (!!obj && obj.constructor === Array) return 'array';else if (obj && obj.nodeType === 1) return 'element';else if (type === 'object') return 'object';else return 'unknown';
};

// Create an HTML element with optional className, innerHTML, and style.
Expand Down
4 changes: 2 additions & 2 deletions dist/html2pdf.bundle.min.js

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions dist/html2pdf.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* html2pdf v0.8.0
* html2pdf.js v0.8.1
* Copyright (c) 2017 Erik Koopmans
* Released under the MIT License.
*/
Expand Down Expand Up @@ -124,7 +124,8 @@ jsPDF.getPageSize = function (orientation, unit, format) {

// Determine the type of a variable/object.
var objType = function objType(obj) {
if (typeof obj === 'undefined') return 'undefined';else if (typeof obj === 'string' || obj instanceof String) return 'string';else if (typeof obj === 'number' || obj instanceof Number) return 'number';else if (!!obj && obj.constructor === Array) return 'array';else if (obj && obj.nodeType === 1) return 'element';else if ((typeof obj === 'undefined' ? 'undefined' : _typeof(obj)) === 'object') return 'object';else return 'unknown';
var type = typeof obj === 'undefined' ? 'undefined' : _typeof(obj);
if (type === 'undefined') return 'undefined';else if (type === 'string' || obj instanceof String) return 'string';else if (type === 'number' || obj instanceof Number) return 'number';else if (type === 'function' || obj instanceof Function) return 'function';else if (!!obj && obj.constructor === Array) return 'array';else if (obj && obj.nodeType === 1) return 'element';else if (type === 'object') return 'object';else return 'unknown';
};

// Create an HTML element with optional className, innerHTML, and style.
Expand Down
4 changes: 2 additions & 2 deletions dist/html2pdf.min.js

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

5 changes: 3 additions & 2 deletions dist/include/html2pdf.es.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* html2pdf v0.8.0
* html2pdf.js v0.8.1
* Copyright (c) 2017 Erik Koopmans
* Released under the MIT License.
*/
Expand Down Expand Up @@ -119,7 +119,8 @@ jsPDF.getPageSize = function (orientation, unit, format) {

// Determine the type of a variable/object.
var objType = function objType(obj) {
if (typeof obj === 'undefined') return 'undefined';else if (typeof obj === 'string' || obj instanceof String) return 'string';else if (typeof obj === 'number' || obj instanceof Number) return 'number';else if (!!obj && obj.constructor === Array) return 'array';else if (obj && obj.nodeType === 1) return 'element';else if ((typeof obj === 'undefined' ? 'undefined' : _typeof(obj)) === 'object') return 'object';else return 'unknown';
var type = typeof obj === 'undefined' ? 'undefined' : _typeof(obj);
if (type === 'undefined') return 'undefined';else if (type === 'string' || obj instanceof String) return 'string';else if (type === 'number' || obj instanceof Number) return 'number';else if (type === 'function' || obj instanceof Function) return 'function';else if (!!obj && obj.constructor === Array) return 'array';else if (obj && obj.nodeType === 1) return 'element';else if (type === 'object') return 'object';else return 'unknown';
};

// Create an HTML element with optional className, innerHTML, and style.
Expand Down
5 changes: 3 additions & 2 deletions dist/require/html2pdf.cjs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* html2pdf v0.8.0
* html2pdf.js v0.8.1
* Copyright (c) 2017 Erik Koopmans
* Released under the MIT License.
*/
Expand Down Expand Up @@ -123,7 +123,8 @@ jsPDF.getPageSize = function (orientation, unit, format) {

// Determine the type of a variable/object.
var objType = function objType(obj) {
if (typeof obj === 'undefined') return 'undefined';else if (typeof obj === 'string' || obj instanceof String) return 'string';else if (typeof obj === 'number' || obj instanceof Number) return 'number';else if (!!obj && obj.constructor === Array) return 'array';else if (obj && obj.nodeType === 1) return 'element';else if ((typeof obj === 'undefined' ? 'undefined' : _typeof(obj)) === 'object') return 'object';else return 'unknown';
var type = typeof obj === 'undefined' ? 'undefined' : _typeof(obj);
if (type === 'undefined') return 'undefined';else if (type === 'string' || obj instanceof String) return 'string';else if (type === 'number' || obj instanceof Number) return 'number';else if (type === 'function' || obj instanceof Function) return 'function';else if (!!obj && obj.constructor === Array) return 'array';else if (obj && obj.nodeType === 1) return 'element';else if (type === 'object') return 'object';else return 'unknown';
};

// Create an HTML element with optional className, innerHTML, and style.
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

0 comments on commit a34ca2f

Please sign in to comment.