From d5e959a7c301376ce8fda42ca9cc23211aa10d66 Mon Sep 17 00:00:00 2001 From: Aftab Ansari Date: Sun, 7 May 2017 00:21:49 +0530 Subject: [PATCH] It should be W3School not CodeSchool (#3291) * It should be W3School not CodeSchool * Update angular.md * Update angular.md --- aspnetcore/client-side/angular.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/client-side/angular.md b/aspnetcore/client-side/angular.md index 8f590034da..b737fd04a7 100644 --- a/aspnetcore/client-side/angular.md +++ b/aspnetcore/client-side/angular.md @@ -26,7 +26,7 @@ In this article, you will learn how to build a SPA-style ASP.NET application usi [AngularJS](http://angularjs.org/) is a modern JavaScript framework from Google commonly used to work with Single Page Applications (SPAs). AngularJS is open sourced under MIT license, and the development progress of AngularJS can be followed on [its GitHub repository](https://github.com/angular/angular.js). The library is called Angular because HTML uses angular-shaped brackets. -AngularJS is not a DOM manipulation library like jQuery, but it uses a subset of jQuery called jQLite. AngularJS is primarily based on declarative HTML attributes that you can add to your HTML tags. You can try AngularJS in your browser using the [Code School website](https://www.codeschool.com/courses/shaping-up-with-angular-js). +AngularJS is not a DOM manipulation library like jQuery, but it uses a subset of jQuery called jQLite. AngularJS is primarily based on declarative HTML attributes that you can add to your HTML tags. You can try AngularJS in your browser using the [Code School website](https://www.codeschool.com/courses/shaping-up-with-angular-js) or [W3Schools website](https://www.w3schools.com/angular/). This article focuses on AngularJS with some notes on where Angular is heading.