Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
feat(release): cut the v2.0.0-rc.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcrea committed Feb 10, 2014
1 parent 91f8183 commit 8831bf6
Show file tree
Hide file tree
Showing 82 changed files with 542 additions and 386 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-strap",
"description": "AngularStrap - AngularJS directives for Twitter Bootstrap",
"version": "2.0.0-rc.2",
"version": "2.0.0-rc.3",
"keywords": [
"angular",
"bootstrap"
Expand Down
296 changes: 187 additions & 109 deletions dist/angular-strap.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/angular-strap.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/angular-strap.min.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/angular-strap.tpl.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
/**
* angular-strap
* @version v2.0.0-rc.2 - 2014-01-29
* @version v2.0.0-rc.3 - 2014-02-10
* @link http://mgcrea.github.io/angular-strap
* @author [object Object]
* @author Olivier Louvignes ([email protected])
* @license MIT License, http://www.opensource.org/licenses/MIT
*/
(function(window, document, undefined) {
'use strict';
// Source: dist/modules/alert.tpl.js
angular.module('mgcrea.ngStrap.alert').run(['$templateCache', function($templateCache) {
$templateCache.put('alert/alert.tpl.html',
"<div class=\"alert\" tabindex=\"-1\" ng-class=\"[type ? 'alert-' + type : null]\"><button type=\"button\" class=\"close\" ng-click=\"$hide()\">&times;</button> <strong ng-bind=\"title\"></strong>&nbsp;<span ng-bind-html=\"content\"></span></div>"
"<div class=\"alert alert-dismissable\" tabindex=\"-1\" ng-class=\"[type ? 'alert-' + type : null]\"><button type=\"button\" class=\"close\" ng-click=\"$hide()\">&times;</button> <strong ng-bind=\"title\"></strong>&nbsp;<span ng-bind-html=\"content\"></span></div>"
);

}]);
Expand Down Expand Up @@ -50,7 +50,7 @@ $templateCache.put('modal/modal.tpl.html',
// Source: dist/modules/popover.tpl.js
angular.module('mgcrea.ngStrap.popover').run(['$templateCache', function($templateCache) {
$templateCache.put('popover/popover.tpl.html',
"<div class=\"popover\" ng-show=\"content\"><div class=\"arrow\"></div><h3 class=\"popover-title\" ng-bind=\"title\" ng-show=\"title\"></h3><div class=\"popover-content\" ng-bind=\"content\"></div></div>"
"<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>"
);

}]);
Expand Down Expand Up @@ -82,7 +82,7 @@ $templateCache.put('timepicker/timepicker.tpl.html',
// Source: dist/modules/tooltip.tpl.js
angular.module('mgcrea.ngStrap.tooltip').run(['$templateCache', function($templateCache) {
$templateCache.put('tooltip/tooltip.tpl.html',
"<div class=\"tooltip\" ng-show=\"title\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\" ng-bind=\"title\"></div></div>"
"<div class=\"tooltip in\" ng-show=\"title\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\" ng-bind=\"title\"></div></div>"
);

}]);
Expand Down
6 changes: 3 additions & 3 deletions dist/angular-strap.tpl.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/angular-strap.tpl.min.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8831bf6

Please sign in to comment.