From 2e141893cc03df84593a2fa9aad481f78d8476c3 Mon Sep 17 00:00:00 2001 From: Ken Sheedlo Date: Tue, 7 Oct 2014 17:35:37 -0700 Subject: [PATCH] fix(browserTrigger): remove unused msie variable The variable `msie` was used in strict mode without declaring it first, causing both jshint and the module tests to fail. This change removes it, since it was unused. --- src/ngScenario/browserTrigger.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/ngScenario/browserTrigger.js b/src/ngScenario/browserTrigger.js index ceaa30d50b70..d98e4e1abe83 100644 --- a/src/ngScenario/browserTrigger.js +++ b/src/ngScenario/browserTrigger.js @@ -1,12 +1,6 @@ 'use strict'; (function() { - /** - * documentMode is an IE-only property - * http://msdn.microsoft.com/en-us/library/ie/cc196988(v=vs.85).aspx - */ - msie = document.documentMode; - /** * Triggers a browser event. Attempts to choose the right event if one is * not specified.