Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2 from blackbaud/http-module
Browse files Browse the repository at this point in the history
Added HTTP module
  • Loading branch information
Blackbaud-PaulCrowder authored Sep 2, 2016
2 parents 3d8a800 + fb42dcc commit a95f5b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"@angular/common": "2.0.0-rc.5",
"@angular/compiler": "2.0.0-rc.5",
"@angular/core": "2.0.0-rc.5",
"@angular/http": "2.0.0-rc.5",
"@angular/platform-browser": "2.0.0-rc.5",
"@angular/platform-browser-dynamic": "2.0.0-rc.5",
"@angular/router": "3.0.0-rc.1",
Expand Down
3 changes: 2 additions & 1 deletion sky-pages-module-loader/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ const getSource = (SKY_PAGES, source) => {
OpaqueToken
} from '@angular/core';
import { CommonModule } from '@angular/common';
import { HttpModule } from '@angular/http';
import { ActivatedRoute, RouterModule, Routes } from '@angular/router';
import { Subscription } from 'rxjs/Subscription';
import { SkyModule } from 'blackbaud-skyux2/dist/core';
Expand All @@ -202,7 +203,7 @@ const getSource = (SKY_PAGES, source) => {
@NgModule({
declarations: [ ${join(componentNames, ',')} ],
imports: [ CommonModule, SkyModule, routing ],
imports: [ CommonModule, HttpModule, SkyModule, routing ],
exports: [ ${join(componentNames, ',')} ],
providers: [
appRoutingProviders,
Expand Down
1 change: 1 addition & 0 deletions src/vendor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import '@angular/platform-browser';
import '@angular/platform-browser-dynamic';
import '@angular/core';
import '@angular/common';
import '@angular/http';
import '@angular/router';

// RxJS
Expand Down

0 comments on commit a95f5b9

Please sign in to comment.