Move 3rd party client code into vendor/ directories for ease of maintenance.

This commit is contained in:
Sarah McAlear
2017-02-24 17:01:20 +00:00
committed by Dave Page
parent b19081421b
commit a0a31e55ae
396 changed files with 7398 additions and 3924 deletions

View File

@@ -130,7 +130,7 @@ class FileManagerModule(PgAdminModule):
def get_own_stylesheets(self):
return [
url_for('static', filename='css/jquery.dropzone/dropzone.css'),
url_for('static', filename='vendor/jquery.dropzone/dropzone.css'),
url_for('file_manager.static', filename='css/file_manager.css')
]

View File

@@ -1,6 +1,6 @@
<html>
<head>
<script type="text/javascript" src="{{ url_for('static', filename='js/jquery.dropzone/dropzone.js') }}"></script>
<script type="text/javascript" src="{{ url_for('static', filename='vendor/jquery.dropzone/dropzone.js') }}"></script>
<script type="text/javascript" src="{{ url_for('file_manager.index') }}utility.js"></script>
</head>
<body>
@@ -33,7 +33,7 @@
</div>
<div class="fileinfo">
<span class="activity">
<img src="{{ url_for('browser.static', filename='css/aciTree/image/load-root.gif') }}">
<img src="{{ url_for('browser.static', filename='vendor/aciTree/image/load-root.gif') }}">
</span>
<div class="file_listing"></div>
<div class="upload_file dropzone"></div>