| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1× 1× 9× 9× 1× 1× 1× 1× 1× | "use strict";
var OsHeader = (function () {
function OsHeader($element, $scope) {
this.$element = $element;
this.$scope = $scope;
}
OsHeader.prototype.openSearch = function () {
this.$scope.$broadcast('osHeader.openSearch');
};
OsHeader.$inject = ['$element', '$scope'];
return OsHeader;
}());
exports.OsHeader = OsHeader;
|