Changeset 8317 for mauRepo/MolesManager
- Timestamp:
- 15/05/12 10:33:56 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
mauRepo/MolesManager/trunk/src/MolesManager/static/templates/cedaBrowse.html
r8315 r8317 89 89 show: "blind", 90 90 hide: "explode", 91 title: 'Help' 91 title: 'Help', 92 modal: true 92 93 }); 93 94 $("#b_help").click(function() { … … 102 103 show: "blind", 103 104 hide: "explode", 104 title: 'citation' 105 title: 'citation', 106 modal: true 105 107 }); 106 108 $("#b_cit").click(function() { … … 114 116 show: "blind", 115 117 hide: "explode", 116 title: 'download' 118 title: 'download', 119 modal: true 117 120 }); 118 121 $("#b_download").click(function() { … … 126 129 show: "blind", 127 130 hide: "explode", 128 title: 'access' 131 title: 'access', 132 modal: true 129 133 }); 130 134 $("#b_access").click(function() { 131 135 $accessdialog.dialog('open'); 136 return false; 137 }); 138 var $sampledialog = $('<div></div>') 139 .html('<p> sample data here </p>') 140 .dialog({ 141 autoOpen: false, 142 show: "blind", 143 hide: "explode", 144 title: "sample dialog", 145 height:140, 146 modal:true 147 }); 148 $("#b_sample").click(function() { 149 $sampledialog.dialog("open"); 132 150 return false; 133 151 }); … … 201 219 <div align="center"> 202 220 <p> 203 <button id="b 1">sample data</button>221 <button id="b_sample">sample data</button> 204 222 <br/> 205 223 <button id="b_download">download and services</button>
Note: See TracChangeset
for help on using the changeset viewer.