Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
See what's new at GitLab
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
O
OSMyBiz
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
35
Issues
35
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
2
Merge Requests
2
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
geometalab
OSMyBiz
Commits
7cb73bb3
Commit
7cb73bb3
authored
Aug 13, 2019
by
SeeBenj
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'updateOHURL' into 'develop'
Code Reviewed See merge request
!148
parents
d72cc2a9
d8a26185
Pipeline
#76085655
passed with stages
in 9 minutes and 1 second
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
16 deletions
+2
-16
frontend/osmybiz/build/dev-server.js
frontend/osmybiz/build/dev-server.js
+1
-1
frontend/osmybiz/build/webpack.base.conf.js
frontend/osmybiz/build/webpack.base.conf.js
+1
-1
frontend/osmybiz/src/main.js
frontend/osmybiz/src/main.js
+0
-4
frontend/osmybiz/static/worker.js
frontend/osmybiz/static/worker.js
+0
-10
No files found.
frontend/osmybiz/build/dev-server.js
View file @
7cb73bb3
...
...
@@ -12,7 +12,7 @@ var webpack = require('webpack')
var
proxyMiddleware
=
require
(
'
http-proxy-middleware
'
)
var
webpackConfig
=
(
process
.
env
.
NODE_ENV
===
'
testing
'
||
process
.
env
.
NODE_ENV
===
'
production
'
)
?
require
(
'
./webpack.prod.conf
'
)
:
require
(
'
./webpack.dev.conf
'
)
:
require
(
'
./webpack.dev.conf
'
)
// default port where dev server listens for incoming traffic
var
port
=
process
.
env
.
PORT
||
config
.
dev
.
port
...
...
frontend/osmybiz/build/webpack.base.conf.js
View file @
7cb73bb3
...
...
@@ -44,7 +44,7 @@ module.exports = {
{
test
:
/
\.
js$/
,
loader
:
'
babel-loader
'
,
include
:
[
resolve
(
'
src
'
),
resolve
(
'
test
'
),
resolve
(
'
static/converter.js
'
)
/* , resolve('node_modules') */
]
include
:
[
resolve
(
'
src
'
),
resolve
(
'
test
'
),
resolve
(
'
static/converter.js
'
)]
},
{
test
:
/
\.(
png|jpe
?
g|gif|svg
)(\?
.*
)?
$/
,
...
...
frontend/osmybiz/src/main.js
View file @
7cb73bb3
...
...
@@ -3,7 +3,6 @@ import Vue from 'vue';
import
VueCookies
from
'
vue-cookies
'
;
import
VueI18n
from
'
vue-i18n
'
;
import
{
sync
}
from
'
vuex-router-sync
'
;
// import VueWorker from 'vue-worker';
import
store
from
'
./store
'
;
import
App
from
'
./App.vue
'
;
import
router
from
'
./router
'
;
...
...
@@ -24,9 +23,6 @@ import { FALLBACKLOCALE } from './store/locale';
Vue
.
use
(
VueCookies
);
Vue
.
use
(
VueI18n
);
// Vue.use(VueWorker);
// Object.defineProperty(Vue.prototype, '$worker', {value:VueWorker,configurable: true});
// Vue.prototype.$worker = vueWorker;
const
messages
=
({
de
,
...
...
frontend/osmybiz/static/worker.js
deleted
100644 → 0
View file @
d72cc2a9
onmessage
=
(
event
)
=>
{
// const result = isURL(event.data[0]);
console
.
log
(
event
.
data
);
// alert('Started Webworker');
// const answere = ['no', 'not', 'yes', 'but', 'maybe'];
postMessage
(
'
answere
'
);
};
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