-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
e6fbf02
commit 83b571a
Showing
9 changed files
with
44 additions
and
19 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,4 +1,4 @@ | ||
module avam{ | ||
'use strict'; | ||
angular.module("avam", ["avamUi"]); | ||
angular.module("avam", ["avamUI"]); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
body { | ||
font-family: "Open Sans", Arial, sans-serif; | ||
} | ||
|
||
.container-fluid { | ||
padding: 0; | ||
} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module avam.ui{ | ||
export interface IAvamUIModel{ | ||
isMenuVisible:boolean; | ||
isMenuVertical:boolean; | ||
isMenuLayoutToggleAllowed:boolean; | ||
} | ||
} |
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,15 +1,19 @@ | ||
/// <reference path="../typings/angularjs/angular.d.ts" /> | ||
|
||
module avam.ui{ | ||
class AvamUiDirective implements ng.IDirective{ | ||
|
||
|
||
|
||
|
||
class AvamUIDirective implements ng.IDirective{ | ||
|
||
static instance() : ng.IDirective{ | ||
return new AvamUiDirective; | ||
return new AvamUIDirective; | ||
} | ||
replace = true; | ||
transclude=false; | ||
transclude=true; | ||
scope = { | ||
}; | ||
template="<h1>Hi There</h1>"; | ||
templateUrl = './src/avamUI.template.html'; | ||
} | ||
angular.module("avamUi").directive("avamUi", AvamUiDirective.instance); | ||
angular.module("avamUI").directive("avamUi", AvamUIDirective.instance); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<div class="avam-ui"> | ||
<div class="row"> | ||
<div class="col-sm-6">Left</div> | ||
<div class="col-sm-6">Right</div> | ||
</div> | ||
</div> |