Sha256: 701a9246be3c220d70cf302a43c46f2ffa2d69282b266f4a1b2c9b9681043119
Contents?: true
Size: 612 Bytes
Versions: 26
Compression:
Stored size: 612 Bytes
Contents
window.show_search_bar = -> $('#searchbar').show() $('#searchbar > input').focus() $(document).ready -> $('#searchbar > input').change -> text = $('#searchbar > input')[0].value $('#searchbar').hide() $('#searchbar > input')[0].value = "" console.log "Searching #{text}" if window.find(text, 0, 0, 1) console.log "Found #{text}" anchor = window.getSelection().anchorNode anchor = anchor.parentNode unless anchor.nodeType == 1 anchor.focus() anchor.scrollIntoView() else alert("Cannot find #{text}") # $('#searchbar > input')[0].value = text
Version data entries
26 entries across 26 versions & 1 rubygems