From f5f08191fb629e80854e83d69b9d03e254067738 Mon Sep 17 00:00:00 2001 From: Nathan Hannig <8210763+nathanhannig@users.noreply.github.com> Date: Thu, 17 Jan 2019 16:27:27 -0800 Subject: [PATCH] fix: remove duplicate angularjs guide as their is already an angular guide (#26365) --- guide/arabic/angularjs/index.md | 30 ------------ guide/chinese/angularjs/index.md | 47 ------------------- guide/english/angularjs/index.md | 72 ----------------------------- guide/portuguese/angularjs/index.md | 27 ----------- guide/russian/angularjs/index.md | 34 -------------- guide/spanish/angularjs/index.md | 29 ------------ 6 files changed, 239 deletions(-) delete mode 100644 guide/arabic/angularjs/index.md delete mode 100644 guide/chinese/angularjs/index.md delete mode 100644 guide/english/angularjs/index.md delete mode 100644 guide/portuguese/angularjs/index.md delete mode 100644 guide/russian/angularjs/index.md delete mode 100644 guide/spanish/angularjs/index.md diff --git a/guide/arabic/angularjs/index.md b/guide/arabic/angularjs/index.md deleted file mode 100644 index d30886db71..0000000000 --- a/guide/arabic/angularjs/index.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: AngularJS -localeTitle: AngularJS ---- -## AngularJS - -AngularJS (الإصدارات 1.x) هو إطار JavaScript مفتوح المصدر. AngularJS يمتد HTML لتطوير واجهة الأمامية الغنية والقوية. يقلل من الاستخدام المتكرر للشفرة HTML. يمكن تجنب هذا التكرار من خلال استخدام التوجيهات التي توفرها AngularJS التي توفرها الكثير من الوقت والجهد. - -**التثبيت** : - -الآلية: - -\`\` \`قذيفة npm تثبيت الزاوي - - `HTML: -` - -أتش تي أم أل - - `bower: -` - -الصدف باور تثبيت زاوية - - `HTML: -` - -أتش تي أم أل - -\`\` \` \ No newline at end of file diff --git a/guide/chinese/angularjs/index.md b/guide/chinese/angularjs/index.md deleted file mode 100644 index 6636b7d9cd..0000000000 --- a/guide/chinese/angularjs/index.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: AngularJS -localeTitle: AngularJS ---- -## AngularJS - - -AngularJS(版本1.x)是一个开源的前端JavaScript框架。 AngularJS扩展了HTML以开发丰富而强大的前端。 它减少了HTML代码的重复使用。通过使用AngularJS提供的保存指令可以避免这种重复 很多时间和精力。 - -**安装** : - -安装node.js - -安装完毕检查node.js的版本,运行如下代码: - -```shell -node --version -``` - -通过Node.js的npm命令安装最新版本的npm/bower - -```shell -npm install -g npm -npm install -g bower -``` -通过npm安装: - -```shell -npm install angular -``` -HTML: - -```html - -``` - -通过bower安装: - -```shell -bower install angular -``` -HTML: - -```html - -``` - diff --git a/guide/english/angularjs/index.md b/guide/english/angularjs/index.md deleted file mode 100644 index b763f6dd74..0000000000 --- a/guide/english/angularjs/index.md +++ /dev/null @@ -1,72 +0,0 @@ ---- -title: AngularJS ---- -## AngularJS - -[AngularJS](https://angularjs.org/) (versions 1.x) is an open source front-end JavaScript framework. AngularJS extends HTML to develop rich and powerful front-ends. -It reduces the repetitive use of HTML code. This repetition can be avoided by using the directives provided by AngularJS which saves -much time and effort. It is cross platform and used to develop Single Page Web Application (SPWA). AngularJS implements the MVC pattern to separate the logic , presentation and data components. It also uses dependency injection to make use of server-side services in client side applications. - -## AngularJS Expressions -- Expressions can be written inside double braces: `{{ expression }}` -- Expressions can also be written inside a directive: `ng-bind="expression"` -- AngularJS will resolve the expression, and return the result exactly where the expression is written -- Expressions are much like JavaScript expressions: They can contain literals, operators, and variables. - -Example: -```js -{{ 5 + 5 }} or {{ firstName + " " + lastName }} -``` - -Minimal example for usage of AngularJS in an HTML page: -```html - - -
- - - - -