Changeset 6580
- Timestamp:
- Oct 28, 2014, 7:50:27 AM (8 years ago)
- Location:
- branches/3.3-stable/www/common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-stable/www/common/annotations/list.js
r6255 r6580 47 47 url += '&item_type='+Data.get('annotate-data', 'item-type'); 48 48 url += '&item_id='+Data.get('annotate-data', 'item-id'); 49 frames['annotations'].location. href = url;49 frames['annotations'].location.replace(url); 50 50 loaded = true; 51 51 } -
branches/3.3-stable/www/common/history/history.js
r6307 r6580 60 60 url += '&source_type='+Data.get('history-data', 'source-type'); 61 61 url += '&source_id='+Data.get('history-data', 'source-id'); 62 frames['history-frame'].location. href = url;62 frames['history-frame'].location.replace(url); 63 63 loaded = true; 64 64 } -
branches/3.3-stable/www/common/overview/overview.js
r6242 r6580 41 41 url += '&item_type='+Data.get('overview-data', 'item-type'); 42 42 url += '&item_id='+Data.get('overview-data', 'item-id'); 43 frames['overview'].location. href = url;43 frames['overview'].location.replace(url); 44 44 loaded = true; 45 45 } … … 51 51 url += '&item_type='+Data.get('overview-data', 'item-type'); 52 52 url += '&item_id='+Data.get('overview-data', 'item-id'); 53 frames['overview'].location. href = url;53 frames['overview'].location.replace(url); 54 54 } 55 55 … … 60 60 url += '&item_type='+Data.get('overview-data', 'item-type'); 61 61 url += '&item_id='+Data.get('overview-data', 'item-id'); 62 frames['overview'].location. href = url;62 frames['overview'].location.replace(url); 63 63 } 64 64
Note: See TracChangeset
for help on using the changeset viewer.