mounts: counting bug fixes, put pets & mounts in tabs

This commit is contained in:
Tyler Renelle
2013-11-10 11:47:33 -08:00
parent 085919c000
commit 284114c056
3 changed files with 51 additions and 17 deletions

View File

@@ -24,6 +24,7 @@ window.habitrpg = angular.module('habitrpg',
.when('/options/groups', '/options/groups/tavern')
.when('/options/groups/guilds', '/options/groups/guilds/public')
.when('/options/inventory', '/options/inventory/inventory')
.when('/options/inventory/stable', '/options/inventory/stable/pets')
// redirect states that don't match
.otherwise("/tasks");
@@ -139,6 +140,14 @@ window.habitrpg = angular.module('habitrpg',
url: '/stable',
templateUrl: "partials/options.inventory.stable.html"
})
.state('options.inventory.stable.pets', {
url: '/pets',
templateUrl: "partials/options.inventory.stable.pets.html"
})
.state('options.inventory.stable.mounts', {
url: '/mounts',
templateUrl: "partials/options.inventory.stable.mounts.html"
})
// Options > Settings
.state('options.settings', {