Add strict mode directive to a few more files.

This commit is contained in:
John-David Dalton
2016-05-31 10:47:29 -07:00
parent 1a1771f0b5
commit fd96d59963
3 changed files with 4 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
;(function() { ;(function() {
'use strict';
/** Used to access the Firebug Lite panel (set by `run`). */ /** Used to access the Firebug Lite panel (set by `run`). */
var fbPanel; var fbPanel;

View File

@@ -1,3 +1,5 @@
'use strict';
self.console || (self.console = { 'log': function() {} }); self.console || (self.console = { 'log': function() {} });
addEventListener('message', function(e) { addEventListener('message', function(e) {

View File

@@ -1,4 +1,5 @@
;(function() { ;(function() {
'use strict';
/** Used as a safe reference for `undefined` in pre-ES5 environments. */ /** Used as a safe reference for `undefined` in pre-ES5 environments. */
var undefined; var undefined;