Changes between Initial Version and Version 1 of Ticket #11364, comment 3
- Timestamp:
- Oct 29, 2013, 5:38:39 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11364, comment 3
initial v1 1 1 To be able to use image maps I replaced the lines of code as listed below. Hopefully the only Python 2.4 compatibility issues. I now compiles fine. It worked in Chrome but not a clickable map in Internet Explorer 11. 2 2 {{{#!python 3 3 cmap = self._read_cmapx_from_file(img_id) if \ 4 4 self._is_cmapx_existing(img_id) else '' 5 5 }}} 6 6 with: 7 7 {{{#!python 8 8 if self._is_cmapx_existing(img_id): 9 9 cmap = self._read_cmapx_from_file(img_id) 10 10 else: 11 11 cmap = '' 12 }}}