fixed external links opening in different window
This commit is contained in:
		
							parent
							
								
									bf1060d1eb
								
							
						
					
					
						commit
						8398c9f829
					
				| 
						 | 
				
			
			@ -73,7 +73,7 @@ class FrontController < ApplicationController
 | 
			
		|||
    res << " active" if (current_page.id.eql?(page.id) || current_page.descendant_of?(page))
 | 
			
		||||
    res << "'>"
 | 
			
		||||
    root = "/"
 | 
			
		||||
    res << "<a href='#{(page.class.to_s.eql?('Page') ? root + page.path : page.url)}'><span>#{page.title}</span></a>"
 | 
			
		||||
    res << "<a href='#{(page.class.to_s.eql?('Page') ? root + page.path : page.url)}' target=#{(page.class.to_s.eql?('Page') ? '_self' : '_blank')} ><span>#{page.title}</span></a>"
 | 
			
		||||
    if page.visible_children.size > 0 && current < menu.levels
 | 
			
		||||
      res << "<span class='dot'></span>"
 | 
			
		||||
      res << menu_level(page, current_page, current + 1, menu)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue