You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							68 lines
						
					
					
						
							1.7 KiB
						
					
					
				
			
		
		
	
	
							68 lines
						
					
					
						
							1.7 KiB
						
					
					
				/** | 
						|
 * Yii auth choice widget. | 
						|
 * | 
						|
 * This is the JavaScript widget used by the yii\authclient\widgets\Choice widget. | 
						|
 * | 
						|
 * @link http://www.yiiframework.com/ | 
						|
 * @copyright Copyright (c) 2008 Yii Software LLC | 
						|
 * @license http://www.yiiframework.com/license/ | 
						|
 * @author Paul Klimov <klimov.paul@gmail.com> | 
						|
 * @since 2.0 | 
						|
 */ | 
						|
jQuery(function($) { | 
						|
	$.fn.authchoice = function(options) { | 
						|
		options = $.extend({ | 
						|
			popup: { | 
						|
				resizable: 'yes', | 
						|
				scrollbars: 'no', | 
						|
				toolbar: 'no', | 
						|
				menubar: 'no', | 
						|
				location: 'no', | 
						|
				directories: 'no', | 
						|
				status: 'yes', | 
						|
				width: 450, | 
						|
				height: 380 | 
						|
			} | 
						|
		}, options); | 
						|
 | 
						|
		return this.each(function() { | 
						|
			var $container = $(this); | 
						|
 | 
						|
			$container.find('a').on('click', function(e) { | 
						|
				e.preventDefault(); | 
						|
 | 
						|
				var authChoicePopup = null; | 
						|
 | 
						|
				if (authChoicePopup = $container.data('authChoicePopup')) { | 
						|
					authChoicePopup.close(); | 
						|
				} | 
						|
 | 
						|
				var url = this.href; | 
						|
				var popupOptions = options.popup; | 
						|
 | 
						|
				var localPopupWidth = this.getAttribute('data-popup-width'); | 
						|
				if (localPopupWidth) { | 
						|
					popupOptions.width = localPopupWidth; | 
						|
				} | 
						|
				var localPopupHeight = this.getAttribute('data-popup-height'); | 
						|
				if (localPopupWidth) { | 
						|
					popupOptions.height = localPopupHeight; | 
						|
				} | 
						|
 | 
						|
				popupOptions.left = (window.screen.width - options.popup.width) / 2; | 
						|
				popupOptions.top = (window.screen.height - options.popup.height) / 2; | 
						|
 | 
						|
				var popupFeatureParts = []; | 
						|
				for (var propName in popupOptions) { | 
						|
					popupFeatureParts.push(propName + '=' + popupOptions[propName]); | 
						|
				} | 
						|
				var popupFeature = popupFeatureParts.join(','); | 
						|
 | 
						|
				authChoicePopup = window.open(url, 'yii_auth_choice', popupFeature); | 
						|
				authChoicePopup.focus(); | 
						|
 | 
						|
				$container.data('authChoicePopup', authChoicePopup); | 
						|
			}); | 
						|
		}); | 
						|
	}; | 
						|
});
 | 
						|
 |