Skip to content

Commit

Permalink
Merge pull request #13 from trinketapp/fix-print-container
Browse files Browse the repository at this point in the history
Fixes print container issue. Updates version to 2.7.5.
  • Loading branch information
brianpmarks authored Jan 24, 2019
2 parents ca2120d + f40cb5b commit 89348d5
Show file tree
Hide file tree
Showing 6 changed files with 151 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var gulp = require('gulp')
, version
, glowscript_libraries;

version = '2.7.4';
version = '2.7.5';

glowscript_libraries = {
"glow": [
Expand Down
3 changes: 2 additions & 1 deletion lib/glow/api_misc.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,8 @@
if (printarea === null) { // need to make a new printarea
var container = print_container
//container.css({float:"left"})
container.appendTo(poptions.place) // default is $('body'), below canvas (2.7)
//container.appendTo(poptions.place) // default is $('body'), below canvas (2.7)
container.appendTo($('body')) // default is $('body'), below canvas (2.7)
window.__context.print_container = container
printarea = $('<textarea id=print spellcheck="false"/>').appendTo(container).css('font-family', 'Verdana', 'Sans-Serif').css('font-size', '100%')
modify_printarea()
Expand Down
13 changes: 13 additions & 0 deletions package/RScompiler.2.7.5.min.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions package/RSrun.2.7.5.min.js

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions package/compiler.2.7.5.min.js

Large diffs are not rendered by default.

118 changes: 118 additions & 0 deletions package/glow.2.7.5.min.js

Large diffs are not rendered by default.

0 comments on commit 89348d5

Please sign in to comment.