mirror of
https://github.com/2ec0b4/kaamelott-soundboard.git
synced 2025-12-10 16:35:34 +00:00
16 lines
318 B
JavaScript
16 lines
318 B
JavaScript
define(
|
|
'views/search',
|
|
[
|
|
'marionette',
|
|
'hbs!templates/search'
|
|
],
|
|
function (Marionette, SoundSearchTemplate) {
|
|
"use strict";
|
|
|
|
var SoundSearchView = Marionette.LayoutView.extend({
|
|
template: SoundSearchTemplate
|
|
});
|
|
|
|
return SoundSearchView;
|
|
});
|