Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 388 Bytes

uiHistoryProvider.md

File metadata and controls

12 lines (10 loc) · 388 Bytes

uiHistoryProvider

Angular provider for angular-ui-history.

To set univeral component defaults use the uiHistoryProvider.defaults object:

app.config(function(uiHistoryProvider) {
	// Sets the default onError value
	uiHistoryProvider.defaults.onError = err => console.log('ERROR', err);
});