'use strict'; var layout = require('./layout.js'); var short = require('./short'); var shortDuplicate = require('./shortDuplicate'); var items = ['short']; var short = function() { }; define(['app'], function (app) { var directives = {}; directives.gps = function () { return { restrict: "E", replace: true, templateUrl: 'view/gps.html', link: function (scope, element, attrs, interfacePanel) { }, controller: function ($scope, $snapshot) { } }; }; directives.logo = function () { return { restrict: "E", replace: true, template: "test", link: function (scope, element, attrs, interfacePanel) { }, controller: function ($scope, $snapshot) { } }; }; app.directive(directives); }); //# sourceMappingURL=app.js.map