This repository has been archived by the owner on May 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
9613b61
commit 428f147
Showing
11 changed files
with
60 additions
and
84 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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<div ng-controller="CollapseDemoCtrl"> | ||
<button class="btn" ng-click="isCollapsed = !isCollapsed">Toggle collapse</button> | ||
<button class="btn btn-default" ng-click="isCollapsed = !isCollapsed">Toggle collapse</button> | ||
<hr> | ||
<div collapse="isCollapsed"> | ||
<div class="well well-large">Some content</div> | ||
<div class="well well-lg">Some content</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,35 @@ | ||
<div ng-controller="PopoverDemoCtrl"> | ||
<div class="well"> | ||
<div> | ||
<h4>Dynamic</h4> | ||
<form role="form"> | ||
<div class="form-group"> | ||
<label>Dynamic Popover </label> | ||
<input type="text" ng-model="dynamicPopoverText" class="form-control"> | ||
</div> | ||
<div class="form-group"> | ||
<label>Dynamic Popover Popup Text</label> | ||
<input type="text" ng-model="dynamicPopover" class="form-control"> | ||
</div> | ||
<div class="form-group"> | ||
<label>Dynamic Popover Popup Title:</label> | ||
<input type="text" ng-model="dynamicPopoverTitle" class="form-control"> | ||
</div> | ||
<button popover="{{dynamicPopover}}" popover-title="{{dynamicPopoverTitle}}" class="btn btn-info">{{dynamicPopoverText}}</button> | ||
</form> | ||
<h4>Dynamic</h4> | ||
<div class="form-group"> | ||
<label>Popup Title:</label> | ||
<input type="text" ng-model="dynamicPopoverText" class="form-control"> | ||
</div> | ||
<div> | ||
<h4>Positional</h4> | ||
<button popover-placement="top" popover="On the Top!" class="btn btn-info">Top</button> | ||
<button popover-placement="left" popover="On the Left!" class="btn btn-info">Left</button> | ||
<button popover-placement="right" popover="On the Right!" class="btn btn-info">Right</button> | ||
<button popover-placement="bottom" popover="On the Bottom!" class="btn btn-info">Bottom</button> | ||
<div class="form-group"> | ||
<label>Popup Text:</label> | ||
<input type="text" ng-model="dynamicPopover" class="form-control"> | ||
</div> | ||
<div> | ||
<h4>Triggers</h4> | ||
<button popover="I appeared on mouse enter!" popover-trigger="mouseenter" class="btn btn-info">Mouseenter</button> | ||
<hr> | ||
<input type="text" value="Click me!" | ||
popover="I appeared on focus! Click away and I'll vanish..." | ||
popover-trigger="focus" class="form-control"> | ||
<div class="form-group"> | ||
<label>Popup Title:</label> | ||
<input type="text" ng-model="dynamicPopoverTitle" class="form-control"> | ||
</div> | ||
<div> | ||
<h4>Other</h4> | ||
<button Popover-animation="true" popover="I fade in and out!" class="btn btn-info">fading</button> | ||
<button popover="I have a title!" popover-title="The title." class="btn btn-info">title</button> | ||
</div> | ||
</div> | ||
<button popover="{{dynamicPopover}}" popover-title="{{dynamicPopoverTitle}}" class="btn btn-default">{{dynamicPopoverText}}</button> | ||
|
||
<hr /> | ||
<h4>Positional</h4> | ||
<button popover-placement="top" popover="On the Top!" class="btn btn-default">Top</button> | ||
<button popover-placement="left" popover="On the Left!" class="btn btn-default">Left</button> | ||
<button popover-placement="right" popover="On the Right!" class="btn btn-default">Right</button> | ||
<button popover-placement="bottom" popover="On the Bottom!" class="btn btn-default">Bottom</button> | ||
|
||
<hr /> | ||
<h4>Triggers</h4> | ||
<p> | ||
<button popover="I appeared on mouse enter!" popover-trigger="mouseenter" class="btn btn-default">Mouseenter</button> | ||
</p> | ||
<input type="text" value="Click me!" popover="I appeared on focus! Click away and I'll vanish..." popover-trigger="focus" class="form-control"> | ||
|
||
<hr /> | ||
<h4>Other</h4> | ||
<button Popover-animation="true" popover="I fade in and out!" class="btn btn-default">fading</button> | ||
<button popover="I have a title!" popover-title="The title." class="btn btn-default">title</button> | ||
</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