Deprecated function

Recommend this page to a friend!

      JavaScript HTML Table Excel Export  >  All threads  >  Deprecated function  >  (Un) Subscribe thread alerts  
Subject:Deprecated function
Summary:Function unescape is deprecated
Messages:2
Author:Gerry Danen
Date:2015-04-21 13:26:05
 

  1. Deprecated function   Reply   Report abuse  
Picture of Gerry Danen Gerry Danen - 2015-04-21 13:26:05
Line 19 shows
return window.btoa(unescape(encodeURIComponent(s)))

I have changed this to
return window.btoa(decodeURIComponent(encodeURIComponent(s)));

  2. Re: Deprecated function   Reply   Report abuse  
Picture of Gianluca Zanferrari Gianluca Zanferrari - 2015-04-21 13:38:53 - In reply to message 1 from Gerry Danen
thanks, i think I will change it in the class itself.