Skip to content

Commit 7c84583

Browse files
committed
1.4.7 proper
1 parent 1d56bd9 commit 7c84583

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

processing.js

100755100644
Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;(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);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.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){
1+
(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);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.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){
22
// build script for generating processing.js
33

44
var Browser = {
@@ -25,7 +25,7 @@ window.Processing = require('./src/')(Browser);
2525
},{"./src/":27}],2:[function(require,module,exports){
2626
module.exports={
2727
"name": "Processing.js",
28-
"version": "1.4.6",
28+
"version": "1.4.7",
2929
"dependencies": {
3030
"argv": "~0.0.2",
3131
"browserify": "~2.18.1",
@@ -9409,7 +9409,7 @@ module.exports = function setupParser(Processing, options) {
94099409
var n = t.screenY;
94109410
window.onmousemove = function (t) {
94119411
e.wrapper.style.height = parseFloat(e.divheight) + (n - t.screenY) + "px";
9412-
e.javaconsole.style.height = parseFloat(e.divheight) + (n - t.screenY) - 10 + "px"
9412+
e.javaconsole.style.height = parseFloat(e.divheight) + (n - t.screenY) - 10 + "px";
94139413
};
94149414
window.onmouseup = function (t) {
94159415
if (document.selection) document.selection.empty();
@@ -9432,7 +9432,7 @@ module.exports = function setupParser(Processing, options) {
94329432
//if (e.BufferArray.length > e.BufferMax) e.BufferArray.splice(0, 1);
94339433
//else e.javaconsole.scrollTop = oldheight;
94349434
if (e.wrapper.style.visibility === "hidden") {
9435-
e.wrapper.style.visibility = "visible"
9435+
e.wrapper.style.visibility = "visible";
94369436
}
94379437
};
94389438
e.println = function (t) {
@@ -21622,5 +21622,4 @@ module.exports = function buildProcessingJS(Browser, testHarness) {
2162221622
return Processing;
2162321623
};
2162421624

21625-
},{"../package.json":2,"./Helpers/ObjectIterator":3,"./Helpers/PConstants":4,"./Helpers/defaultScope":5,"./Helpers/finalizeProcessing":6,"./Helpers/virtEquals":7,"./Helpers/virtHashCode":8,"./Objects/ArrayList":9,"./Objects/Char":10,"./Objects/HashMap":11,"./Objects/PFont":12,"./Objects/PMatrix2D":13,"./Objects/PMatrix3D":14,"./Objects/PShape":15,"./Objects/PShapeSVG":16,"./Objects/PVector":17,"./Objects/XMLAttribute":18,"./Objects/XMLElement":19,"./Objects/webcolors":20,"./P5Functions/JavaProxyFunctions":21,"./P5Functions/Math.js":22,"./P5Functions/commonFunctions":23,"./P5Functions/touchmouse":24,"./Parser/Parser":25,"./Processing":26}]},{},[1])
21626-
;
21625+
},{"../package.json":2,"./Helpers/ObjectIterator":3,"./Helpers/PConstants":4,"./Helpers/defaultScope":5,"./Helpers/finalizeProcessing":6,"./Helpers/virtEquals":7,"./Helpers/virtHashCode":8,"./Objects/ArrayList":9,"./Objects/Char":10,"./Objects/HashMap":11,"./Objects/PFont":12,"./Objects/PMatrix2D":13,"./Objects/PMatrix3D":14,"./Objects/PShape":15,"./Objects/PShapeSVG":16,"./Objects/PVector":17,"./Objects/XMLAttribute":18,"./Objects/XMLElement":19,"./Objects/webcolors":20,"./P5Functions/JavaProxyFunctions":21,"./P5Functions/Math.js":22,"./P5Functions/commonFunctions":23,"./P5Functions/touchmouse":24,"./Parser/Parser":25,"./Processing":26}]},{},[1])

processing.min.js

100755100644
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Parser/Parser.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1765,7 +1765,7 @@ module.exports = function setupParser(Processing, options) {
17651765
var n = t.screenY;
17661766
window.onmousemove = function (t) {
17671767
e.wrapper.style.height = parseFloat(e.divheight) + (n - t.screenY) + "px";
1768-
e.javaconsole.style.height = parseFloat(e.divheight) + (n - t.screenY) - 10 + "px"
1768+
e.javaconsole.style.height = parseFloat(e.divheight) + (n - t.screenY) - 10 + "px";
17691769
};
17701770
window.onmouseup = function (t) {
17711771
if (document.selection) document.selection.empty();
@@ -1788,7 +1788,7 @@ module.exports = function setupParser(Processing, options) {
17881788
//if (e.BufferArray.length > e.BufferMax) e.BufferArray.splice(0, 1);
17891789
//else e.javaconsole.scrollTop = oldheight;
17901790
if (e.wrapper.style.visibility === "hidden") {
1791-
e.wrapper.style.visibility = "visible"
1791+
e.wrapper.style.visibility = "visible";
17921792
}
17931793
};
17941794
e.println = function (t) {

0 commit comments

Comments
 (0)