forked from Coded/SIPRP
				
			
			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.
		
		
		
		
		
			
		
			
				
					
					
						
							43 lines
						
					
					
						
							720 B
						
					
					
				
			
		
		
	
	
							43 lines
						
					
					
						
							720 B
						
					
					
				;(function($) {
 | 
						|
 | 
						|
	$.noty.layouts.bottomRight = {
 | 
						|
		name: 'bottomRight',
 | 
						|
		options: { // overrides options
 | 
						|
			
 | 
						|
		},
 | 
						|
		container: {
 | 
						|
			object: '<ul id="noty_bottomRight_layout_container" />',
 | 
						|
			selector: 'ul#noty_bottomRight_layout_container',
 | 
						|
			style: function() {
 | 
						|
				$(this).css({
 | 
						|
					bottom: 20,
 | 
						|
					right: 20,
 | 
						|
					position: 'fixed',
 | 
						|
					width: '310px',
 | 
						|
					height: 'auto',
 | 
						|
					margin: 0,
 | 
						|
					padding: 0,
 | 
						|
					listStyleType: 'none',
 | 
						|
					zIndex: 10000000
 | 
						|
				});
 | 
						|
 | 
						|
				if (window.innerWidth < 600) {
 | 
						|
					$(this).css({
 | 
						|
						right: 5
 | 
						|
					});
 | 
						|
				}
 | 
						|
			}
 | 
						|
		},
 | 
						|
		parent: {
 | 
						|
			object: '<li />',
 | 
						|
			selector: 'li',
 | 
						|
			css: {}
 | 
						|
		},
 | 
						|
		css: {
 | 
						|
			display: 'none',
 | 
						|
			width: '310px'
 | 
						|
		},
 | 
						|
		addClass: ''
 | 
						|
	};
 | 
						|
 | 
						|
})(jQuery); |