feat(strict mode): adding strict mode flag to all js files

the flag must be in all src and test files so that we get the benefit of
running in the strict mode even in jstd

the following script was used to modify all files:

for file in `find src test -name "*.js"`; do
  echo -e "'use strict';\n" > temp.txt
  cat $file >> temp.txt
  mv temp.txt $file
done
This commit is contained in:
Igor Minar
2011-07-17 01:05:43 -07:00
parent b98c23274b
commit fe5240732d
108 changed files with 216 additions and 0 deletions

View File

@@ -1 +1,3 @@
'use strict';
var _jQuery = jQuery.noConflict(true);