aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/baggy
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-10-27 01:57:27 +0200
committerThomas Citharel <tcit@tcit.fr>2016-11-15 21:54:41 +0100
commitaf61cb80eb600618df95a01a15a08e87fc878c2a (patch)
tree3e5ba0c9935b5aace5e5c58a8d3fd84621d4b0db /app/Resources/static/themes/baggy
parentf9cded7dd2acab3af8ff8481941e0c199daf8270 (diff)
downloadwallabag-af61cb80eb600618df95a01a15a08e87fc878c2a.tar.gz
wallabag-af61cb80eb600618df95a01a15a08e87fc878c2a.tar.zst
wallabag-af61cb80eb600618df95a01a15a08e87fc878c2a.zip
es6 imports
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'app/Resources/static/themes/baggy')
-rwxr-xr-xapp/Resources/static/themes/baggy/js/autoCompleteTags.js2
-rwxr-xr-xapp/Resources/static/themes/baggy/js/init.js18
-rw-r--r--app/Resources/static/themes/baggy/js/uiTools.js4
3 files changed, 15 insertions, 9 deletions
diff --git a/app/Resources/static/themes/baggy/js/autoCompleteTags.js b/app/Resources/static/themes/baggy/js/autoCompleteTags.js
index f287ebfa..64fdaa92 100755
--- a/app/Resources/static/themes/baggy/js/autoCompleteTags.js
+++ b/app/Resources/static/themes/baggy/js/autoCompleteTags.js
@@ -5,4 +5,4 @@ function extractLast(term) {
5 return split(term).pop(); 5 return split(term).pop();
6} 6}
7 7
8export { split, extractLast }; 8export default { split, extractLast };
diff --git a/app/Resources/static/themes/baggy/js/init.js b/app/Resources/static/themes/baggy/js/init.js
index dc11043a..b7347f7c 100755
--- a/app/Resources/static/themes/baggy/js/init.js
+++ b/app/Resources/static/themes/baggy/js/init.js
@@ -1,11 +1,17 @@
1import { savePercent, retrievePercent } from '../../_global/js/tools'; 1import $ from 'jquery';
2import { toggleSaveLinkForm } from './uiTools'; 2
3/* eslint-disable no-unused-vars */
4/* jquery has default scope */
5import cookie from 'jquery.cookie';
6import ui from 'jquery-ui-browserify';
7/* eslint-enable no-unused-vars */
3 8
4const $ = global.jquery = require('jquery'); 9import annotator from 'annotator';
5require('jquery.cookie'); 10
6require('jquery-ui-browserify'); 11import { savePercent, retrievePercent } from '../../_global/js/tools';
7const annotator = require('annotator'); 12import toggleSaveLinkForm from './uiTools';
8 13
14global.jquery = $;
9 15
10$.fn.ready(() => { 16$.fn.ready(() => {
11 const $listmode = $('#listmode'); 17 const $listmode = $('#listmode');
diff --git a/app/Resources/static/themes/baggy/js/uiTools.js b/app/Resources/static/themes/baggy/js/uiTools.js
index 900b2707..713c53f7 100644
--- a/app/Resources/static/themes/baggy/js/uiTools.js
+++ b/app/Resources/static/themes/baggy/js/uiTools.js
@@ -1,4 +1,4 @@
1const $ = require('jquery'); 1import $ from 'jquery';
2 2
3function toggleSaveLinkForm(url, event) { 3function toggleSaveLinkForm(url, event) {
4 $('#add-link-result').empty(); 4 $('#add-link-result').empty();
@@ -32,4 +32,4 @@ function toggleSaveLinkForm(url, event) {
32 plainUrl.focus(); 32 plainUrl.focus();
33} 33}
34 34
35export { toggleSaveLinkForm }; 35export default toggleSaveLinkForm;