-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
…div with an ng-transclude attribute
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
@@ -15,6 +15,13 @@ angular.module('mgcrea.ngStrap.alert').run(['$templateCache', function($template | |
|
||
}]); | ||
|
||
// Source: aside.tpl.js | ||
angular.module('mgcrea.ngStrap.aside').run(['$templateCache', function($templateCache) { | ||
|
||
$templateCache.put('aside/aside.tpl.html', '<div class="aside" tabindex="-1" role="dialog"><div class="aside-dialog"><div class="aside-content"><div class="aside-header" ng-show="title"><button type="button" class="close" ng-click="$hide()">×</button><h4 class="aside-title" ng-bind="title"></h4></div><div class="aside-body" ng-bind="content"></div><div class="aside-footer"><button type="button" class="btn btn-default" ng-click="$hide()">Close</button></div></div></div></div>'); | ||
|
||
}]); | ||
|
||
// Source: datepicker.tpl.js | ||
angular.module('mgcrea.ngStrap.datepicker').run(['$templateCache', function($templateCache) { | ||
|
||
|
@@ -29,17 +36,17 @@ angular.module('mgcrea.ngStrap.dropdown').run(['$templateCache', function($templ | |
|
||
}]); | ||
|
||
// Source: aside.tpl.js | ||
angular.module('mgcrea.ngStrap.aside').run(['$templateCache', function($templateCache) { | ||
// Source: modal.tpl.js | ||
angular.module('mgcrea.ngStrap.modal').run(['$templateCache', function($templateCache) { | ||
|
||
$templateCache.put('aside/aside.tpl.html', '<div class="aside" tabindex="-1" role="dialog"><div class="aside-dialog"><div class="aside-content"><div class="aside-header" ng-show="title"><button type="button" class="close" ng-click="$hide()">×</button><h4 class="aside-title" ng-bind="title"></h4></div><div class="aside-body" ng-bind="content"></div><div class="aside-footer"><button type="button" class="btn btn-default" ng-click="$hide()">Close</button></div></div></div></div>'); | ||
$templateCache.put('modal/modal.tpl.html', '<div class="modal" tabindex="-1" role="dialog"><div class="modal-dialog"><div class="modal-content"><div class="modal-header" ng-show="title"><button type="button" class="close" ng-click="$hide()">×</button><h4 class="modal-title" ng-bind="title"></h4></div><div class="modal-body" ng-bind="content"></div><div class="modal-footer"><button type="button" class="btn btn-default" ng-click="$hide()">Close</button></div></div></div></div>'); | ||
|
||
}]); | ||
|
||
// Source: modal.tpl.js | ||
angular.module('mgcrea.ngStrap.modal').run(['$templateCache', function($templateCache) { | ||
// Source: popover.tpl.js | ||
angular.module('mgcrea.ngStrap.popover').run(['$templateCache', function($templateCache) { | ||
|
||
$templateCache.put('modal/modal.tpl.html', '<div class="modal" tabindex="-1" role="dialog"><div class="modal-dialog"><div class="modal-content"><div class="modal-header" ng-show="title"><button type="button" class="close" ng-click="$hide()">×</button><h4 class="modal-title" ng-bind="title"></h4></div><div class="modal-body" ng-bind="content"></div><div class="modal-footer"><button type="button" class="btn btn-default" ng-click="$hide()">Close</button></div></div></div></div>'); | ||
$templateCache.put('popover/popover.tpl.html', '<div class="popover"><div class="arrow"></div><h3 class="popover-title" ng-bind="title" ng-show="title"></h3><div class="popover-content" ng-bind="content"></div></div>'); | ||
|
||
}]); | ||
|
||
|
@@ -64,10 +71,10 @@ angular.module('mgcrea.ngStrap.tab').run(['$templateCache', function($templateCa | |
|
||
}]); | ||
|
||
// Source: popover.tpl.js | ||
angular.module('mgcrea.ngStrap.popover').run(['$templateCache', function($templateCache) { | ||
// Source: timepicker.tpl.js | ||
angular.module('mgcrea.ngStrap.timepicker').run(['$templateCache', function($templateCache) { | ||
|
||
$templateCache.put('popover/popover.tpl.html', '<div class="popover"><div class="arrow"></div><h3 class="popover-title" ng-bind="title" ng-show="title"></h3><div class="popover-content" ng-bind="content"></div></div>'); | ||
$templateCache.put('timepicker/timepicker.tpl.html', '<div class="dropdown-menu timepicker" style="min-width: 0px;width: auto"><table height="100%"><thead><tr class="text-center"><th><button tabindex="-1" type="button" class="btn btn-default pull-left" ng-click="$arrowAction(-1, 0)"><i class="{{ $iconUp }}"></i></button></th><th> </th><th><button tabindex="-1" type="button" class="btn btn-default pull-left" ng-click="$arrowAction(-1, 1)"><i class="{{ $iconUp }}"></i></button></th></tr></thead><tbody><tr ng-repeat="(i, row) in rows"><td class="text-center"><button tabindex="-1" style="width: 100%" type="button" class="btn btn-default" ng-class="{\'btn-primary\': row[0].selected}" ng-click="$select(row[0].date, 0)" ng-disabled="row[0].disabled"><span ng-class="{\'text-muted\': row[0].muted}" ng-bind="row[0].label"></span></button></td><td><span ng-bind="i == midIndex ? timeSeparator : \' \'"></span></td><td class="text-center"><button tabindex="-1" ng-if="row[1].date" style="width: 100%" type="button" class="btn btn-default" ng-class="{\'btn-primary\': row[1].selected}" ng-click="$select(row[1].date, 1)" ng-disabled="row[1].disabled"><span ng-class="{\'text-muted\': row[1].muted}" ng-bind="row[1].label"></span></button></td><td ng-if="showAM"> </td><td ng-if="showAM"><button tabindex="-1" ng-show="i == midIndex - !isAM * 1" style="width: 100%" type="button" ng-class="{\'btn-primary\': !!isAM}" class="btn btn-default" ng-click="$switchMeridian()" ng-disabled="el.disabled">AM</button> <button tabindex="-1" ng-show="i == midIndex + 1 - !isAM * 1" style="width: 100%" type="button" ng-class="{\'btn-primary\': !isAM}" class="btn btn-default" ng-click="$switchMeridian()" ng-disabled="el.disabled">PM</button></td></tr></tbody><tfoot><tr class="text-center"><th><button tabindex="-1" type="button" class="btn btn-default pull-left" ng-click="$arrowAction(1, 0)"><i class="{{ $iconDown }}"></i></button></th><th> </th><th><button tabindex="-1" type="button" class="btn btn-default pull-left" ng-click="$arrowAction(1, 1)"><i class="{{ $iconDown }}"></i></button></th></tr></tfoot></table></div>'); | ||
|
||
}]); | ||
|
||
|
@@ -78,13 +85,6 @@ angular.module('mgcrea.ngStrap.tooltip').run(['$templateCache', function($templa | |
|
||
}]); | ||
|
||
// Source: timepicker.tpl.js | ||
angular.module('mgcrea.ngStrap.timepicker').run(['$templateCache', function($templateCache) { | ||
|
||
$templateCache.put('timepicker/timepicker.tpl.html', '<div class="dropdown-menu timepicker" style="min-width: 0px;width: auto"><table height="100%"><thead><tr class="text-center"><th><button tabindex="-1" type="button" class="btn btn-default pull-left" ng-click="$arrowAction(-1, 0)"><i class="{{ $iconUp }}"></i></button></th><th> </th><th><button tabindex="-1" type="button" class="btn btn-default pull-left" ng-click="$arrowAction(-1, 1)"><i class="{{ $iconUp }}"></i></button></th></tr></thead><tbody><tr ng-repeat="(i, row) in rows"><td class="text-center"><button tabindex="-1" style="width: 100%" type="button" class="btn btn-default" ng-class="{\'btn-primary\': row[0].selected}" ng-click="$select(row[0].date, 0)" ng-disabled="row[0].disabled"><span ng-class="{\'text-muted\': row[0].muted}" ng-bind="row[0].label"></span></button></td><td><span ng-bind="i == midIndex ? timeSeparator : \' \'"></span></td><td class="text-center"><button tabindex="-1" ng-if="row[1].date" style="width: 100%" type="button" class="btn btn-default" ng-class="{\'btn-primary\': row[1].selected}" ng-click="$select(row[1].date, 1)" ng-disabled="row[1].disabled"><span ng-class="{\'text-muted\': row[1].muted}" ng-bind="row[1].label"></span></button></td><td ng-if="showAM"> </td><td ng-if="showAM"><button tabindex="-1" ng-show="i == midIndex - !isAM * 1" style="width: 100%" type="button" ng-class="{\'btn-primary\': !!isAM}" class="btn btn-default" ng-click="$switchMeridian()" ng-disabled="el.disabled">AM</button> <button tabindex="-1" ng-show="i == midIndex + 1 - !isAM * 1" style="width: 100%" type="button" ng-class="{\'btn-primary\': !isAM}" class="btn btn-default" ng-click="$switchMeridian()" ng-disabled="el.disabled">PM</button></td></tr></tbody><tfoot><tr class="text-center"><th><button tabindex="-1" type="button" class="btn btn-default pull-left" ng-click="$arrowAction(1, 0)"><i class="{{ $iconDown }}"></i></button></th><th> </th><th><button tabindex="-1" type="button" class="btn btn-default pull-left" ng-click="$arrowAction(1, 1)"><i class="{{ $iconDown }}"></i></button></th></tr></tfoot></table></div>'); | ||
|
||
}]); | ||
|
||
// Source: typeahead.tpl.js | ||
angular.module('mgcrea.ngStrap.typeahead').run(['$templateCache', function($templateCache) { | ||
|
||
|
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* angular-strap | ||
* @version v2.1.5 - 2014-12-30 | ||
* @version v2.1.5 - 2014-12-31 | ||
* @link http://mgcrea.github.io/angular-strap | ||
* @author Olivier Louvignes ([email protected]) | ||
* @license MIT License, http://www.opensource.org/licenses/MIT | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.