
>> dragdrop-min.js, dragdrop.js, utilities.js :
   Fixed as per YUI ticket (http://yuilibrary.com/projects/yui2/ticket/2529410).
   Applied code fix to dragdrop-min.js, dragdrop.js and utilities.js (change was only noticeable after changing utilities.js though). 
   
>> connection.js
   Updated as per: http://yuilibrary.com/projects/yui2/ticket/2529421
   Updated the file in /ops/yui/connnection. However, to see the changes take effect I had to put the file in a connection folder under /WEB-INF/resources/ops/yui/ in the application server.

>> connection-min.js
   createFrame function changed from:
   var B="yuiIO"+this._transaction_id;var C;if(YAHOO.env.ua.ie)
   To:
   var B="yuiIO"+this._transaction_id;var dM = document.documentMode ? document.documentMode : false;var ie9plus = (dM >= 9) ? true : false;var C;if(YAHOO.env.ua.ie && !ie9plus)

   uploadFile function changed from:
   ﻿var I="yuiIO"+D.tId,J="multipart/form-data",L=document.getElementById(I),O=this,K=(N&&N.argument)?N.argument:null,M,H,B,G;
   if(YAHOO.env.ua.ie)
   To:
   ﻿var I="yuiIO"+D.tId,J="multipart/form-data",L=document.getElementById(I),O=this,K=(N&&N.argument)?N.argument:null,M,H,B,G;var dM = document.documentMode ? document.documentMode : false;var ie9plus = (dM >= 9) ? true : false;
   if(YAHOO.env.ua.ie && !ie9plus)
   
>> selector.js, selector-min.js :
   Add support for IE9
   Replaced:
   if (YAHOO.env.ua.ie)		//line 660
   With:
   if(YAHOO.env.ua.ie && ((!document.documentMode && YAHOO.env.ua.ie<8) || document.documentMode < 8))
