Skip to content
This repository has been archived by the owner on May 1, 2023. It is now read-only.

Commit

Permalink
feat(material): remove material dep
Browse files Browse the repository at this point in the history
All UI is based on tachyons css.
This step is important to migrate smoothly to Angular.
  • Loading branch information
albertosantini committed Mar 15, 2017
1 parent 11bd569 commit fc0a8b0
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Eventually point your web brower to `http://localhost:8000`.
$ argo-trading-standalone
```

Tested locally with Node.js 7.x, AngularJS 1.6.x and Material 1.x.
Tested locally with Node.js 7.x, AngularJS 1.6.x.

## [Basic features](docs/views)

Expand Down
1 change: 0 additions & 1 deletion build/app.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ appConfig.$inject = ["$httpProvider", "$locationProvider"];

const app = angular$1
.module("common.app", [
"ngMaterial",
"simple-modal"
])
.component("app", appComponent)
Expand Down
3 changes: 1 addition & 2 deletions docs/dev/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Argo is an HTML5 interface for the OANDA trading platform.
The source code is located in the `src` folder.

The backend is based on [Node.js][].
The frontend is based on [AngularJS][] and [Material Design][].
The frontend is based on [AngularJS][].

The frontend follows [Papa's AngularJS style guide][].

Expand All @@ -21,7 +21,6 @@ The other folders contain the implementation of each feature.

[Node.js]: http://nodejs.org/
[AngularJS]: https://angularjs.org/
[Material Design]: https://material.angularjs.org/
[Papa's AngularJS style guide]: https://github.com/johnpapa/angularjs-styleguide
[OANDA Rest APIs]: http://developer.oanda.com/rest-live/introduction/
[R]: http://www.r-project.org/
Expand Down
4 changes: 0 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,7 @@
"request": "~2.81.0",

"angular": "~1.6.3",
"angular-animate": "~1.6.3",
"angular-aria": "~1.6.3",
"angular-messages": "~1.6.3",
"angular-mocks": "~1.6.3",
"angular-material": "~1.1.3",
"d3": "~4.7.3",
"techan": "~0.8.0",
"tachyons": "~4.6.2"
Expand Down
1 change: 0 additions & 1 deletion src/client/app/common/app.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { appConfig } from "./app.config";

export const app = angular
.module("common.app", [
"ngMaterial",
"simple-modal"
])
.component("app", appComponent)
Expand Down
4 changes: 0 additions & 4 deletions src/client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Arimo:400,700">

<link rel="stylesheet" href="node_modules/angular-material/angular-material.min.css">
<link rel="stylesheet" href="node_modules/tachyons/css/tachyons.min.css">

<link rel="stylesheet" href="app/common/app.css">
Expand All @@ -23,9 +22,6 @@
<root></root>

<script src="node_modules/angular/angular.min.js"></script>
<script src="node_modules/angular-animate/angular-animate.min.js"></script>
<script src="node_modules/angular-aria/angular-aria.min.js"></script>
<script src="node_modules/angular-material/angular-material.min.js"></script>
<script src="build/simple-modal.js"></script>
<script src="node_modules/d3/build/d3.min.js"></script>
<script src="node_modules/techan/dist/techan.min.js"></script>
Expand Down

0 comments on commit fc0a8b0

Please sign in to comment.