Fix UncompressableFileError for latest horizon code

When pulling the latest horizon code and update required packages,
then login it, it will raise UncompressableFileError because of the
incorrect smart-table.js path, the patch will fix it.

Change-Id: I4600ed1a290976b9ab1f5a4f4f5287392c018d30
Closes-Bug: 1409420
This commit is contained in:
jing.liuqing 2014-12-28 23:22:51 +08:00
parent f9d6f965aa
commit 12c37e3af0
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
<script src='{{ STATIC_URL }}horizon/lib/jquery/jquery-migrate.js' type='text/javascript' charset="utf-8"></script>
<script src="{{ STATIC_URL }}horizon/lib/angular/angular.js" type="text/javascript" charset="utf-8"></script>
<script src="{{ STATIC_URL }}horizon/lib/angular/angular-bootstrap.js" type="text/javascript" charset="utf-8"></script>
<script src="{{ STATIC_URL }}horizon/lib/smart-table/dist/smart-table.min.js" type="text/javascript" charset="utf-8"></script>
<script src="{{ STATIC_URL }}horizon/lib/smart-table/smart-table.js" type="text/javascript" charset="utf-8"></script>
<script src='{{ STATIC_URL }}horizon/js/horizon.js' type='text/javascript' charset='utf-8'></script>
{% endcompress %}