Method: Tkri::App#go
- Defined in:
- lib/tkri.rb
#go(topic = nil, newtab = false) ⇒ Object
Navigates to some topic. This method simply delegates to the current tab.
876 877 878 879 |
# File 'lib/tkri.rb', line 876 def go(topic=nil, newtab=false) @tabs.new_tab if newtab and not @tabs.current_tab.new? @tabs.current_tab.go topic end |