Opened 12 years ago

Closed 12 years ago

Last modified 12 years ago

#8993 closed Bug (invalid)

changed in editor.css is not seems in IE browser

Reported by: bhargav Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: Cc:

Description

when i changed image(icons.png) from editor.css IE browser bring the old image from cache instated of new image. In short IE browser is not refresh css it take the old css value from cache even changes has made.

Change History (2)

comment:1 Changed 12 years ago by Jakub Ś

Resolution: invalid
Status: newclosed

Try using http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.html#.timestamp. If you want to reload the styles you should do something like this:

...
<script type="text/javascript" src="../ckeditor.js"></script>
<script type="text/javascript">
	CKEDITOR.timestamp = 1234568;
</script>
</head>
<body>
...
<script type="text/javascript">
	CKEDITOR.replace( 'editor1');
</script>
...

Each time you change the timestamp resources will be reloaded.

comment:2 Changed 12 years ago by bhargav

This solution is not sufficient. css is changed after 3-4 time refreshing ie browser.

Can u please elaborate the above solution.

Thank you.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy