Method: TkHTML_File_Viewer#href_binding
- Defined in:
- sample/tkextlib/tkHTML/ss.rb
#href_binding(w, x, y) ⇒ Object
This binding fires when there is a click on a hyperlink
236 237 238 239 240 241 |
# File 'sample/tkextlib/tkHTML/ss.rb', line 236 def href_binding(w, x, y) lst = w.href(x, y) unless lst.empty? process_url(lst) end end |