Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
fix: use strcit mode for the zone.js code only
Browse files Browse the repository at this point in the history
The problem with using strict mode for the entire files
is that it will propagate for the entire bundled files
if zones.js is concatenated with other code written in
the non-strict mode
  • Loading branch information
pkozlowski-opensource committed Apr 25, 2015
1 parent 5d6bee4 commit 16855e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zone.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

(function (exports) {

'use strict';

var zone = null;


Expand Down

0 comments on commit 16855e5

Please sign in to comment.