Changeset 101 for trunk/web-app
- Timestamp:
- Jan 20, 2010, 5:01:26 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/web-app/js/wizard.js
r98 r101 14 14 */ 15 15 $(document).ready(function() { 16 attachHelpTooltips(); 17 }); 18 19 function attachHelpTooltips() { 16 20 // attach help action on all wizard help icons 17 21 $('div#wizard').find('div.help').each(function() { … … 19 23 content: 'leftMiddle', 20 24 position: { 21 corner: {22 tooltip: 'leftMiddle',23 target: 'rightMiddle'24 }25 corner: { 26 tooltip: 'leftMiddle', 27 target: 'rightMiddle' 28 } 25 29 }, 26 30 style: { 27 border: {28 width: 5,29 radius: 1030 },31 padding: 10,32 textAlign: 'center',33 tip: true, // Give it a speech bubble tip with automatic corner detection34 name: 'blue' // Style it according to the preset 'cream' style31 border: { 32 width: 5, 33 radius: 10 34 }, 35 padding: 10, 36 textAlign: 'center', 37 tip: true, // Give it a speech bubble tip with automatic corner detection 38 name: 'blue' // Style it according to the preset 'cream' style 35 39 }, 36 40 content: $(this).find('div.content').html(), … … 39 43 }) 40 44 }) 41 } );45 }
Note: See TracChangeset
for help on using the changeset viewer.