mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-04-19 06:11:02 +00:00
7 lines
116 B
JavaScript
7 lines
116 B
JavaScript
|
|
function $HttpBackendProvider() {
|
||
|
|
this.$get = ['$browser', function($browser) {
|
||
|
|
return $browser.xhr;
|
||
|
|
}];
|
||
|
|
}
|
||
|
|
|