| 
					
				 | 
			
			
				@@ -7,9 +7,27 @@ import 'font-awesome/css/font-awesome.css'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import 'jquery-ui/themes/base/all.css'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import 'jquery-ui/ui/widgets/autocomplete'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import 'bootstrap-notify/bootstrap-notify'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import 'animate.css/animate.css'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 $(document).ready(function() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     $(function() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         $('[data-toggle="tooltip"]').tooltip(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        $('[data-toggle="notify"]').each(function() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            $.notify({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                message: $(this).data('message') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            },{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                type: $(this).data('type'), 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                animate: { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    enter: 'animated fadeInRight', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    exit: 'animated fadeOutRight' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                delay: 4000, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                offset: { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    x: 15, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    y: 70 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 }) 
			 |