Change extension from js to ts in imports
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
parent
57f0871c4b
commit
a4281a8d2b
2
js/src/codemirror/addon/lint/sql-lint.ts
vendored
2
js/src/codemirror/addon/lint/sql-lint.ts
vendored
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { CommonParams } from '../../../modules/common.js';
|
||||
import { CommonParams } from '../../../modules/common.ts';
|
||||
|
||||
window.CodeMirror.sqlLint = function (text, updateLinting, options, cm) {
|
||||
// Skipping check if text box is empty.
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { Console } from './modules/console.js';
|
||||
import { Console } from './modules/console.ts';
|
||||
|
||||
$(function () {
|
||||
Console.initialize();
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview events handling from central columns page
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { Navigation } from '../modules/navigation.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { Navigation } from '../modules/navigation.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.ts';
|
||||
|
||||
AJAX.registerTeardown('database/events.js', function () {
|
||||
$(document).off('click', 'a.ajax.add_anchor, a.ajax.edit_anchor');
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import { escapeBacktick } from '../modules/functions/escape.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import { escapeBacktick } from '../modules/functions/escape.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview function used in QBE for DB
|
||||
|
||||
@ -1,12 +1,12 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { Navigation } from '../modules/navigation.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.js';
|
||||
import { escapeHtml } from '../modules/functions/escape.js';
|
||||
import refreshMainContent from '../modules/functions/refreshMainContent.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { Navigation } from '../modules/navigation.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.ts';
|
||||
import { escapeHtml } from '../modules/functions/escape.ts';
|
||||
import refreshMainContent from '../modules/functions/refreshMainContent.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview function used in server privilege pages
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview function used in QBE for DB
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { escapeBacktick, escapeSingleQuote } from '../modules/functions/escape.js';
|
||||
import { escapeBacktick, escapeSingleQuote } from '../modules/functions/escape.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview function used in QBE for DB
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { Navigation } from '../modules/navigation.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { Navigation } from '../modules/navigation.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.ts';
|
||||
|
||||
AJAX.registerTeardown('database/routines.js', function () {
|
||||
$(document).off('click', 'a.ajax.add_anchor');
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import highlightSql from '../modules/sql-highlight.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import getImageTag from '../modules/functions/getImageTag.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import highlightSql from '../modules/sql-highlight.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import getImageTag from '../modules/functions/getImageTag.ts';
|
||||
|
||||
/**
|
||||
* JavaScript functions used on Database Search page
|
||||
|
||||
@ -1,12 +1,12 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { Navigation } from '../modules/navigation.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import tooltip from '../modules/tooltip.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.js';
|
||||
import { escapeHtml } from '../modules/functions/escape.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { Navigation } from '../modules/navigation.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import tooltip from '../modules/tooltip.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.ts';
|
||||
import { escapeHtml } from '../modules/functions/escape.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview functions used on the database structure page
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.ts';
|
||||
|
||||
/**
|
||||
* Unbind all event handlers before tearing down the page
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { Navigation } from '../modules/navigation.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { Navigation } from '../modules/navigation.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.ts';
|
||||
|
||||
AJAX.registerTeardown('database/triggers.js', function () {
|
||||
$(document).off('click', 'a.ajax.add_anchor, a.ajax.edit_anchor');
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
|
||||
var designerTables = [
|
||||
{
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import $ from 'jquery';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import getImageTag from '../modules/functions/getImageTag.js';
|
||||
import { DesignerConfig } from './config.js';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import getImageTag from '../modules/functions/getImageTag.ts';
|
||||
import { DesignerConfig } from './config.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview function used in this file builds history tab and generates query.
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { DesignerOfflineDB } from './database.js';
|
||||
import { DesignerHistory } from './history.js';
|
||||
import { DesignerMove } from './move.js';
|
||||
import { DesignerPage } from './page.js';
|
||||
import { DesignerConfig } from './config.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { DesignerOfflineDB } from './database.ts';
|
||||
import { DesignerHistory } from './history.ts';
|
||||
import { DesignerMove } from './move.ts';
|
||||
import { DesignerPage } from './page.ts';
|
||||
import { DesignerConfig } from './config.ts';
|
||||
|
||||
/**
|
||||
* Initializes the data required to run Designer, then fires it up.
|
||||
|
||||
@ -1,13 +1,13 @@
|
||||
import $ from 'jquery';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import refreshMainContent from '../modules/functions/refreshMainContent.js';
|
||||
import { Navigation } from '../modules/navigation.js';
|
||||
import { DesignerObjects } from './objects.js';
|
||||
import { DesignerHistory } from './history.js';
|
||||
import { DesignerPage } from './page.js';
|
||||
import { DesignerConfig } from './config.js';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import refreshMainContent from '../modules/functions/refreshMainContent.ts';
|
||||
import { Navigation } from '../modules/navigation.ts';
|
||||
import { DesignerObjects } from './objects.ts';
|
||||
import { DesignerHistory } from './history.ts';
|
||||
import { DesignerPage } from './page.ts';
|
||||
import { DesignerConfig } from './config.ts';
|
||||
|
||||
/* global themeImagePath */ // templates/javascript/variables.twig
|
||||
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
import $ from 'jquery';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import { escapeHtml } from '../modules/functions/escape.js';
|
||||
import { DesignerConfig } from './config.js';
|
||||
import { DesignerOfflineDB } from './database.js';
|
||||
import { DesignerMove } from './move.js';
|
||||
import { DesignerObjects } from './objects.js';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import { escapeHtml } from '../modules/functions/escape.ts';
|
||||
import { DesignerConfig } from './config.ts';
|
||||
import { DesignerOfflineDB } from './database.ts';
|
||||
import { DesignerMove } from './move.ts';
|
||||
import { DesignerObjects } from './objects.ts';
|
||||
|
||||
var DesignerPage = {};
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { CommonParams } from './modules/common.js';
|
||||
import { escapeHtml } from './modules/functions/escape.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { CommonParams } from './modules/common.ts';
|
||||
import { escapeHtml } from './modules/functions/escape.ts';
|
||||
|
||||
/* This script handles PMA Drag Drop Import, loaded only when configuration is enabled.*/
|
||||
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { CommonParams } from './modules/common.js';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.js';
|
||||
import getImageTag from './modules/functions/getImageTag.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { CommonParams } from './modules/common.ts';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.ts';
|
||||
import getImageTag from './modules/functions/getImageTag.ts';
|
||||
|
||||
/**
|
||||
* general function, usually for data manipulation pages
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { Functions } from './modules/functions.js';
|
||||
import { CommonParams } from './modules/common.js';
|
||||
import highlightSql from './modules/sql-highlight.js';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { Functions } from './modules/functions.ts';
|
||||
import { CommonParams } from './modules/common.ts';
|
||||
import highlightSql from './modules/sql-highlight.ts';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.ts';
|
||||
|
||||
/**
|
||||
* Functions used in the export tab
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
|
||||
AJAX.registerOnload('export_output.js', function () {
|
||||
$(document).on('keydown', function (e) {
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { CommonParams } from './modules/common.js';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { CommonParams } from './modules/common.ts';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview functions used in GIS data editor
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { showGitVersion } from './modules/git-info.js';
|
||||
import { ThemesManager } from './modules/themes-manager.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { showGitVersion } from './modules/git-info.ts';
|
||||
import { ThemesManager } from './modules/themes-manager.ts';
|
||||
|
||||
AJAX.registerTeardown('home.js', () => {
|
||||
const themesModal = document.getElementById('themesModal');
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { Functions } from './modules/functions.js';
|
||||
import { Navigation } from './modules/navigation.js';
|
||||
import { CommonParams } from './modules/common.js';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { Functions } from './modules/functions.ts';
|
||||
import { Navigation } from './modules/navigation.ts';
|
||||
import { CommonParams } from './modules/common.ts';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.ts';
|
||||
|
||||
/* global themeImagePath */ // templates/javascript/variables.twig
|
||||
|
||||
|
||||
@ -1,14 +1,14 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { Functions } from './modules/functions.js';
|
||||
import { KeyHandlerEvents } from './modules/keyhandler.js';
|
||||
import { PageSettings } from './modules/page_settings.js';
|
||||
import { crossFramingProtection } from './modules/cross_framing_protection.js';
|
||||
import { Indexes } from './modules/indexes.js';
|
||||
import { Config } from './modules/config.js';
|
||||
import checkNumberOfFields from './modules/functions/checkNumberOfFields.js';
|
||||
import onloadNavigation from './modules/navigation/event-loader.js';
|
||||
import { onloadFunctions, teardownFunctions } from './modules/functions/event-loader.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { Functions } from './modules/functions.ts';
|
||||
import { KeyHandlerEvents } from './modules/keyhandler.ts';
|
||||
import { PageSettings } from './modules/page_settings.ts';
|
||||
import { crossFramingProtection } from './modules/cross_framing_protection.ts';
|
||||
import { Indexes } from './modules/indexes.ts';
|
||||
import { Config } from './modules/config.ts';
|
||||
import checkNumberOfFields from './modules/functions/checkNumberOfFields.ts';
|
||||
import onloadNavigation from './modules/navigation/event-loader.ts';
|
||||
import { onloadFunctions, teardownFunctions } from './modules/functions/event-loader.ts';
|
||||
|
||||
AJAX.registerOnload('main.js', () => AJAX.removeSubmitEvents());
|
||||
$(AJAX.loadEventHandler());
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { Functions } from './modules/functions.js';
|
||||
import { CommonParams } from './modules/common.js';
|
||||
import tooltip from './modules/tooltip.js';
|
||||
import highlightSql from './modules/sql-highlight.js';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.js';
|
||||
import { escapeHtml } from './modules/functions/escape.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { Functions } from './modules/functions.ts';
|
||||
import { CommonParams } from './modules/common.ts';
|
||||
import tooltip from './modules/tooltip.ts';
|
||||
import highlightSql from './modules/sql-highlight.ts';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.ts';
|
||||
import { escapeHtml } from './modules/functions/escape.ts';
|
||||
|
||||
/* global Sql */
|
||||
/* global firstDayOfCalendar */ // templates/javascript/variables.twig
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import getImageTag from './modules/functions/getImageTag.js';
|
||||
import getImageTag from './modules/functions/getImageTag.ts';
|
||||
|
||||
/**
|
||||
* Handles the resizing of a menu according to the available screen width
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import $ from 'jquery';
|
||||
import tooltip from './tooltip.js';
|
||||
import highlightSql from './sql-highlight.js';
|
||||
import tooltip from './tooltip.ts';
|
||||
import highlightSql from './sql-highlight.ts';
|
||||
|
||||
/**
|
||||
* Number of AJAX messages shown since page load.
|
||||
|
||||
@ -1,14 +1,14 @@
|
||||
import $ from 'jquery';
|
||||
import { Navigation } from './navigation.js';
|
||||
import { CommonParams } from './common.js';
|
||||
import highlightSql from './sql-highlight.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from './ajax-message.js';
|
||||
import { escapeHtml } from './functions/escape.js';
|
||||
import getImageTag from './functions/getImageTag.js';
|
||||
import { ignorePhpErrors } from './functions/ignorePhpErrors.js';
|
||||
import handleRedirectAndReload from './functions/handleRedirectAndReload.js';
|
||||
import checkNumberOfFields from './functions/checkNumberOfFields.js';
|
||||
import mainMenuResizerCallback from './functions/mainMenuResizerCallback.js';
|
||||
import { Navigation } from './navigation.ts';
|
||||
import { CommonParams } from './common.ts';
|
||||
import highlightSql from './sql-highlight.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from './ajax-message.ts';
|
||||
import { escapeHtml } from './functions/escape.ts';
|
||||
import getImageTag from './functions/getImageTag.ts';
|
||||
import { ignorePhpErrors } from './functions/ignorePhpErrors.ts';
|
||||
import handleRedirectAndReload from './functions/handleRedirectAndReload.ts';
|
||||
import checkNumberOfFields from './functions/checkNumberOfFields.ts';
|
||||
import mainMenuResizerCallback from './functions/mainMenuResizerCallback.ts';
|
||||
|
||||
/**
|
||||
* This object handles ajax requests for pages. It also
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
import $ from 'jquery';
|
||||
import { CommonParams } from './common.js';
|
||||
import { ajaxShowMessage } from './ajax-message.js';
|
||||
import isStorageSupported from './functions/isStorageSupported.js';
|
||||
import formatDateTime from './functions/formatDateTime.js';
|
||||
import { CommonParams } from './common.ts';
|
||||
import { ajaxShowMessage } from './ajax-message.ts';
|
||||
import isStorageSupported from './functions/isStorageSupported.ts';
|
||||
import formatDateTime from './functions/formatDateTime.ts';
|
||||
|
||||
/**
|
||||
* Functions used in configuration forms and on user preferences pages
|
||||
|
||||
@ -1,12 +1,12 @@
|
||||
import $ from 'jquery';
|
||||
import CodeMirror from 'codemirror';
|
||||
import { AJAX } from './ajax.js';
|
||||
import { Functions } from './functions.js';
|
||||
import { CommonParams } from './common.js';
|
||||
import { Navigation } from './navigation.js';
|
||||
import { Config } from './console/config.js';
|
||||
import { getConfigValue } from './functions/config.js';
|
||||
import { escapeHtml } from './functions/escape.js';
|
||||
import { AJAX } from './ajax.ts';
|
||||
import { Functions } from './functions.ts';
|
||||
import { CommonParams } from './common.ts';
|
||||
import { Navigation } from './navigation.ts';
|
||||
import { Config } from './console/config.ts';
|
||||
import { getConfigValue } from './functions/config.ts';
|
||||
import { escapeHtml } from './functions/escape.ts';
|
||||
|
||||
/**
|
||||
* Console object
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import { setConfigValue } from '../functions/config.js';
|
||||
import { setConfigValue } from '../functions/config.ts';
|
||||
|
||||
/**
|
||||
* @link https://docs.phpmyadmin.net/en/latest/config.html#console-settings
|
||||
|
||||
@ -1,18 +1,18 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './ajax.js';
|
||||
import { Navigation } from './navigation.js';
|
||||
import { CommonParams } from './common.js';
|
||||
import tooltip from './tooltip.js';
|
||||
import highlightSql from './sql-highlight.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from './ajax-message.js';
|
||||
import { escapeHtml } from './functions/escape.js';
|
||||
import getImageTag from './functions/getImageTag.js';
|
||||
import handleRedirectAndReload from './functions/handleRedirectAndReload.js';
|
||||
import refreshMainContent from './functions/refreshMainContent.js';
|
||||
import checkIndexType from './indexes/checkIndexType.js';
|
||||
import checkIndexName from './indexes/checkIndexName.js';
|
||||
import mainMenuResizerCallback from './functions/mainMenuResizerCallback.js';
|
||||
import isStorageSupported from './functions/isStorageSupported.js';
|
||||
import { AJAX } from './ajax.ts';
|
||||
import { Navigation } from './navigation.ts';
|
||||
import { CommonParams } from './common.ts';
|
||||
import tooltip from './tooltip.ts';
|
||||
import highlightSql from './sql-highlight.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from './ajax-message.ts';
|
||||
import { escapeHtml } from './functions/escape.ts';
|
||||
import getImageTag from './functions/getImageTag.ts';
|
||||
import handleRedirectAndReload from './functions/handleRedirectAndReload.ts';
|
||||
import refreshMainContent from './functions/refreshMainContent.ts';
|
||||
import checkIndexType from './indexes/checkIndexType.ts';
|
||||
import checkIndexName from './indexes/checkIndexName.ts';
|
||||
import mainMenuResizerCallback from './functions/mainMenuResizerCallback.ts';
|
||||
import isStorageSupported from './functions/isStorageSupported.ts';
|
||||
|
||||
/* global DatabaseStructure */ // js/database/structure.js
|
||||
/* global firstDayOfCalendar, themeImagePath */ // templates/javascript/variables.twig
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { ajaxShowMessage } from '../ajax-message.js';
|
||||
import { ajaxShowMessage } from '../ajax-message.ts';
|
||||
|
||||
/* global maxInputVars */ // templates/javascript/variables.twig
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import $ from 'jquery';
|
||||
import { ajaxShowMessage } from '../ajax-message.js';
|
||||
import { CommonParams } from '../common.js';
|
||||
import { ajaxShowMessage } from '../ajax-message.ts';
|
||||
import { CommonParams } from '../common.ts';
|
||||
|
||||
/**
|
||||
* Sets a configuration value.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import $ from 'jquery';
|
||||
import { Functions } from '../functions.js';
|
||||
import handleCreateViewModal from './handleCreateViewModal.js';
|
||||
import { Functions } from '../functions.ts';
|
||||
import handleCreateViewModal from './handleCreateViewModal.ts';
|
||||
|
||||
/**
|
||||
* @see https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import { escapeHtml } from './escape.js';
|
||||
import { escapeHtml } from './escape.ts';
|
||||
|
||||
/**
|
||||
* Returns an HTML IMG tag for a particular image from a theme,
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { CommonParams } from '../common.js';
|
||||
import { CommonParams } from '../common.ts';
|
||||
|
||||
/**
|
||||
* @param {HTMLElement} elem
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import $ from 'jquery';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../ajax-message.js';
|
||||
import { CommonParams } from '../common.js';
|
||||
import { Functions } from '../functions.js';
|
||||
import { Navigation } from '../navigation.js';
|
||||
import getJsConfirmCommonParam from './getJsConfirmCommonParam.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../ajax-message.ts';
|
||||
import { CommonParams } from '../common.ts';
|
||||
import { Functions } from '../functions.ts';
|
||||
import { Navigation } from '../navigation.ts';
|
||||
import getJsConfirmCommonParam from './getJsConfirmCommonParam.ts';
|
||||
|
||||
/**
|
||||
* @param {JQuery<HTMLElement>} $this
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import { CommonParams } from '../common.js';
|
||||
import { CommonParams } from '../common.ts';
|
||||
|
||||
/**
|
||||
* Handle redirect and reload flags sent as part of AJAX requests
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import { ajaxShowMessage } from '../ajax-message.js';
|
||||
import { ajaxShowMessage } from '../ajax-message.ts';
|
||||
|
||||
/**
|
||||
* checks whether browser supports web storage
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { CommonParams } from '../common.js';
|
||||
import { CommonParams } from '../common.ts';
|
||||
|
||||
/**
|
||||
* Refreshes the main frame
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import $ from 'jquery';
|
||||
import { CommonParams } from './common.js';
|
||||
import { escapeHtml } from './functions/escape.js';
|
||||
import { CommonParams } from './common.ts';
|
||||
import { escapeHtml } from './functions/escape.ts';
|
||||
|
||||
const GitInfo = {
|
||||
/**
|
||||
|
||||
@ -1,14 +1,14 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './ajax.js';
|
||||
import { Functions } from './functions.js';
|
||||
import { Navigation } from './navigation.js';
|
||||
import { CommonParams } from './common.js';
|
||||
import highlightSql from './sql-highlight.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from './ajax-message.js';
|
||||
import getJsConfirmCommonParam from './functions/getJsConfirmCommonParam.js';
|
||||
import refreshMainContent from './functions/refreshMainContent.js';
|
||||
import checkIndexType from './indexes/checkIndexType.js';
|
||||
import checkIndexName from './indexes/checkIndexName.js';
|
||||
import { AJAX } from './ajax.ts';
|
||||
import { Functions } from './functions.ts';
|
||||
import { Navigation } from './navigation.ts';
|
||||
import { CommonParams } from './common.ts';
|
||||
import highlightSql from './sql-highlight.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from './ajax-message.ts';
|
||||
import getJsConfirmCommonParam from './functions/getJsConfirmCommonParam.ts';
|
||||
import refreshMainContent from './functions/refreshMainContent.ts';
|
||||
import checkIndexType from './indexes/checkIndexType.ts';
|
||||
import checkIndexName from './indexes/checkIndexName.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview function used for index manipulation pages
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
import $ from 'jquery';
|
||||
import { CommonParams } from './common.js';
|
||||
import { Config } from './config.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from './ajax-message.js';
|
||||
import { getConfigValue, setConfigValue } from './functions/config.js';
|
||||
import handleRedirectAndReload from './functions/handleRedirectAndReload.js';
|
||||
import isStorageSupported from './functions/isStorageSupported.js';
|
||||
import { CommonParams } from './common.ts';
|
||||
import { Config } from './config.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from './ajax-message.ts';
|
||||
import { getConfigValue, setConfigValue } from './functions/config.ts';
|
||||
import handleRedirectAndReload from './functions/handleRedirectAndReload.ts';
|
||||
import isStorageSupported from './functions/isStorageSupported.ts';
|
||||
|
||||
/**
|
||||
* function used in or for navigation panel
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
import $ from 'jquery';
|
||||
import { CommonParams } from '../common.js';
|
||||
import { Navigation } from '../navigation.js';
|
||||
import handleCreateViewModal from '../functions/handleCreateViewModal.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../ajax-message.js';
|
||||
import isStorageSupported from '../functions/isStorageSupported.js';
|
||||
import tooltip from '../tooltip.js';
|
||||
import { CommonParams } from '../common.ts';
|
||||
import { Navigation } from '../navigation.ts';
|
||||
import handleCreateViewModal from '../functions/handleCreateViewModal.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../ajax-message.ts';
|
||||
import isStorageSupported from '../functions/isStorageSupported.ts';
|
||||
import tooltip from '../tooltip.ts';
|
||||
|
||||
/**
|
||||
* @return {function}
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { CommonParams } from './common.js';
|
||||
import { CommonParams } from './common.ts';
|
||||
|
||||
/**
|
||||
* @see https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { CommonParams } from './modules/common.js';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { CommonParams } from './modules/common.ts';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview Implements the shiftkey + click remove column
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { Functions } from './modules/functions.js';
|
||||
import { CommonParams } from './modules/common.js';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.js';
|
||||
import { escapeHtml, escapeJsString } from './modules/functions/escape.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { Functions } from './modules/functions.ts';
|
||||
import { CommonParams } from './modules/common.ts';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.ts';
|
||||
import { escapeHtml, escapeJsString } from './modules/functions/escape.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview events handling from normalization page
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { Functions } from './modules/functions.js';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.js';
|
||||
import getJsConfirmCommonParam from './modules/functions/getJsConfirmCommonParam.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { Functions } from './modules/functions.ts';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.ts';
|
||||
import getJsConfirmCommonParam from './modules/functions/getJsConfirmCommonParam.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview Javascript functions used in server replication page
|
||||
|
||||
@ -1,12 +1,12 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { Navigation } from '../modules/navigation.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.js';
|
||||
import { escapeHtml } from '../modules/functions/escape.js';
|
||||
import refreshMainContent from '../modules/functions/refreshMainContent.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { Navigation } from '../modules/navigation.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.ts';
|
||||
import { escapeHtml } from '../modules/functions/escape.ts';
|
||||
import refreshMainContent from '../modules/functions/refreshMainContent.ts';
|
||||
|
||||
/**
|
||||
* @see https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
|
||||
/**
|
||||
* Make columns sortable, but only for tables with more than 1 data row.
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import { Navigation } from '../modules/navigation.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import getImageTag from '../modules/functions/getImageTag.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import { Navigation } from '../modules/navigation.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import getImageTag from '../modules/functions/getImageTag.ts';
|
||||
|
||||
/**
|
||||
* Export privileges modal handler
|
||||
|
||||
@ -1,12 +1,12 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../../modules/ajax.js';
|
||||
import { Functions } from '../../modules/functions.js';
|
||||
import { CommonParams } from '../../modules/common.js';
|
||||
import tooltip from '../../modules/tooltip.js';
|
||||
import createProfilingChart from '../../modules/functions/createProfilingChart.js';
|
||||
import { escapeHtml } from '../../modules/functions/escape.js';
|
||||
import getImageTag from '../../modules/functions/getImageTag.js';
|
||||
import isStorageSupported from '../../modules/functions/isStorageSupported.js';
|
||||
import { AJAX } from '../../modules/ajax.ts';
|
||||
import { Functions } from '../../modules/functions.ts';
|
||||
import { CommonParams } from '../../modules/common.ts';
|
||||
import tooltip from '../../modules/tooltip.ts';
|
||||
import createProfilingChart from '../../modules/functions/createProfilingChart.ts';
|
||||
import { escapeHtml } from '../../modules/functions/escape.ts';
|
||||
import getImageTag from '../../modules/functions/getImageTag.ts';
|
||||
import isStorageSupported from '../../modules/functions/isStorageSupported.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview Javascript functions used in server status monitor page
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../../modules/ajax.js';
|
||||
import { CommonParams } from '../../modules/common.js';
|
||||
import highlightSql from '../../modules/sql-highlight.js';
|
||||
import { ajaxShowMessage } from '../../modules/ajax-message.js';
|
||||
import { escapeHtml } from '../../modules/functions/escape.js';
|
||||
import getImageTag from '../../modules/functions/getImageTag.js';
|
||||
import { AJAX } from '../../modules/ajax.ts';
|
||||
import { CommonParams } from '../../modules/common.ts';
|
||||
import highlightSql from '../../modules/sql-highlight.ts';
|
||||
import { ajaxShowMessage } from '../../modules/ajax-message.ts';
|
||||
import { escapeHtml } from '../../modules/functions/escape.ts';
|
||||
import getImageTag from '../../modules/functions/getImageTag.ts';
|
||||
|
||||
/**
|
||||
* Server Status Processes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../../modules/ajax.js';
|
||||
import createProfilingChart from '../../modules/functions/createProfilingChart.js';
|
||||
import { AJAX } from '../../modules/ajax.ts';
|
||||
import createProfilingChart from '../../modules/functions/createProfilingChart.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview Javascript functions used in server status query page
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../../modules/ajax.js';
|
||||
import { AJAX } from '../../modules/ajax.ts';
|
||||
|
||||
/**
|
||||
*
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { escapeHtml } from '../modules/functions/escape.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { escapeHtml } from '../modules/functions/escape.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview Javascript functions used in server user groups page
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview Javascript functions used in server variables page
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { Config } from '../modules/config.js';
|
||||
import { Config } from '../modules/config.ts';
|
||||
|
||||
/**
|
||||
* Functions used in Setup configuration forms
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { CommonParams } from './modules/common.js';
|
||||
import { CommonParams } from './modules/common.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview Handle shortcuts in various pages
|
||||
|
||||
@ -1,14 +1,14 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { Functions } from './modules/functions.js';
|
||||
import { Navigation } from './modules/navigation.js';
|
||||
import { CommonParams } from './modules/common.js';
|
||||
import highlightSql from './modules/sql-highlight.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from './modules/ajax-message.js';
|
||||
import createProfilingChart from './modules/functions/createProfilingChart.js';
|
||||
import { escapeHtml } from './modules/functions/escape.js';
|
||||
import refreshMainContent from './modules/functions/refreshMainContent.js';
|
||||
import isStorageSupported from './modules/functions/isStorageSupported.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { Functions } from './modules/functions.ts';
|
||||
import { Navigation } from './modules/navigation.ts';
|
||||
import { CommonParams } from './modules/common.ts';
|
||||
import highlightSql from './modules/sql-highlight.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from './modules/ajax-message.ts';
|
||||
import createProfilingChart from './modules/functions/createProfilingChart.ts';
|
||||
import { escapeHtml } from './modules/functions/escape.ts';
|
||||
import refreshMainContent from './modules/functions/refreshMainContent.ts';
|
||||
import isStorageSupported from './modules/functions/isStorageSupported.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview functions used wherever an sql query form is used
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview function used in table data manipulation pages
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import { escapeHtml } from '../modules/functions/escape.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import { escapeHtml } from '../modules/functions/escape.ts';
|
||||
|
||||
/* global ColumnType, DataTable, JQPlotChartFactory */ // js/chart.js
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
|
||||
/**
|
||||
* Unbind all event handlers before tearing down a page
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { escapeHtml } from '../modules/functions/escape.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { escapeHtml } from '../modules/functions/escape.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview functions used for visualizing GIS data
|
||||
|
||||
@ -1,13 +1,13 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { Navigation } from '../modules/navigation.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import highlightSql from '../modules/sql-highlight.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.js';
|
||||
import { escapeHtml } from '../modules/functions/escape.js';
|
||||
import refreshMainContent from '../modules/functions/refreshMainContent.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { Navigation } from '../modules/navigation.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import highlightSql from '../modules/sql-highlight.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.ts';
|
||||
import { escapeHtml } from '../modules/functions/escape.ts';
|
||||
import refreshMainContent from '../modules/functions/refreshMainContent.ts';
|
||||
|
||||
/**
|
||||
* Unbind all event handlers before tearing down a page
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.js';
|
||||
import { escapeHtml } from '../modules/functions/escape.js';
|
||||
import refreshMainContent from '../modules/functions/refreshMainContent.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.ts';
|
||||
import { escapeHtml } from '../modules/functions/escape.ts';
|
||||
import refreshMainContent from '../modules/functions/refreshMainContent.ts';
|
||||
|
||||
/**
|
||||
* for table relation
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import highlightSql from '../modules/sql-highlight.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import highlightSql from '../modules/sql-highlight.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview JavaScript functions used on /table/search
|
||||
|
||||
@ -1,14 +1,14 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { Navigation } from '../modules/navigation.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import highlightSql from '../modules/sql-highlight.js';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import { Indexes } from '../modules/indexes.js';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.js';
|
||||
import { escapeHtml } from '../modules/functions/escape.js';
|
||||
import refreshMainContent from '../modules/functions/refreshMainContent.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { Navigation } from '../modules/navigation.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import highlightSql from '../modules/sql-highlight.ts';
|
||||
import { ajaxRemoveMessage, ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import { Indexes } from '../modules/indexes.ts';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.ts';
|
||||
import { escapeHtml } from '../modules/functions/escape.ts';
|
||||
import refreshMainContent from '../modules/functions/refreshMainContent.ts';
|
||||
|
||||
/**
|
||||
* @fileoverview functions used on the table structure page
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
import getJsConfirmCommonParam from '../modules/functions/getJsConfirmCommonParam.ts';
|
||||
|
||||
/**
|
||||
* Unbind all event handlers before tearing down the page
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { CommonParams } from '../modules/common.js';
|
||||
import highlightSql from '../modules/sql-highlight.js';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
import { CommonParams } from '../modules/common.ts';
|
||||
import highlightSql from '../modules/sql-highlight.ts';
|
||||
import { ajaxShowMessage } from '../modules/ajax-message.ts';
|
||||
|
||||
// TODO: change the axis
|
||||
/**
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
|
||||
/**
|
||||
* Image upload transformations plugin js
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
|
||||
/**
|
||||
* JSON syntax highlighting transformation plugin
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
|
||||
/**
|
||||
* JSON syntax highlighting transformation plugin
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { Functions } from '../modules/functions.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
import { Functions } from '../modules/functions.ts';
|
||||
|
||||
/**
|
||||
* SQL syntax highlighting transformation plugin js
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
|
||||
/**
|
||||
* XML syntax highlighting transformation plugin
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from '../modules/ajax.js';
|
||||
import { AJAX } from '../modules/ajax.ts';
|
||||
|
||||
/**
|
||||
* XML editor plugin
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.ts';
|
||||
|
||||
AJAX.registerOnload('u2f.js', function () {
|
||||
var $inputReg = $('#u2f_registration_response');
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import $ from 'jquery';
|
||||
import { AJAX } from './modules/ajax.js';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.js';
|
||||
import { AJAX } from './modules/ajax.ts';
|
||||
import { ajaxShowMessage } from './modules/ajax-message.ts';
|
||||
|
||||
/**
|
||||
* @param {ArrayBuffer} buffer
|
||||
|
||||
@ -1,13 +1,14 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es6",
|
||||
"module": "es6",
|
||||
"target": "esnext",
|
||||
"moduleResolution": "bundler",
|
||||
"allowJs": true,
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"checkJs": true,
|
||||
"outDir": "./build/js",
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"allowImportingTsExtensions": true,
|
||||
"strict": false,
|
||||
"isolatedModules": true
|
||||
},
|
||||
|
||||
Loading…
Reference in New Issue
Block a user