From 64542fc8035b71252dd7d8678dd82e1a910a76c4 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Sat, 12 Apr 2014 08:01:07 -0400
Subject: [PATCH] Drop support for IE6, move IE7/IE8 support to legacy_browser plugin, update to jQuery-2.1.0

---
 program/js/common.js |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/program/js/common.js b/program/js/common.js
index 722eb3f..ed9488b 100644
--- a/program/js/common.js
+++ b/program/js/common.js
@@ -53,7 +53,6 @@
   this.ie = (document.all && !window.opera) || (this.win && this.agent_lc.indexOf('trident/') > 0);
 
   if (this.ie) {
-    this.ie6 = this.appver.indexOf('MSIE 6') > 0;
     this.ie7 = this.appver.indexOf('MSIE 7') > 0;
     this.ie8 = this.appver.indexOf('MSIE 8') > 0;
     this.ie9 = this.appver.indexOf('MSIE 9') > 0;

--
Gitblit v1.9.1