Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
65a16b78
Commit
65a16b78
authored
Oct 11, 2016
by
Karl
Browse files
Es laufen jetzt fast alle Skripte, außer für die Bildersuche
parent
3d6eb001
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
gulpfile.js
View file @
65a16b78
...
...
@@ -12,5 +12,5 @@ require('laravel-elixir-vue-2');
*/
elixir
(
function
(
mix
)
{
mix
.
less
(
'
default.less
'
,
'
public/css/themes/default.css
'
);
mix
.
scripts
([
'
jquery.js
'
,
'
bootstrap.js
'
,
'
widgets.js
'
,
'
editLanguage.js
'
,
'
kontakt.js
'
,
'
lightslider.js
'
,
'
masonry.js
'
,
'
openpgp.min.js
'
,
'
scriptResultPage.js
'
,
'
scriptStartPage.js
'
,
'
settings.js
'
,
'
/vue/app.js
'
,
'
/vue/bootstrap.js
'
]);
mix
.
scripts
([
'
jquery.js
'
,
'
bootstrap.js
'
,
'
widgets.js
'
,
'
editLanguage.js
'
,
'
kontakt.js
'
,
'
lightslider.js
'
,
'
masonry.js
'
,
'
imagesloaded
'
,
'
openpgp.min.js
'
,
'
scriptResultPage.js
'
,
'
scriptStartPage.js
'
,
'
settings.js
'
/*
, '/vue/app.js', '/vue/bootstrap.js'
*/
]);
});
\ No newline at end of file
public/js/all.js
View file @
65a16b78
...
...
@@ -4110,71 +4110,4 @@ function isEnglish() {
return true;
}
}
/**
* First we will load all of this project's JavaScript dependencies which
* include Vue and Vue Resource. This gives a great starting point for
* building robust, powerful web applications using Vue and Laravel.
*/
require('./bootstrap');
/**
* Next, we will create a fresh Vue application instance and attach it to
* the body of the page. From here, you may begin adding components to
* the application, or feel free to tweak this setup for your needs.
*/
Vue.component('example', require('./components/Example.vue'));
const app = new Vue({
el: '#app'
});
window._ = require('lodash');
/**
* We'll load jQuery and the Bootstrap jQuery plugin which provides support
* for JavaScript based Bootstrap features such as modals and tabs. This
* code may be modified to fit the specific needs of your application.
*/
window.$ = window.jQuery = require('jquery');
require('bootstrap-sass');
/**
* Vue is a modern JavaScript library for building interactive web interfaces
* using reactive data binding and reusable components. Vue's API is clean
* and simple, leaving you to focus on building your next great project.
*/
window.Vue = require('vue');
require('vue-resource');
/**
* We'll register a HTTP interceptor to attach the "CSRF" header to each of
* the outgoing requests issued by this application. The CSRF middleware
* included with Laravel will automatically verify the header's value.
*/
Vue.http.interceptors.push((request, next) => {
request.headers.set('X-CSRF-TOKEN', Laravel.csrfToken);
next();
});
/**
* Echo exposes an expressive API for subscribing to channels and listening
* for events that are broadcast by Laravel. Echo and event broadcasting
* allows your team to easily build robust real-time web applications.
*/
// import Echo from "laravel-echo"
// window.Echo = new Echo({
// broadcaster: 'pusher',
// key: 'your-pusher-key'
// });
//# sourceMappingURL=all.js.map
public/js/all.js.map
View file @
65a16b78
This diff is collapsed.
Click to expand it.
resources/assets/js/all.js.map
deleted
100644 → 0
View file @
3d6eb001
This source diff could not be displayed because it is too large. You can
view the blob
instead.
resources/assets/js/vue/app.js
View file @
65a16b78
/**
* First we will load all of this project's JavaScript dependencies which
* include Vue and Vue Resource. This gives a great starting point for
* building robust, powerful web applications using Vue and Laravel.
*/
require
(
'
./bootstrap
'
);
//require('./bootstrap');
/**
* Next, we will create a fresh Vue application instance and attach it to
* the body of the page. From here, you may begin adding components to
* the application, or feel free to tweak this setup for your needs.
*/
Vue
.
component
(
'
example
'
,
require
(
'
./components/Example.vue
'
));
/*Vue.component('example', require('./components/Example.vue'));
const app = new Vue({
el: '#app'
});
});
*/
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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