This repository was archived by the owner on Jul 3, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 2
2
Function: eCSStender()
3
3
Author: Aaron Gustafson (aaron at easy-designs dot net)
4
4
Creation Date: 2006-12-03
5
- Version: 1.2.6.1
5
+ Version: 1.2.6.2
6
6
Homepage: http://eCSStender.org
7
7
License: MIT License (see homepage)
8
8
------------------------------------------------------------------------------*/
@@ -129,7 +129,7 @@ License: MIT License (see homepage)
129
129
// eCSStender Object
130
130
eCSStender = {
131
131
name : ECSSTENDER ,
132
- version : '1.2.6.1 ' ,
132
+ version : '1.2.6.2 ' ,
133
133
fonts : [ ] ,
134
134
pages : { } ,
135
135
at : { } ,
@@ -1381,7 +1381,14 @@ License: MIT License (see homepage)
1381
1381
__cache_object . expires = tomorrow ;
1382
1382
clearBrowserCache = function ( )
1383
1383
{
1384
- __cache_object . XMLDocument . childNodes [ 0 ] . attributes . length = 0 ;
1384
+ var
1385
+ attr = __cache_object . XMLDocument . firstChild . attributes ,
1386
+ i = attr . length ;
1387
+ while ( i -- )
1388
+ {
1389
+ __cache_object . removeAttribute ( attr [ i ] . nodeName ) ;
1390
+ }
1391
+ __cache_object . save ( ECSSTENDER ) ;
1385
1392
} ;
1386
1393
readFromBrowserCache = function ( cache , key )
1387
1394
{
You can’t perform that action at this time.
0 commit comments