source: DASISH/t5.6/client/branches/webannotator-basic/chrome/markingcollection/content/markingcollection/objecttooltipOverlay.xul @ 5428

Last change on this file since 5428 was 5428, checked in by stephanie.roth@snd.gu.se, 10 years ago

Added new branch for work on schema change related client fixes.

File size: 1.5 KB
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<!DOCTYPE overlay SYSTEM "chrome://markingcollection/locale/markingcollection.dtd">
3<overlay
4        id="objecttooltipOverlay"
5        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
6        xmlns:html="http://www.w3.org/1999/xhtml">
7        <script type="application/x-javascript" src="chrome://markingcollection/content/objecttooltip.js"/>
8        <script type="application/x-javascript">
9        <![CDATA[
10                function _objecttooltipOverlayInit(aEvent){
11                        window.setTimeout(
12                                function(){
13                                        bitsObjectTooltip.init(aEvent);
14                                },0);
15                }
16                function _objecttooltipOverlayDone(aEvent){
17                        bitsObjectTooltip.done(aEvent);
18                }
19                window.addEventListener("load", _objecttooltipOverlayInit, false);
20                window.addEventListener("unload", _objecttooltipOverlayDone, false);
21        ]]>
22        </script>
23        <popupset id="mainPopupSet">
24                <tooltip id="MarkingCollectionObjectTooltip" flex="1">
25                        <grid>
26                                <columns>
27                                        <column/>
28                                        <column flex="1"/>
29                                </columns>
30                                <rows>
31                                        <row>
32                                                <hbox align="start" pack="end">
33                                                        <description value="&markingcollection.setting.marker.mouseover.title; : " style="font-weight:bold;"/>
34                                                </hbox><description id="MarkingCollectionObjectTooltipTitleLabel"/>
35                                        </row>
36                                        <row>
37                                                <hbox align="start" pack="end">
38                                                        <description value="&markingcollection.setting.marker.mouseover.note; : " style="font-weight:bold;"/>
39                                                </hbox><description id="MarkingCollectionObjectTooltipNoteDescription"/>
40                                        </row>
41                                </rows>
42                        </grid>
43                </tooltip>
44        </popupset>
45</overlay>
Note: See TracBrowser for help on using the repository browser.