Load jquery-ui resizable from npm package
Signed-off-by: David Mehren <git@herrmehren.de>
|
@ -6,6 +6,9 @@
|
||||||
import TurndownService from 'turndown'
|
import TurndownService from 'turndown'
|
||||||
import CodeMirror from 'codemirror/lib/codemirror.js'
|
import CodeMirror from 'codemirror/lib/codemirror.js'
|
||||||
|
|
||||||
|
import 'jquery-ui/ui/widgets/resizable'
|
||||||
|
import 'jquery-ui/themes/base/resizable.css'
|
||||||
|
|
||||||
import { saveAs } from 'file-saver'
|
import { saveAs } from 'file-saver'
|
||||||
import randomColor from 'randomcolor'
|
import randomColor from 'randomcolor'
|
||||||
import store from 'store'
|
import store from 'store'
|
||||||
|
|
Before Width: | Height: | Size: 86 B |
Before Width: | Height: | Size: 74 B |
Before Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 73 B |
Before Width: | Height: | Size: 126 B |
Before Width: | Height: | Size: 128 B |
Before Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 122 B |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 3.7 KiB |
7
public/vendor/jquery-ui/jquery-ui.min.css
vendored
6
public/vendor/jquery-ui/jquery-ui.min.js
vendored
|
@ -213,7 +213,6 @@ module.exports = {
|
||||||
],
|
],
|
||||||
index: [
|
index: [
|
||||||
'babel-polyfill',
|
'babel-polyfill',
|
||||||
'script-loader!jquery-ui-resizable',
|
|
||||||
'script-loader!Idle.Js',
|
'script-loader!Idle.Js',
|
||||||
'expose-loader?exposes=LZString!lz-string',
|
'expose-loader?exposes=LZString!lz-string',
|
||||||
'script-loader!inlineAttachment',
|
'script-loader!inlineAttachment',
|
||||||
|
@ -226,7 +225,6 @@ module.exports = {
|
||||||
path.join(__dirname, 'public/js/index.js')
|
path.join(__dirname, 'public/js/index.js')
|
||||||
],
|
],
|
||||||
'index-styles': [
|
'index-styles': [
|
||||||
path.join(__dirname, 'public/vendor/jquery-ui/jquery-ui.min.css'),
|
|
||||||
path.join(__dirname, 'public/vendor/codemirror-spell-checker/spell-checker.min.css'),
|
path.join(__dirname, 'public/vendor/codemirror-spell-checker/spell-checker.min.css'),
|
||||||
path.join(__dirname, 'node_modules/codemirror/lib/codemirror.css'),
|
path.join(__dirname, 'node_modules/codemirror/lib/codemirror.css'),
|
||||||
path.join(__dirname, 'node_modules/codemirror/addon/fold/foldgutter.css'),
|
path.join(__dirname, 'node_modules/codemirror/addon/fold/foldgutter.css'),
|
||||||
|
@ -253,7 +251,6 @@ module.exports = {
|
||||||
],
|
],
|
||||||
'index-pack': [
|
'index-pack': [
|
||||||
'babel-polyfill',
|
'babel-polyfill',
|
||||||
'script-loader!jquery-ui-resizable',
|
|
||||||
'bootstrap-validator',
|
'bootstrap-validator',
|
||||||
'expose-loader?exposes=jsyaml!js-yaml',
|
'expose-loader?exposes=jsyaml!js-yaml',
|
||||||
'script-loader!mermaid',
|
'script-loader!mermaid',
|
||||||
|
@ -367,7 +364,6 @@ module.exports = {
|
||||||
ot: path.join(__dirname, 'public/vendor/ot/ot.min.js'),
|
ot: path.join(__dirname, 'public/vendor/ot/ot.min.js'),
|
||||||
mermaid: path.join(__dirname, 'node_modules/mermaid/dist/mermaid.min.js'),
|
mermaid: path.join(__dirname, 'node_modules/mermaid/dist/mermaid.min.js'),
|
||||||
handlebars: path.join(__dirname, 'node_modules/handlebars/dist/handlebars.min.js'),
|
handlebars: path.join(__dirname, 'node_modules/handlebars/dist/handlebars.min.js'),
|
||||||
'jquery-ui-resizable': path.join(__dirname, 'public/vendor/jquery-ui/jquery-ui.min.js'),
|
|
||||||
'gist-embed': path.join(__dirname, 'node_modules/gist-embed/gist-embed.min.js'),
|
'gist-embed': path.join(__dirname, 'node_modules/gist-embed/gist-embed.min.js'),
|
||||||
'bootstrap-tooltip': path.join(__dirname, 'public/vendor/bootstrap/tooltip.min.js'),
|
'bootstrap-tooltip': path.join(__dirname, 'public/vendor/bootstrap/tooltip.min.js'),
|
||||||
'reveal-markdown': path.join(__dirname, 'public/js/reveal-markdown.js'),
|
'reveal-markdown': path.join(__dirname, 'public/js/reveal-markdown.js'),
|
||||||
|
|