-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Marco Poehler
committed
Aug 11, 2014
1 parent
6de424a
commit 8386c87
Showing
5 changed files
with
82 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
'use strict'; | ||
|
||
/* App Module */ | ||
|
||
var klpvAdminApp = angular.module('OptikerVerzeichnisApp', [ | ||
'ngRoute' | ||
]); | ||
|
||
|
||
|
||
|
||
klpvAdminApp.config(['$routeProvider', | ||
function($routeProvider) { | ||
$routeProvider. | ||
when('/optiker/:city/:name', { | ||
templateUrl: 'optiker.html', | ||
controller: 'OptikerDetailsCtrl' | ||
}). | ||
when('/', { | ||
templateUrl: 'homepage.html', | ||
controller: 'HonepageCtrl' | ||
}). | ||
otherwise({ | ||
redirectTo: '/' | ||
}); | ||
}]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"projectRootPath": "../", | ||
"targetPath": "../target/webapp-1.0", | ||
"sourceDirectory": "src", | ||
"jsSourceDirectory": "static", | ||
"filteredFiles": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters