Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
reinstate patch of typeahead js to allow native keyup events to propa…
…gate
  • Loading branch information
payten committed Aug 23, 2012
1 parent 672f956 commit c95873f
Showing 1 changed file with 5 additions and 3 deletions.
Expand Up @@ -21,6 +21,7 @@
* Customisations for Archives Space include:
* - in render, store item as data on the dropdown option to support
* objects as items
* - allow native events to propagate on keyup
* ============================================================ */

!function($){
Expand Down Expand Up @@ -242,9 +243,10 @@
default:
this.lookup()
}

e.stopPropagation()
e.preventDefault()
// ArchivesSpace customisations: allow all native events to
// still propagate.
//e.stopPropagation()
//e.preventDefault()
}

, blur: function (e) {
Expand Down

0 comments on commit c95873f

Please sign in to comment.