Sha256: c8e7c2cdb074987cb22f8053e78e02bba4e5e3f77571eaf59154260b54af8520
Contents?: true
Size: 519 Bytes
Versions: 3
Compression:
Stored size: 519 Bytes
Contents
ready = -> $(document).on 'keydown', '.box.first h1 input', (e)-> if (e.keyCode == 13) setTimeout -> # Use `setTimeout`. Otherwise, the `text()` does not contain # the content of the input field. text = $('.box.first h1').text() $('.vertical_menu .active a').text(text) $('#breadcrumb li.last.crumb a').text(text) , 100 # $(document).on 'dblclick', '.box.first h1 input', (e)-> # e.stopPropagation() # does not work $(document).ready(ready)
Version data entries
3 entries across 3 versions & 1 rubygems