Artur Adib 14 years ago
parent
commit
3a8aad0f36
  1. 4
      Makefile
  2. 2
      src/pdf.js

4
Makefile

@ -113,11 +113,11 @@ browser-test:
# To install gjslint, see: # To install gjslint, see:
# #
# <http://code.google.com/closure/utilities/docs/linter_howto.html> # <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 extensions/firefox/components
GJSLINT_FILES = $(foreach DIR,$(SRC_DIRS),$(wildcard $(DIR)/*.js)) GJSLINT_FILES = $(foreach DIR,$(SRC_DIRS),$(wildcard $(DIR)/*.js))
lint: lint:
gjslint $(GJSLINT_FILES) gjslint --nojsdoc $(GJSLINT_FILES)
# make web # make web
# #

2
src/pdf.js

@ -3,7 +3,7 @@
var PDF = {}; var PDF = {};
(function(globalScope){ (function(globalScope) {
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
'use strict'; 'use strict';

Loading…
Cancel
Save