Skip to content

Releases: muzammilkm/jq-router

Version 4.6.1

02 Mar 15:57
Compare
Choose a tag to compare

bug fix in dynamic template not rendering.

Version 4.6.0

02 Mar 09:56
Compare
Choose a tag to compare

Added ability for template url construction with route params(dynamic template url based on params)

routes['userDetail'] = {
     url: '#/users/:userId',
     templateUrl: 'users.php?userId=:userId',
};

Version 4.5.1

26 Jan 08:06
Compare
Choose a tag to compare

Bug fix href is not able generate url

Version 4.5.0

19 Jan 15:21
Compare
Choose a tag to compare

Added ability to control the caching of template url, allowing template url set to server side pages

Version 4.3.0

12 Nov 11:05
Compare
Choose a tag to compare

Bug fixes to resolve multiple nested routes

Version 4.0.0

10 Nov 15:10
Compare
Choose a tag to compare

Added two new events
Added resolve property to route for defer the execution of the route.
Once the resolve is resolved then route is rendered.

resolve can be a single deferred function or array of deferred functions

   routes['home'] = {
        url: '#/',
        abstract: true,
        resolve: [],  // can be object or array
        templateUrl: 
        controller: ''
   };

Version 3.5.0

07 May 04:36
Compare
Choose a tag to compare

Extending route object to retain route data

Version 3.3.0

02 Nov 09:39
Compare
Choose a tag to compare

Introduce param service to passing params with routes

Version 3.1.0

20 Oct 11:02
Compare
Choose a tag to compare

Added trailing slash to url if the url is not file.

Version 3.0.0

20 Oct 03:46
Compare
Choose a tag to compare

Added view destroyed events
Enabled all events subscription.