// ---------------------------------------------------------------------------------
//
// Component: Alert popup
//
// Input Props:
// - ok: what to do if clicked on ok
// - id
//
// Ovo je test za alert
//
Vue.component('alert',
{
props:
[
'id', 'okAction'
],
computed:
{
},
mounted: function ()
{
var self = this;
$(document).on("keyup", function (event)
{
if(event.which === 27 && !self.mandatory)
{
$('#'+self.id).fadeOut(100);
}
});
},
methods:
{
OKAction: function()
{
this.$emit('ok');
$('#'+this.id).fadeOut(200);
}
},
template: '
'
});