Icons, Splashscreen und Pokemonlst

This commit is contained in:
Carsten Hilmer
2016-08-26 01:22:24 +02:00
parent 60f1e835df
commit 6a0a74191e
35 changed files with 525 additions and 496 deletions

View File

@@ -22,8 +22,8 @@ window.globalVariable = {
wordpressColor: "#0087BE"
},// End custom color style variable
startPage: {
url: "/app/contractlist",//Url of start page.
state: "app.contractlist"//State name of start page.
url: "/app/pokemonlist",//Url of start page.
state: "app.pokemonlist"//State name of start page.
},
message: {
errorMessage: "Technical error please try again later." //Default error message.
@@ -265,7 +265,7 @@ angular.module('starter', ['ionic','ngIOS9UIWebViewPatch','starter.controllers',
.icon('mail', 'img/icons/mail.svg')
.icon('message', 'img/icons/message.svg')
.icon('share-arrow', 'img/icons/share-arrow.svg')
.icon('pokemenu', 'img/icons/action.svg',64)
.icon('pokemenu', 'img/icons/action.svg',24)
.icon('more', 'img/icons/more_vert.svg');
//mdThemingProvider use for change theme color of Ionic Material Design Application.
@@ -339,39 +339,39 @@ angular.module('starter', ['ionic','ngIOS9UIWebViewPatch','starter.controllers',
}
}
})
.state('app.contractlist', {
url: "/contractlist",
.state('app.pokemonlist', {
url: "/pokemonlist",
cache: false,
params:{
isAnimated:(ionic.Platform.isAndroid()==false)
},
views: {
'menuContent': {
templateUrl: "templates/application-storage/sqLite/html/contract-list.html",
controller: 'contractListCtrl'
templateUrl: "templates/pokemonliste/html/pokemon-list.html",
controller: 'pokemonListCtrl'
}
}
})
.state('app.contractdetail', {
url: "/contractdetail",
.state('app.pokemondetail', {
url: "/pokemondetail",
params: {
contractdetail: null,
actionDelete: false
},
views: {
'menuContent': {
templateUrl: "templates/application-storage/sqLite/html/contract-detail.html",
controller: 'contractDetailCtrl'
templateUrl: "templates/pokemonliste/html/pokemon-detail.html",
controller: 'pokemonDetailCtrl'
}
}
})
.state('app.contractsetting', {
url: "/contractsetting",
.state('app.pokemonsetting', {
url: "/pokemontsetting",
cache: false,
views: {
'menuContent': {
templateUrl: "templates/application-storage/sqLite/html/contract-setting.html",
controller: 'contractSettingCtrl'
templateUrl: "templates/pokemonliste/html/pokemon-setting.html",
controller: 'pokemonSettingCtrl'
}
}
})