1.0.0 • Published 9 years ago

ngsilent v1.0.0

Weekly downloads
9
License
MIT
Repository
github
Last release
9 years ago

ngSilent

Adds silent mode to AngularJS.

How to use

  1. Add link to ngSilent.js file
  2. Connect the module

    var site = angular.module('site', 'module1', 'ngSilent', 'ngRoute');

IMPORTANT 'ngSilent' should be defined before 'ngRoute'.

 var site = angular.module('site', ['module1', 'ngRoute', 'ngSilent']);

This will not work.

  1. Add $ngSilentLocation wherever you want:
  function SomeController($ngSilentLocation)
 

and then

 $ngSilentLocation.silent('/new/path/');
 

URL will be changed but related controller is not called.