diff --git a/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index-debug.html b/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index-debug.html index 6b0b4c4..eff8423 100644 --- a/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index-debug.html +++ b/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index-debug.html @@ -22,6 +22,6 @@

Component Router

- + \ No newline at end of file diff --git a/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index-jquery.html b/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index-jquery.html index 536ec2a..9492256 100644 --- a/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index-jquery.html +++ b/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index-jquery.html @@ -23,6 +23,6 @@

Component Router

- + \ No newline at end of file diff --git a/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index-production.html b/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index-production.html index 5599982..0caa0fe 100644 --- a/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index-production.html +++ b/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index-production.html @@ -22,6 +22,6 @@

Component Router

- + \ No newline at end of file diff --git a/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index.html b/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index.html index 0815bcf..fd93748 100644 --- a/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index.html +++ b/DailyPractice/widgetExample/angular-1.5.7/docs/examples/example-componentRouter/index.html @@ -22,6 +22,6 @@

Component Router

- + \ No newline at end of file diff --git a/DailyPractice/widgetExample/angular-1.5.7/docs/partials/api/ngComponentRouter.html b/DailyPractice/widgetExample/angular-1.5.7/docs/partials/api/ngComponentRouter.html index 7e84841..2747643 100644 --- a/DailyPractice/widgetExample/angular-1.5.7/docs/partials/api/ngComponentRouter.html +++ b/DailyPractice/widgetExample/angular-1.5.7/docs/partials/api/ngComponentRouter.html @@ -24,7 +24,7 @@

Installation

<!-- IE required polyfills, in this exact order -->
 <script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.33.3/es6-shim.min.js"></script>
 <script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script>
-<script src="https://npmcdn.com/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
+<script src="https://unpkg.com/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
 

Then load the module in your application by adding it as a dependent module:

angular.module('app', ['ngComponentRouter']);
diff --git a/DailyPractice/widgetExample/angular-1.5.7/docs/partials/guide/component-router.html b/DailyPractice/widgetExample/angular-1.5.7/docs/partials/guide/component-router.html
index f53a7df..2c3e3a6 100644
--- a/DailyPractice/widgetExample/angular-1.5.7/docs/partials/guide/component-router.html
+++ b/DailyPractice/widgetExample/angular-1.5.7/docs/partials/guide/component-router.html
@@ -138,7 +138,7 @@ 

Example Heroes App

name="index.html" language="html" type="html"> -
<h1 class="title">Component Router</h1>
<app></app>

<!-- Load up the router library - normally you might use npm and host it locally -->
<script src="https://npmcdn.com/@angular/router@0.2.0/angular1/angular_1_router.js"></script>
+
<h1 class="title">Component Router</h1>
<app></app>

<!-- Load up the router library - normally you might use npm and host it locally -->
<script src="https://unpkg.com/@angular/router@0.2.0/angular1/angular_1_router.js"></script>
Load the scripts
<!-- IE required polyfills, in this exact order -->
 <script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.33.3/es6-shim.min.js"></script>
 <script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script>
-<script src="https://npmcdn.com/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
+<script src="https://unpkg.com/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
 

Create the app module

In the app.js file, create the main application module app which depends on the ngComponentRouter