Skip to content

Commit

Permalink
Fix use min configuration not to depend on the bower_components direc…
Browse files Browse the repository at this point in the history
…tory in dist.
  • Loading branch information
arikfr committed Oct 28, 2013
1 parent 6cf580e commit 604a294
Show file tree
Hide file tree
Showing 7 changed files with 233 additions and 5 deletions.
2 changes: 1 addition & 1 deletion rd_ui/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ module.exports = function (grunt) {
'.htaccess',
'bower_components/**/*',
'images/{,*/}*.{gif,webp}',
'styles/fonts/*'
'fonts/*'
]
}, {
expand: true,
Expand Down
Binary file added rd_ui/app/fonts/glyphicons-halflings-regular.eot
Binary file not shown.
228 changes: 228 additions & 0 deletions rd_ui/app/fonts/glyphicons-halflings-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added rd_ui/app/fonts/glyphicons-halflings-regular.ttf
Binary file not shown.
Binary file added rd_ui/app/fonts/glyphicons-halflings-regular.woff
Binary file not shown.
5 changes: 2 additions & 3 deletions rd_ui/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">

<!-- build:css /styles/main.css -->
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="/bower_components/codemirror/lib/codemirror.css">
<link rel="stylesheet" href="/bower_components/gridster/dist/jquery.gridster.css">
<link rel="stylesheet" href="/bower_components/pivottable/examples/pivot.css">
<link rel="stylesheet" href="/bower_components/cornelius/src/cornelius.css">
<!-- build:css(.tmp) /styles/main.css -->
<link rel="stylesheet" href="/styles/redash.css">
<!-- endbuild -->
</head>
Expand Down Expand Up @@ -66,10 +66,9 @@
<div ng-view></div>

<script src="/bower_components/jquery/jquery.js"></script>
<script src="/bower_components/angular/angular.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>

<!-- build:js /scripts/plugins.js -->
<script src="/bower_components/angular/angular.js"></script>
<script src="/bower_components/jquery-ui/ui/jquery-ui.js"></script>
<script src="/bower_components/bootstrap/js/collapse.js"></script>
<script src="/bower_components/bootstrap/js/modal.js"></script>
Expand Down
3 changes: 2 additions & 1 deletion rd_ui/bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"angular-resource": "1.0.7",
"angular-growl": "~0.3.1",
"pivottable": "git@github.com:arikfr/pivottable.git#master",
"cornelius": "git@github.com:restorando/cornelius.git"
"cornelius": "git@github.com:restorando/cornelius.git",
"gridster": "~0.2.0"
},
"devDependencies": {
"angular-mocks": "~1.0.7",
Expand Down

0 comments on commit 604a294

Please sign in to comment.