SectionList: whitespace
This commit is contained in:
@ -95,11 +95,11 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
listChoose: function (evt) {
|
listChoose: function(evt) {
|
||||||
var id = Number(evt.item.firstChild.getAttribute('sectionid'))
|
var id = Number(evt.item.firstChild.getAttribute('sectionid'))
|
||||||
this.selectSection(id)
|
this.selectSection(id)
|
||||||
},
|
},
|
||||||
listItemClasses: function (id, hovering) {
|
listItemClasses: function(id, hovering) {
|
||||||
if (id === this.selectedSectionID) {
|
if (id === this.selectedSectionID) {
|
||||||
return 'primary'
|
return 'primary'
|
||||||
} else if (hovering) {
|
} else if (hovering) {
|
||||||
@ -108,11 +108,11 @@ export default {
|
|||||||
return ''
|
return ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
popInfo: function (id) {
|
popInfo: function(id) {
|
||||||
this.selectSection(id)
|
this.selectSection(id)
|
||||||
this.showSectionPopup = true
|
this.showSectionPopup = true
|
||||||
},
|
},
|
||||||
popDelete: function (id) {
|
popDelete: function(id) {
|
||||||
this.selectSection(id)
|
this.selectSection(id)
|
||||||
this.showDeleteSectionPopup = true
|
this.showDeleteSectionPopup = true
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user