Inside the Home page I have the tag. But my partial does not open inside the home but rather as another page.
var app = angular.module("app", ['ui.router', 'angularUtils.directives.dirPagination']);
app.config([$locationProvider, function ($stateProvider, $urlRouterProvider) {
$urlRouterProvider.when("", "/");
$stateProvider
.state("Empresas",
{url: "/Empresas",
templateUrl: $("#linkBase").attr("href") + 'templates/Empresa/empresas.html',
controller: 'EmpresaController' })
.state("Usuarios",
{ /Usuarios, templateUrl: $("#linkBase").attr("href") + 'templates/Usuario/usuarios.html',
controller: 'UsuarioController' })
}]);