-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from rashidkpc/master
Refactor into isolate scope, add params object, add add/remove. Skeleton...
- Loading branch information
Showing
2 changed files
with
110 additions
and
65 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,14 +1,17 @@ | ||
<div ng-controller="dashboard"> | ||
<nav class="navbar navbar-default navbar-static-top"> | ||
<div class="navbar-brand"> | ||
{{dashboard.title}} | ||
</div> | ||
|
||
<ul class="nav navbar-nav pull-right"> | ||
<li> | ||
<a class="link" ng-click="serializeGrid()"><i class="fa fa-save"></i></a> | ||
</li> | ||
<li><a class="link" ng-click="gridControl.addWidget()"><i class="fa fa-plus"></i></a></li> | ||
<li><a class="link" ng-click="gridControl.serializeGrid()"><i class="fa fa-save"></i></a></li> | ||
</ul> | ||
</nav> | ||
|
||
<div class="container-default"> | ||
<ul dashboard-grid></ul> | ||
<ul dashboard-grid grid="dashboard.panels" control="gridControl"></ul> | ||
</div> | ||
|
||
</div> |
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