2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Merging the Limesurvey 1.91+ branch of queXS in to the trunk

This commit is contained in:
azammitdcarf
2011-09-08 01:58:41 +00:00
parent dfa55a3b9e
commit eaa9578ab8
2312 changed files with 811461 additions and 597534 deletions

View File

@@ -0,0 +1,37 @@
// $Id: surveytoolbar.js 9648 2011-01-07 13:06:39Z c_schmitz $
// based on TTabs from http://interface.eyecon.ro/
$(document).ready(function(){
// Load the superfish menu
$('ul.sf-menu').superfish({
speed:'fast'
});
//Load the special tooltips for the surveybar
$('.surveybar img[alt]').each(function() {
if($(this).attr('alt') != '')
{
$(this).qtip({
style: { name: 'cream',
tip:true,
color:'#1D2D45',
border: {
width: 1,
radius: 5,
color: '#EADF95'}
},
position: { adjust: {
screen: true, scroll:true },
corner: {
target: 'topRight',
tooltip: 'bottomLeft'}
},
show: {effect: { length:50},
delay:1000
},
hide: { when: 'mouseout' },
api: { onRender: function() {$(this.options.hide.when.target).bind('click', this.hide);}}
});
}
});
});