Changeset 2815
- Timestamp:
- 11/22/07 18:25:09 (1 year ago)
- Files:
-
- revtreeplugin/0.11/revtree/htdocs/js/svgtip.js (modified) (1 diff)
- revtreeplugin/0.11/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
revtreeplugin/0.11/revtree/htdocs/js/svgtip.js
r2294 r2815 113 113 // wtih innerHTML, as load() does not work for some reason (why?) 114 114 // cannot use $.get(), need to go with $.ajax() 115 $.ajax({async: true, type: "GET", dataType: ' html',115 $.ajax({async: true, type: "GET", dataType: 'text', 116 116 url: logurl, success: updateJT}); 117 117 } 118 118 119 119 function updateJT(data) { 120 // cannot use innerHTML with jQuery 120 // cannot use innerHTML with jQuery ($('#JT_copy').innerHTML) 121 121 var copy = document.getElementById('JT_copy'); 122 122 // why innerHTML work with application/xhtml+xml doctype here? revtreeplugin/0.11/setup.py
r2564 r2815 16 16 17 17 PACKAGE = 'TracRevtreePlugin' 18 VERSION = '0.5. 9'18 VERSION = '0.5.10' 19 19 20 20 setup (
