overview.js 809 B

123456789101112131415161718192021222324252627
  1. 'use strict';
  2. /**
  3. * @ngdoc function
  4. * @name kasseApp.controller:AboutCtrl
  5. * @description
  6. * # AboutCtrl
  7. * Controller of the kasseApp
  8. */
  9. angular.module('kasseApp')
  10. .controller('OverviewCtrl', function ($scope) {
  11. $scope.Produkte = [ "btn-primary", "btn-info", "btn-darkgreen", "btn-success", "btn-warning" ];
  12. $scope.Bestellungen = JSON.parse(window.localStorage.getItem("OffeneBestellungen"));
  13. $("body").keypress(function (event) {
  14. var key = event.which - 49;
  15. if (key >= 0 && key < $scope.Bestellungen.length) {
  16. $scope.removeItem(key);
  17. console.log(key);
  18. }
  19. });
  20. $scope.removeItem = function (index) {
  21. $scope.Bestellungen = $scope.Bestellungen.splice(index, 1);
  22. };
  23. });