123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- (function () {
- 'use strict';
- angular
- .module('fehlerberichtApp', [
- 'ngAnimate',
- 'ngCookies',
- 'ngResource',
- 'ngRoute',
- 'ngSanitize',
- 'ngTouch'
- ])
- .directive('tabs', function () {
- return {
- restrict: 'A',
- transclude: true,
- scope: { style: "@tabs" },
- controller: [ "$scope", function ($scope) {
- $scope.panels = [];
- $scope.select = function (i) {
- angular.forEach($scope.panels, function (p) {
- p.selected = false;
- });
- $scope.panels[i].selected = true;
- };
- this.addPanel = function (panel) {
- if ($scope.panels.length === 0) {
- panel.selected = true;
- }
- $scope.panels.push(panel);
- };
- }],
- template: '<div class="tabbable">' +
- '<ul class="nav nav-{{style||\'tabs\'}}">' +
- '<li ng-repeat="panel in panels" ng-class="{active:panel.selected}">' +
- '<a href="" ng-click="select($index)">{{panel.title}}</a>' +
- '</li>' +
- '</ul>' +
- '<div class="tab-content" ng-transclude></div>' +
- '</div>',
- replace: true
- };
- })
- .directive('panel', function () {
- return {
- require: '^tabs',
- restrict: 'A',
- transclude: true,
- scope: { title: "@panel" },
- link: function (scope, element, attrs, tabsCtrl) {
- tabsCtrl.addPanel(scope);
- },
- template: '<div class="tab-panel" ng-show="selected" ng-transclude>' +
- '</div>',
- replace: true
- };
- })
- .directive('popover', function() {
- return {
- restrict: 'EA',
- link: function(scope, element, attrs){
- $(element).popover({
- html : true,
- content: function() {
- return scope.getCommentsInfo($(element).attr('data-popover'),$(element).attr('data-kunde'),$(element).attr('data-datum'));
- }
- });
- $(element).hover(function(){
- $(element).popover('show');
- }, function(){
- $(element).popover('hide');
- });
- }
- };
- })
- .config(function ($routeProvider) {
- $routeProvider
- .when('/overview/:customer/:date/:status', {
- templateUrl: 'views/overview.html',
- controller: 'OverviewCtrl'
- })
- .when('/tickets', {
- templateUrl: 'views/tickets.html',
- controller: 'TicketsCtrl'
- })
- .when('/calendar', {
- templateUrl: 'views/calendar.html',
- controller: 'CalendarCtrl'
- })
- .when('/customers', {
- templateUrl: 'views/customers.html',
- controller: 'CustomersCtrl'
- })
- .when('/stats/:customer', {
- templateUrl: 'views/stats.html',
- controller: 'StatsCtrl'
- })
- .when('/config/:customer/:date', {
- templateUrl: 'views/config.html',
- controller: 'ConfigCtrl'
- })
- .when('/config', {
- templateUrl: 'views/config.html',
- controller: 'ConfigCtrl'
- })
- .when('/changelog', {
- templateUrl: 'views/changelog.html',
- controller: 'ChangelogCtrl'
- })
- .otherwise({
- redirectTo: '/overview/all/today/errors'
- });
- });
- moment.locale('de', {
- calendar: {
- lastDay: "[Gestern]",
- lastWeek: "[letzten] dddd",
- nextDay: "[Morgen]",
- nextWeek: "dddd",
- sameDay: "[Heute]",
- sameElse: "L"
- }
- });
- })();
|