# To install gjslint, see:
#
# <http://code.google.com/closure/utilities/docs/linter_howto.html>
-SRC_DIRS := . utils web test examples/helloworld extensions/firefox \
+SRC_DIRS := . src utils web test examples/helloworld extensions/firefox \
extensions/firefox/components
GJSLINT_FILES = $(foreach DIR,$(SRC_DIRS),$(wildcard $(DIR)/*.js))
lint:
- gjslint $(GJSLINT_FILES)
+ gjslint --nojsdoc $(GJSLINT_FILES)
# make web
#
var PDF = {};
-(function(globalScope){
+(function(globalScope) {
// Use strict in our context only - users might not want it
'use strict';
var useWorker = false;
var console;
- // Files are inserted below - see Makefile
+ // Files are inserted below - see Makefile
/* INSERT_POINT */
// Worker-specific
} else {
var consoleTimer = {};
console = workerConsole;
-
+
// Listen for messages from the main thread.
var handler = new MessageHandler('worker_processor', globalScope);
WorkerProcessorHandler.setup(handler);