all files / src/components/header/controllers/ osHeader.ts

100% Statements 9/9
100% Branches 0/0
100% Functions 3/3
100% Lines 9/9
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15           
"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;