59 lines
812 B
JavaScript
59 lines
812 B
JavaScript
var sectionLanguagesComponent = {
|
|
template: '#section-languages-template',
|
|
|
|
|
|
|
|
mounted: function()
|
|
{
|
|
|
|
},
|
|
|
|
|
|
|
|
destroyed: function()
|
|
{
|
|
|
|
},
|
|
|
|
|
|
|
|
data: function()
|
|
{
|
|
return {
|
|
item: {}
|
|
};
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
addLanguage: function()
|
|
{
|
|
var item = models.newDefaultLanguage();
|
|
this.$root.sections.languages.push(item);
|
|
},
|
|
|
|
|
|
deleteClicked: function(index)
|
|
{
|
|
var response = confirm("Are you sure you want to delete this language?");
|
|
|
|
if (response == true)
|
|
{
|
|
this.$root.sections.languages.splice(index, 1);
|
|
}
|
|
},
|
|
|
|
|
|
moveUpClicked: function(index)
|
|
{
|
|
this.$root.moveArrayPosition(this.$root.sections.languages, index, index - 1);
|
|
},
|
|
|
|
|
|
moveDownClicked: function(index)
|
|
{
|
|
this.$root.moveArrayPosition(this.$root.sections.languages, index, index + 1);
|
|
}
|
|
}
|
|
}; |