mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 23:36:48 -06:00
Fix the path to JS
This commit is contained in:
parent
889050b71d
commit
ae0d8e89eb
@ -1,4 +1,4 @@
|
||||
define(['translate', 'alertify'], function (t, alertify) {
|
||||
define(['sources/translate', 'alertify'], function (t, alertify) {
|
||||
var clipboard = {
|
||||
copyTextToClipboard: function (text) {
|
||||
var textArea = document.createElement("textarea");
|
||||
|
@ -158,7 +158,7 @@
|
||||
},
|
||||
paths: {
|
||||
pgadmin: "{{ url_for('static', filename='js/pgadmin') }}",
|
||||
selection: "{{ url_for('static', filename='js/selection') }}",
|
||||
sources: "{{ url_for('static', filename='js') }}",
|
||||
'pgadmin.alertifyjs': "{{ url_for('static', filename='js/alertify.pgadmin.defaults') }}",
|
||||
"pgadmin.backgrid": "{{ url_for('static', filename='js/backgrid.pgadmin') }}",
|
||||
'pgadmin.backform': "{{ url_for('static', filename='js/backform.pgadmin') }}",
|
||||
|
@ -2,7 +2,7 @@ define(
|
||||
[
|
||||
'jquery', 'underscore', 'underscore.string', 'alertify', 'pgadmin',
|
||||
'backbone', 'backgrid', 'codemirror', 'pgadmin.misc.explain',
|
||||
'selection/clipboard',
|
||||
'sources/selection/clipboard',
|
||||
|
||||
'slickgrid', 'bootstrap', 'pgadmin.browser', 'wcdocker',
|
||||
'codemirror/mode/sql/sql', 'codemirror/addon/selection/mark-selection',
|
||||
|
Loading…
Reference in New Issue
Block a user