ui-router-extras icon indicating copy to clipboard operation
ui-router-extras copied to clipboard

THIS PROJECT IS NO LONGER MAINTAINED -- Extras for UI-Router for AngularJS. Sticky States (a.k.a. parallel states), Deep State Redirect (for tab-like navigation), Future States (async state definitio...

Results 100 ui-router-extras issues
Sort by recently updated
recently updated
newest added

//module1.js ``` javascript define(['angularAMD', 'ng-sortable'], function() { var app = angular.module("module1", ['ui.router', 'ng-sortable']); app.config(['$stateProvider', function($stateProvider) { $stateProvider.state({ name: 'module1', url: '/module1', templateUrl: './sortable.html', controller: function ($scope) { } }); }...

It seems odd to me that futureStateProvider doesn't use the same logic as the $stateProvider. It is easily fixed by just using the full url to the state you are...

First of all I will like to thank you for such a wonderful add-on. I am however facing this issue I believe you can help me resolve. I have two...

question
stickystate

After $state.reload() has been called there's no more possibility to navigate back using $previousState.go(), since it stores the current state.

bug
previous

In IE the scroll position is not remembered when switching between views. Try this page in internet explorer (IE 11 and back): http://christopherthielen.github.io/ui-router-extras/example/sticky/index.html#/inv/store/1/products I can't see any mentions of this...

Hello, I'm using angular 1.4.8, ui-router 0.2.15 and ui router extras 0.1.0. I have the following states the navigation is correct, but and I'am not able to get sticky working....

Hi, I'm using browserify, and when I require ui-router-extras, the following error message is shown: ``` TypeError: angular.module is not a function ``` I have defined angular global ``` var...

When I reload my ui-router's state like this: ``` javascript $httpProvider.interceptors.push(function($rootScope, $q, $localStorage, $injector, $window, $timeout) { return { response: function(response) { return response; }, responseError: function(rejection) { if(rejection.status ===...

bug

I really appreciate your work and have been using your sticky states in one of my apps that has tabs. The issue I have is... 1. I have to put...