Fixed compilation scripts and small type error

This commit is contained in:
Lewis Hemens 2014-01-05 00:50:43 +00:00
parent a8eff4623a
commit b4fa9dc4ea
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
closure-library/closure/bin/build/closurebuilder.py --root=js-lib/ --root=closure-library/ --namespace="asciiflow.launch" --compiler_flags="--warning_level=VERBOSE" --compiler_flags="--formatting=PRETTY_PRINT" --compiler_flags="--compilation_level=ADVANCED_OPTIMIZATIONS" --output_mode=compiled --compiler_jar=closure-library/compiler.jar > js-compiled.js
../closure-library/closure/bin/build/closurebuilder.py --root=../closure-library/ --root=js-lib/ --namespace="asciiflow.launch" --compiler_flags="--warning_level=VERBOSE" --compiler_flags="--formatting=PRETTY_PRINT" --compiler_flags="--compilation_level=ADVANCED_OPTIMIZATIONS" --output_mode=compiled --compiler_jar=closure-compiler.jar > js-compiled.js

View File

@ -7,7 +7,7 @@ goog.require('asciiflow.View');
asciiflow.launch = function() {
var view = new asciiflow.View();
var context = view.getCsontext();
var context = view.getContext();
context.font = 'italic 10pt Calibri';
context.fillText('Hello World!', 150, 100);
};