Skip to content

Commit

Permalink
That's what you get when doing search/replace blindly...
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed May 28, 2011
1 parent 9a22015 commit ced16d5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Albeit theorically not as accurate the widget can also be easily inserted to **a

### Change Log ###

2011 05 28 - **r6** (4.102 KB, gzip: 1.387 KB)
2011 05 28 - **r6** (4.103 KB, gzip: 1.384 KB)

* Updated check for memory accesible browsers.
* Renamed MEM to MB for consistency reasons.
Expand Down
2 changes: 1 addition & 1 deletion build/Stats.js

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

2 changes: 1 addition & 1 deletion src/Stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ var Stats = function () {

if ( _modesCount == 3 ) {

_mb = performance.mbory.usedJSHeapSize * 0.000000954;
_mb = performance.memory.usedJSHeapSize * 0.000000954;
_mbMin = Math.min( _mbMin, _mb );
_mbMax = Math.max( _mbMax, _mb );

Expand Down
2 changes: 1 addition & 1 deletion utils/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
output = '../build/Stats.js';
string = "// stats.js r" + str(rev) + " - http://github.com/mrdoob/stats.js\n";

os.system("java -jar compiler/compiler.jar --js ../src/Stats.js --js_output_file ../build/Stats.js");
os.system("java -jar compiler/compiler.jar --language_in=ECMASCRIPT5 --js ../src/Stats.js --js_output_file ../build/Stats.js");

src_file = open(output,'r');
string += src_file.read() + "\n";
Expand Down

0 comments on commit ced16d5

Please sign in to comment.