Skip to content

Commit

Permalink
Merge pull request #65 from brianpursley/master
Browse files Browse the repository at this point in the history
Added showMousePointer config option to CanvasRecorder so that you ca…
  • Loading branch information
muaz-khan committed Dec 5, 2015
2 parents 37441b2 + 8e73799 commit 3b30e9e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion RecordRTC.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Last time updated at Tuesday, October 27th, 2015, 4:33:33 PM
// Last time updated at Thursday, December 3rd, 2015, 9:54:34 PM

// links:
// Open-Sourced: https://github.com/muaz-khan/RecordRTC
Expand Down Expand Up @@ -2367,6 +2367,7 @@ function CanvasRecorder(htmlElement, config) {
}

html2canvas(htmlElement, {
grabMouse: typeof config.showMousePointer === 'undefined' || config.showMousePointer,
onrendered: function(canvas) {
if (isCanvasSupportsStreamCapturing) {
var image = document.createElement('img');
Expand Down

0 comments on commit 3b30e9e

Please sign in to comment.