earlymarket/CoPosition

View on GitHub
app/assets/javascripts/approvals/approvals-new.es6

Summary

Maintainability
Test Coverage
$(document).on('page:change', function() {
  let U = window.COPO.utility;
  if (U.currentPage('approvals', 'new') && typeof gon != "undefined") {
    (window.location.search.includes("User") ? U.setActivePage('friends') : U.setActivePage('apps'));
    $(".search .devs_typeahead").typeahead({
      hint: true,
      highlight: true,
      minLength: 1
    },
    {
      name: 'devs',
      source: U.substringMatcher(gon.devs)
    });
  }
})