mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-04-12 11:00:58 +00:00
This only extracts our 'hashchange' event and html5 history api detection from $browser. Closes #400
24 lines
736 B
JavaScript
24 lines
736 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @workInProgress
|
|
* @ngdoc service
|
|
* @name angular.service.$sniffer
|
|
* @requires $window
|
|
*
|
|
* @property {boolean} history Does the browser support html5 history api ?
|
|
* @property {boolean} hashchange Does the browser support hashchange event ?
|
|
*
|
|
* @description
|
|
* This is very simple implementation of testing browser's features.
|
|
*/
|
|
angularServiceInject('$sniffer', function($window) {
|
|
if ($window.Modernizr) return $window.Modernizr;
|
|
|
|
return {
|
|
history: !!($window.history && $window.history.pushState),
|
|
hashchange: 'onhashchange' in $window &&
|
|
// IE8 compatible mode lies
|
|
(!$window.document.documentMode || $window.document.documentMode > 7)
|
|
};
|
|
}, ['$window']);
|