diff options
author | ivan <ivan> | 2008-04-01 23:56:50 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-04-01 23:56:50 +0000 |
commit | 45112ba6318cc2140d05847fb0acf5079cc94c5d (patch) | |
tree | 282572af130e90c738131121e53a49c760f7e8c6 /httemplate | |
parent | 58c6a7464eb8c735bd09ce8754b89e7157038b22 (diff) |
fix hasty safari iframe fix
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/elements/iframecontentmws.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/elements/iframecontentmws.js b/httemplate/elements/iframecontentmws.js index 91dcfb842..f2a91d21b 100644 --- a/httemplate/elements/iframecontentmws.js +++ b/httemplate/elements/iframecontentmws.js @@ -19,7 +19,8 @@ */
function OLiframeContent(src, width, height, name, frameborder, scrolling) {
- #stupid safari iframe location caching...
+ /* stupid safari iframe location caching... */
+ var d = new Date();
var unique = d.getTime() + '' + Math.floor(1000 * Math.random());
name = name + '' + unique;
|