This repository has been archived by the owner on Nov 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 541
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(minification): Moved templates into HTML files
Extracted templates from script files and moved them into separate HTML files so they can be easily edited and minified during build. References #27.
- Loading branch information
Showing
15 changed files
with
95 additions
and
81 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,5 +1,5 @@ | ||
{ | ||
"strict": true, | ||
"globalstrict": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"immed": true, | ||
|
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
Binary file not shown.
Binary file not shown.
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
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 |
---|---|---|
|
@@ -7,4 +7,4 @@ var KEYS = { | |
up: 38, | ||
down: 40, | ||
comma: 188 | ||
}; | ||
}; |
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,10 @@ | ||
<div class="autocomplete" ng-show="suggestionList.visible"> | ||
<ul class="suggestions"> | ||
<li class="suggestion" | ||
ng-repeat="item in suggestionList.items | limitTo:options.maxResultsToShow" | ||
ng-class="{selected: item == suggestionList.selected}" | ||
ng-click="addSuggestion()" | ||
ng-mouseenter="suggestionList.select($index)" | ||
ng-bind-html="highlight(item)"></li> | ||
</ul> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<div class="ngTagsInput" tabindex="-1" ng-class="options.customClass" transclude-append> | ||
<div class="tags" ng-class="{focused: hasFocus}"> | ||
<ul> | ||
<li ng-repeat="tag in tags" ng-class="getCssClass($index)"> | ||
<span>{{tag}}</span> | ||
<button type="button" ng-click="remove($index)">{{options.removeTagSymbol}}</button> | ||
</li> | ||
</ul> | ||
<input type="text" | ||
placeholder="{{options.placeholder}}" | ||
size="{{options.placeholder.length}}" | ||
maxlength="{{options.maxLength}}" | ||
tabindex="{{options.tabindex}}" | ||
ng-model="newTag" | ||
ng-change="newTagChange()"> | ||
</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
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