-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
# akala-client | ||
|
||
Akala client framework aims to provide the same set of feature that angualarjs 1 is able to provide. Leveraging [akala-core](//github.com/npenin/akala-core), it provides : | ||
Akala client framework aims to provide the same feature set that angualar is able to provide. Leveraging [akala-core](//github.com/npenin/akala-core), it provides : | ||
|
||
- scope | ||
- controls | ||
- services | ||
- formatters (angular-like pipes) | ||
|
||
|
||
# Controls | ||
## Controls | ||
|
||
| Name | Description | | ||
| --- | --- | | ||
| click | binds a function to a click event | | ||
| value | binds a scope property (path) to an input | | ||
| each | loops over a source and duplicate the binding on which it is defined | | ||
| part | provides an advanced way of including and/or defining placeholders for inclusion | | ||
| class | binds classes on properties of the scope | | ||
| klass | binds classes on properties of the scope | | ||
| text | binds the inner text on properties of the scope | | ||
|
||
# Services | ||
## Services | ||
|
||
| Name | Description | | ||
| --- | --- | | ||
| $http | provides an easy way to do http requests | | ||
| $template | service allowing the template feature | | ||
| $part | service for the part control. Can be used to create controls with templates | | ||
| $outlet | service for the part control. Can be used to create controls with templates | | ||
| $router | service that binds on the location service and run the code of the most appropriate route. The routing is provided using a browserified version of [expressjs](https://expressjs.com) | | ||
| $location | service binding on location changes | | ||
|
||
|