mirror of
https://github.com/exane/not-gwent-online
synced 2025-08-30 05:57:30 +00:00
start styling searchMatch and few changes
This commit is contained in:
@@ -16,7 +16,6 @@ var app = new Vue({
|
||||
|
||||
components: {
|
||||
lobby: require('./components/lobby'),
|
||||
navigation: require('./components/navigation'),
|
||||
chat: require('./components/chat')
|
||||
}
|
||||
|
||||
|
@@ -1,5 +1,16 @@
|
||||
module.exports = {
|
||||
|
||||
template: require('../views/lobby.html')
|
||||
template: require('../views/lobby.html'),
|
||||
|
||||
data: function() {
|
||||
return {
|
||||
modal: false
|
||||
}
|
||||
},
|
||||
|
||||
components: {
|
||||
searchmatch: require('./modals/searchMatch'),
|
||||
navigation: require('./navigation')
|
||||
}
|
||||
|
||||
};
|
7
site/client/app/components/modals/searchMatch.js
Normal file
7
site/client/app/components/modals/searchMatch.js
Normal file
@@ -0,0 +1,7 @@
|
||||
module.exports = {
|
||||
|
||||
template: require('../../views/modals/searchMatch.html'),
|
||||
|
||||
inherit: true
|
||||
|
||||
};
|
@@ -4,9 +4,16 @@ module.exports = {
|
||||
|
||||
template: require('../views/navigation.html'),
|
||||
|
||||
inherit: true,
|
||||
|
||||
methods: {
|
||||
changeView: function(view) {
|
||||
router.changeRoute(view);
|
||||
},
|
||||
|
||||
searchMatch: function() {
|
||||
this.modal = true;
|
||||
// trigger match functions
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -13,9 +13,7 @@ var routes = {
|
||||
};
|
||||
|
||||
var options = {
|
||||
html5history: true,
|
||||
run_handler_in_init: false,
|
||||
convert_hash_in_init: false
|
||||
html5history: true
|
||||
}
|
||||
|
||||
var Router = require('director').Router;
|
||||
|
@@ -5,7 +5,7 @@
|
||||
<navigation></navigation>
|
||||
|
||||
<section class="container-content">
|
||||
blaa
|
||||
<searchmatch></searchmatch>
|
||||
</section>
|
||||
|
||||
</main>
|
10
site/client/app/views/modals/searchMatch.html
Normal file
10
site/client/app/views/modals/searchMatch.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<div class="modal" v-class="active: modal">
|
||||
<div class="modal-banner">
|
||||
<div class="wrap-modal-search">
|
||||
|
||||
<i class="icon-content-load"></i>
|
||||
<p class="modal-para">Search for Player</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@@ -4,6 +4,6 @@
|
||||
<li><a v-on="click: changeView('deck-builder')">Deck Builder</a></li>
|
||||
<li><a v-on="click: changeView('highscore')">Highscore</a></li>
|
||||
|
||||
<li class="sub-nav"><a>Quick Match</a></li>
|
||||
<li class="sub-nav" v-on="click: searchMatch"><a>Quick Match</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
Reference in New Issue
Block a user