Skip to content

Instantly share code, notes, and snippets.

@tbrd
Created February 12, 2014 13:45
Show Gist options
  • Save tbrd/8955818 to your computer and use it in GitHub Desktop.
Save tbrd/8955818 to your computer and use it in GitHub Desktop.
Including the search form component in the default page
define(function (require) {
'use strict';
/**
* Module dependencies
*/
var searchForm = require('component/search-form');
/**
* Module exports
*/
return initialize;
/**
* Module function
*/
function initialize() {
searchForm.attachTo('.js-search');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment