style($http): make jscs happy

This commit is contained in:
Caitlin Potter
2014-11-21 00:26:00 -05:00
parent bd9e894fb7
commit 7044e55feb
+3 -3
View File
@@ -319,8 +319,8 @@ function $HttpProvider() {
*
* To explicitly remove a header automatically added via $httpProvider.defaults.headers on a per request basis,
* Use the `headers` property, setting the desired header to `undefined`. For example:
*
* ```
*
* ```js
* var req = {
* method: 'POST',
* url: 'http://example.com',
@@ -329,7 +329,7 @@ function $HttpProvider() {
* },
* data: { test: 'test' },
* }
*
*
* $http(req).success(function(){...}).error(function(){...});
* ```
*