diff --git a/static/js/app/views/widgets/searchView.coffee b/static/js/app/views/widgets/searchView.coffee index 73f66fa..d2255fa 100644 --- a/static/js/app/views/widgets/searchView.coffee +++ b/static/js/app/views/widgets/searchView.coffee @@ -1,6 +1,6 @@ define ['jquery', 'underscore', 'marionette', 'vent', 'text!/tpl/SearchView', 'text!/tpl/SearchResultView', - 'libs/bootstrap/bootstrap-typeahead'], + 'typeahead'], ($, _, Marionette, vent, Template, SearchResultView) -> class SearchView extends Marionette.CompositeView template: _.template(Template) diff --git a/static/js/app/views/widgets/searchView.js b/static/js/app/views/widgets/searchView.js index 1470d7a..1cc1183 100644 --- a/static/js/app/views/widgets/searchView.js +++ b/static/js/app/views/widgets/searchView.js @@ -3,7 +3,7 @@ var __hasProp = {}.hasOwnProperty, __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; - define(['jquery', 'underscore', 'marionette', 'vent', 'text!/tpl/SearchView', 'text!/tpl/SearchResultView', 'libs/bootstrap/bootstrap-typeahead'], function($, _, Marionette, vent, Template, SearchResultView) { + define(['jquery', 'underscore', 'marionette', 'vent', 'text!/tpl/SearchView', 'text!/tpl/SearchResultView', 'typeahead'], function($, _, Marionette, vent, Template, SearchResultView) { var SearchView, _ref; SearchView = (function(_super) {