Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Platform
Commits
081fc584
Unverified
Commit
081fc584
authored
Oct 06, 2017
by
Nicolas Widart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compile js
parent
90b9c03a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
81 deletions
+57
-81
app.js
public/js/app.js
+57
-81
No files found.
public/js/app.js
View file @
081fc584
...
...
@@ -42812,7 +42812,7 @@ window.axios.interceptors.response.use(null, function (error) {
"use strict";
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
/*!
* vue-i18n v7.3.
1
* vue-i18n v7.3.
0
* (c) 2017 kazuya kawaguchi
* Released under the MIT License.
*/
...
...
@@ -43202,39 +43202,15 @@ var component = {
/* */
function bind (el, binding, vnode) {
if (!assert(el, vnode)) { return }
t$1(el, binding, vnode);
}
function update (el, binding, vnode, oldVNode) {
if (!assert(el, vnode)) { return }
if (localeEqual(el, vnode) && looseEqual(binding.value, binding.oldValue)) { return }
if (looseEqual(binding.value, binding.oldValue)) { return }
t$1(el, binding, vnode);
}
function assert (el, vnode) {
var vm = vnode.context;
if (!vm) {
warn('not exist Vue instance in VNode context');
return false
}
if (!vm.$i18n) {
warn('not exist VueI18n instance in Vue instance');
return false
}
return true
}
function localeEqual (el, vnode) {
var vm = vnode.context;
return el._locale === vm.$i18n.locale
}
function t$1 (el, binding, vnode) {
var value = binding.value;
...
...
@@ -43247,14 +43223,23 @@ function t$1 (el, binding, vnode) {
return
}
var vm = vnode.context;
if (!vm) {
warn('not exist Vue instance in VNode context');
return
}
if (!vm.$i18n) {
warn('not exist VueI18n instance in Vue instance');
return
}
if (!path) {
warn('required `path` in v-t directive');
return
}
var vm = vnode.context;
el._vt = el.textContent = (ref$1 = vm.$i18n).t.apply(ref$1, [ path ].concat( makeParams(locale, args) ));
el._locale = vm.$i18n.locale;
var ref$1;
}
...
...
@@ -44310,7 +44295,7 @@ VueI18n.availabilities = {
numberFormat: canUseNumberFormat
};
VueI18n.install = install;
VueI18n.version = '7.3.
1
';
VueI18n.version = '7.3.
0
';
/* istanbul ignore if */
if (typeof window !== 'undefined' && window.Vue) {
...
...
@@ -47192,7 +47177,7 @@ module.exports =
};
module.exports = {
version: '1.4.
6
',
version: '1.4.
5
',
locale: _locale2.default.use,
i18n: _locale2.default.i18n,
install: install,
...
...
@@ -48669,6 +48654,7 @@ module.exports =
options: {
default: function _default() {
return {
forceAbsolute: true,
gpuAcceleration: false
};
}
...
...
@@ -53197,6 +53183,7 @@ module.exports =
popperOptions: {
default: function _default() {
return {
forceAbsolute: true,
gpuAcceleration: false
};
}
...
...
@@ -60784,7 +60771,7 @@ module.exports =
var calcDefaultValue = function calcDefaultValue(defaultValue) {
if (Array.isArray(defaultValue)) {
return
defaultValue[0] ? new Date(defaultValue[0]) : new Date(
);
return
new Date(defaultValue[0]
);
} else {
return new Date(defaultValue);
}
...
...
@@ -62565,7 +62552,8 @@ module.exports =
data: function data() {
return {
timeoutPending: null
timeoutPending: null,
handlerAdded: false
};
},
beforeCreate: function beforeCreate() {
...
...
@@ -62631,10 +62619,19 @@ module.exports =
var nativeOn = vnode.data.nativeOn = vnode.data.nativeOn || {};
data.staticClass = this.concatClass(data.staticClass, 'el-tooltip');
on.mouseenter = this.addEventHandle(on.mouseenter, this.show);
on.mouseleave = this.addEventHandle(on.mouseleave, this.hide);
nativeOn.mouseenter = this.addEventHandle(nativeOn.mouseenter, this.show);
nativeOn.mouseleave = this.addEventHandle(nativeOn.mouseleave, this.hide);
if (this.handlerAdded) return vnode;
on.mouseenter = this.addEventHandle(on.mouseenter, function () {
_this2.setExpectedState(true);_this2.handleShowPopper();
});
on.mouseleave = this.addEventHandle(on.mouseleave, function () {
_this2.setExpectedState(false);_this2.debounceClose();
});
nativeOn.mouseenter = this.addEventHandle(nativeOn.mouseenter, function () {
_this2.setExpectedState(true);_this2.handleShowPopper();
});
nativeOn.mouseleave = this.addEventHandle(nativeOn.mouseleave, function () {
_this2.setExpectedState(false);_this2.debounceClose();
});
return vnode;
},
...
...
@@ -62644,22 +62641,9 @@ module.exports =
methods: {
show: function show() {
this.setExpectedState(true);
this.handleShowPopper();
},
hide: function hide() {
this.setExpectedState(false);
this.debounceClose();
},
addEventHandle: function addEventHandle(old, fn) {
if (!old) {
return fn;
} else if (Array.isArray(old)) {
return old.indexOf(fn) > -1 ? old : old.concat(fn);
} else {
return old === fn ? old : [old, fn];
}
this.handlerAdded = true;
return old ? Array.isArray(old) ? old.concat(fn) : [old, fn] : fn;
},
concatClass: function concatClass(a, b) {
if (a && a.indexOf(b) > -1) return a;
...
...
@@ -65466,8 +65450,7 @@ module.exports =
} else if (typeof config === 'string') {
return data[config];
} else if (typeof config === 'undefined') {
var dataProp = data[prop];
return dataProp === undefined ? '' : dataProp;
return '';
}
};
...
...
@@ -67236,7 +67219,6 @@ module.exports =
this.startX = event.clientX;
}
this.startPosition = parseFloat(this.currentPosition);
this.newPosition = this.startPosition;
},
onDragging: function onDragging(event) {
if (this.dragging) {
...
...
@@ -72552,13 +72534,9 @@ module.exports =
arr.forEach(function (item) {
var itemCopy = {};
configurableProps.forEach(function (prop) {
var name = props[prop];
var value = item[name];
if (value === undefined) {
name = prop;
value = item[name];
}
if (value !== undefined) itemCopy[name] = value;
var propName = props[prop] || prop;
var value = item[propName];
if (value !== undefined) itemCopy[propName] = value;
});
if (Array.isArray(item[childrenProp])) {
itemCopy[childrenProp] = copyArray(item[childrenProp], props);
...
...
@@ -76247,6 +76225,7 @@ module.exports =
popperOptions: {
default: function _default() {
return {
forceAbsolute: true,
gpuAcceleration: false
};
}
...
...
@@ -79915,7 +79894,8 @@ module.exports =
data: function data() {
return {
timeoutPending: null
timeoutPending: null,
handlerAdded: false
};
},
beforeCreate: function beforeCreate() {
...
...
@@ -79981,10 +79961,19 @@ module.exports =
var nativeOn = vnode.data.nativeOn = vnode.data.nativeOn || {};
data.staticClass = this.concatClass(data.staticClass, 'el-tooltip');
on.mouseenter = this.addEventHandle(on.mouseenter, this.show);
on.mouseleave = this.addEventHandle(on.mouseleave, this.hide);
nativeOn.mouseenter = this.addEventHandle(nativeOn.mouseenter, this.show);
nativeOn.mouseleave = this.addEventHandle(nativeOn.mouseleave, this.hide);
if (this.handlerAdded) return vnode;
on.mouseenter = this.addEventHandle(on.mouseenter, function () {
_this2.setExpectedState(true);_this2.handleShowPopper();
});
on.mouseleave = this.addEventHandle(on.mouseleave, function () {
_this2.setExpectedState(false);_this2.debounceClose();
});
nativeOn.mouseenter = this.addEventHandle(nativeOn.mouseenter, function () {
_this2.setExpectedState(true);_this2.handleShowPopper();
});
nativeOn.mouseleave = this.addEventHandle(nativeOn.mouseleave, function () {
_this2.setExpectedState(false);_this2.debounceClose();
});
return vnode;
},
...
...
@@ -79994,22 +79983,9 @@ module.exports =
methods: {
show: function show() {
this.setExpectedState(true);
this.handleShowPopper();
},
hide: function hide() {
this.setExpectedState(false);
this.debounceClose();
},
addEventHandle: function addEventHandle(old, fn) {
if (!old) {
return fn;
} else if (Array.isArray(old)) {
return old.indexOf(fn) > -1 ? old : old.concat(fn);
} else {
return old === fn ? old : [old, fn];
}
this.handlerAdded = true;
return old ? Array.isArray(old) ? old.concat(fn) : [old, fn] : fn;
},
concatClass: function concatClass(a, b) {
if (a && a.indexOf(b) > -1) return a;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment