FEDX-118 Adding header to test page

This commit is contained in:
AlasdairSwan
2016-03-29 16:10:52 -04:00
committed by Andy Armstrong
parent 8baf58689a
commit a9971ef2ba
60 changed files with 465 additions and 2890 deletions

View File

@@ -0,0 +1,16 @@
;(function (define) {
'use strict';
define([
'edx-ui-toolkit/js/dropdown-menu/dropdown-menu-view'
],
function (DropdownMenuView) {
return function() {
var dropdownMenuView = new DropdownMenuView({
el: '.js-header-user-menu'
}).postRender();
return dropdownMenuView;
};
});
}).call(this, define || RequireJS.define);