From fe95bc66c66b396484fd199b391f8868606c918a Mon Sep 17 00:00:00 2001 From: CitizenOfRome Date: Tue, 8 Jun 2021 17:26:20 +0530 Subject: [PATCH] v1.6.1: Added full canvas support --- README.md | 5 +---- bower.json | 5 +---- demo/index.html | 16 +++++++++++++++- dist/jQuery.print.min.js | 5 ++--- jQuery.print.js | 30 ++++++++++++++++++++++++++---- package.json | 5 +---- yarn.lock | 8 ++++++++ 7 files changed, 54 insertions(+), 20 deletions(-) create mode 100644 yarn.lock diff --git a/README.md b/README.md index c94574b..fb7909b 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,4 @@ Currently this plugin supports the following options: [CC-BY](http://creativecommons.org/licenses/by/3.0/). ## Demo -[jQuery.print/demo](http://doersguild.github.io/jQuery.print/demo/) - ---------------------------------------- -Like our [work](http://doersguild.com)? [Get in touch!](mailto:mail@doersguild.com) +[jQuery.print/demo](http://doersguild.github.io/jQuery.print/demo/) \ No newline at end of file diff --git a/bower.json b/bower.json index e3a292e..6c44c6d 100644 --- a/bower.json +++ b/bower.json @@ -1,11 +1,8 @@ { "name": "jQuery.print", "main": "dist/jQuery.print.min.js", - "version": "1.6.0", + "version": "1.6.1", "homepage": "https://doersguild.github.io/jQuery.print/", - "authors": [ - "Sathvik P " - ], "description": "Easy to use, Element Printing Plugin for jQuery, for printing specific parts of a page", "keywords": [ "print", diff --git a/demo/index.html b/demo/index.html index 34c56af..a29bd5d 100644 --- a/demo/index.html +++ b/demo/index.html @@ -20,6 +20,13 @@ .b { color: #aaa; } + #canvasExample { + height: 5em; + max-width: 100%; + border: 0.2em solid #777; + display: block; + margin-bottom: 1em; + }