Skip to content

Commit

Permalink
Merged and grunted angular-ui#1915
Browse files Browse the repository at this point in the history
  • Loading branch information
tedeh committed May 4, 2015
1 parent 1b6a1dc commit 9ccc738
Show file tree
Hide file tree
Showing 9 changed files with 8,325 additions and 160 deletions.
31 changes: 31 additions & 0 deletions .bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"author": {
"name": "https://github.com/angular-ui/bootstrap/graphs/contributors"
},
"name": "angular-bootstrap",
"keywords": [
"angular",
"angular-ui",
"bootstrap"
],
"license": "MIT",
"ignore": [],
"description": "Native AngularJS (Angular) directives for Bootstrap.",
"version": "0.12.1",
"main": [
"./ui-bootstrap-tpls.js"
],
"dependencies": {
"angular": ">=1 <1.3.0"
},
"homepage": "https://github.com/angular-ui/bootstrap-bower",
"_release": "0.12.1",
"_resolution": {
"type": "version",
"tag": "0.12.1",
"commit": "ab14fbaaf3d592f8e76018f0666c5af6f68ebaa3"
},
"_source": "git://github.com/angular-ui/bootstrap-bower.git",
"_target": "0.12.1",
"_originalSource": "angular-bootstrap"
}
19 changes: 19 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"author": {
"name": "https://github.com/angular-ui/bootstrap/graphs/contributors"
},
"name": "angular-bootstrap",
"keywords": [
"angular",
"angular-ui",
"bootstrap"
],
"license": "MIT",
"ignore": [],
"description": "Native AngularJS (Angular) directives for Bootstrap.",
"version": "0.12.1",
"main": ["./ui-bootstrap-tpls.js"],
"dependencies": {
"angular": ">=1 <1.3.0"
}
}
4 changes: 2 additions & 2 deletions dist/assets/app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
angular.module('bootstrapDemoApp', ['ui.bootstrap', 'plunker', 'ngTouch'], function($httpProvider){
angular.module('ui.bootstrap.demo', ['ui.bootstrap', 'plunker', 'ngTouch'], function($httpProvider){
FastClick.attach(document.body);
delete $httpProvider.defaults.headers.common['X-Requested-With'];
}).run(['$location', function($location){
Expand Down Expand Up @@ -89,4 +89,4 @@ var DownloadCtrl = function($scope, $modalInstance) {
$scope.cancel = function () {
$modalInstance.dismiss();
};
}
};
8 changes: 4 additions & 4 deletions dist/assets/plunker.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ angular.module('plunker', [])

var indexContent = function (content, version) {
return '<!doctype html>\n' +
'<html ng-app="plunker">\n' +
'<html ng-app="ui.bootstrap.demo">\n' +
' <head>\n' +
' <script src="http://ajax.googleapis.com/ajax/libs/angularjs/'+ngVersion+'/angular.js"></script>\n' +
' <script src="http://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-'+version+'.js"></script>\n' +
' <script src="//ajax.googleapis.com/ajax/libs/angularjs/'+ngVersion+'/angular.js"></script>\n' +
' <script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-'+version+'.js"></script>\n' +
' <script src="example.js"></script>\n' +
' <link href="//netdna.bootstrapcdn.com/bootstrap/'+bsVersion+'/css/bootstrap.min.css" rel="stylesheet">\n' +
' </head>\n' +
Expand All @@ -27,7 +27,7 @@ angular.module('plunker', [])
};

var scriptContent = function(content) {
return "angular.module('plunker', ['ui.bootstrap']);" + "\n" + content;
return "angular.module('ui.bootstrap.demo', ['ui.bootstrap']);" + "\n" + content;
};

addField('description', 'http://angular-ui.github.io/bootstrap/');
Expand Down
350 changes: 196 additions & 154 deletions dist/index.html

Large diffs are not rendered by default.

Loading

0 comments on commit 9ccc738

Please sign in to comment.