Subversion Repositories wpShopGermany4

Rev

Rev 5386 | Rev 5488 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5386 Rev 5439
Line 24... Line 24...
24
		} );
24
		} );
25
		
25
		
26
		return ui;
26
		return ui;
27
		
27
		
28
	};
28
	};
29
  
-
 
30
jQuery.fn.tipTip = function() {
-
 
31
  
-
 
32
	if (jQuery(this).hasClass('tipTip')) return;
-
 
33
	jQuery(this).addClass('tipTip');
-
 
34
		
-
 
35
	jQuery(this).cluetip( { 
-
 
36
		width: '400px',
-
 
37
		height: '400px', 
-
 
38
		activation: 'click',
-
 
39
		sticky: true,
-
 
40
		/*mouseOutClose: 'both',*/
-
 
41
		closePosition: 'title', 
-
 
42
		arrows: true,
-
 
43
		closeText: 'Schließen',
-
 
44
		onActivate: function() {
-
 
45
 
-
 
46
			jQuery('#cluetip').hide();
-
 
47
		
-
 
48
		},
-
 
49
		onShow: function() {
-
 
50
		
-
 
51
			jQuery('.cluetip-title').prepend(jQuery('.cluetip-inner h1').first().text());
-
 
52
			jQuery('.cluetip-inner h1').first().remove();
-
 
53
			
-
 
54
			jQuery('.cluetip-inner').css('overflow-y', 'show');
-
 
55
			jQuery('.cluetip-inner').css('height', 'auto');
-
 
56
			
-
 
57
			var height_content = jQuery('.cluetip-inner').outerHeight();
-
 
58
			var height_title = jQuery('.cluetip-title').outerHeight();
-
 
59
						
-
 
60
			if (height_content < 400)
-
 
61
			{
-
 
62
				
-
 
63
				jQuery('.cluetip-outer').height((height_content + height_title) + "px");
-
 
64
				
-
 
65
			}
-
 
66
			else
-
 
67
			{
-
 
68
				
-
 
69
				jQuery('.cluetip-outer').height("400px");
-
 
70
				
-
 
71
				jQuery('.cluetip-inner').css('overflow-y', 'scroll');
-
 
72
				jQuery('.cluetip-inner').css('height', '332px');
-
 
73
				
-
 
74
			} 
-
 
75
						
-
 
76
		}
-
 
77
	} );
-
 
78
	 
-
 
79
};
-
 
80
  
29
    
81
jQuery.fn.wpsg_adminbox = function(options) {
30
jQuery.fn.wpsg_adminbox = function(options) {
82
		
31
		
83
	return this.each(function() {
32
	return this.each(function() {
84
				
33
				
85
		var adminbox_id = jQuery(this).attr("id");
34
		var adminbox_id = jQuery(this).attr("id");
Line 191... Line 140...
191
    return false;
140
    return false;
192
    
141
    
193
}
142
}
194
 
143
 
195
	jQuery(document).ready(function() {
144
	jQuery(document).ready(function() {
-
 
145
		 
-
 
146
		// Hilfe Tooltips
-
 
147
		jQuery('*[data-wpsg-tip]').bind('click', function() { 
-
 
148
 
-
 
149
			jQuery(this).unbind('click');
-
 
150
 
-
 
151
			var po = this;
-
 
152
 
-
 
153
			jQuery(this).popover( {
-
 
154
				'html': true,
-
 
155
				'content': '<div id="wpsg-popover-content"><img src="' + wpsg_ajax.img_ajaxloading + '" alt="' + wpsg_ajax.label_pleasewait + '" /></div>',
-
 
156
				'trigger': 'focus',
-
 
157
				'container': '#wpsg-bs',
-
 
158
				'placement': 'right'
-
 
159
			} ).popover('show');
-
 
160
 
-
 
161
			jQuery.ajax( {
-
 
162
				url: '?page=wpsg-Admin&subaction=loadHelp&noheader=1',
-
 
163
				data: {
-
 
164
					field: jQuery(this).attr('data-wpsg-tip')
-
 
165
				},
-
 
166
				success: function(data) {
-
 
167
					
-
 
168
					var popover = jQuery(po).attr('data-content', data).data('popover');
-
 
169
					jQuery(po).data('bs.popover').options.content = data;
-
 
170
					
-
 
171
					jQuery(po).popover('show');
-
 
172
										
-
 
173
				}
-
 
174
			} );
-
 
175
			 
-
 
176
			return false;
-
 
177
			
-
 
178
		} );
196
		
179
		
197
		jQuery('.wpsg_showhide_filter').bind('click', function() { 
180
		jQuery('.wpsg_showhide_filter').bind('click', function() { 
198
			
181
			
199
			if (jQuery(this).hasClass('active'))
182
			if (jQuery(this).hasClass('active'))
200
			{
183
			{