docs(aio): remove links to outdated live examples from the API documenation (#23966)

Closes #21525

PR Close #23966
This commit is contained in:
Brandon Roberts
2018-05-17 11:23:55 -05:00
committed by Miško Hevery
parent 9a9a7de9a4
commit 0834710c18
10 changed files with 31 additions and 31 deletions

View File

@ -26,7 +26,7 @@ import {ResponseOptionsArgs} from './interfaces';
* This class may be used in tests to build {@link Response Responses} for
* mock responses (see {@link MockBackend}).
*
* ### Example ([live demo](http://plnkr.co/edit/P9Jkk8e8cz6NVzbcxEsD?p=preview))
* ### Example
*
* ```typescript
* import {ResponseOptions, Response} from '@angular/http';
@ -84,7 +84,7 @@ export class ResponseOptions {
* This may be useful when sharing a base `ResponseOptions` object inside tests,
* where certain properties may change from test to test.
*
* ### Example ([live demo](http://plnkr.co/edit/1lXquqFfgduTFBWjNoRE?p=preview))
* ### Example
*
* ```typescript
* import {ResponseOptions, Response} from '@angular/http';
@ -123,7 +123,7 @@ export class ResponseOptions {
* when configuring an {@link Injector}, in order to override the default options
* used by {@link Http} to create {@link Response Responses}.
*
* ### Example ([live demo](http://plnkr.co/edit/qv8DLT?p=preview))
* ### Example
*
* ```typescript
* import {provide} from '@angular/core';
@ -142,7 +142,7 @@ export class ResponseOptions {
* The options could also be extended when manually creating a {@link Response}
* object.
*
* ### Example ([live demo](http://plnkr.co/edit/VngosOWiaExEtbstDoix?p=preview))
* ### Example
*
* ```
* import {BaseResponseOptions, Response} from '@angular/http';