- Moved the config.js file into the root of the src and dist.

- prevented the config file from being minified.
 - offloaded the js minification to a dedicated uglify task, which accepts more options than the require-js wrapper does.
 - Addded the banner to the top of the minified files.
This commit is contained in:
Spencer Alger
2013-09-13 16:02:08 -07:00
parent 861d74ce0d
commit 6c07338782
121 changed files with 221 additions and 1081 deletions
+1
View File
@@ -4,6 +4,7 @@
require.config({
baseUrl: 'app',
paths: {
config: '../config',
settings: 'components/settings',
kbn: 'components/kbn',
+1 -1
View File
@@ -1,4 +1,4 @@
<div ng-controller='histogram' ng-init="init()" style="height:{{panel.height || row.height}}">
<div ng-controller='histogram' ng-init="init()" style="min-height:{{panel.height || row.height}}">
<style>
.histogram-legend {
display:inline-block;
View File