Added semicolons
This commit is contained in:
@@ -34,22 +34,22 @@ interface TabData {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function sendValue() {
|
function sendValue() {
|
||||||
emit('update', data.value)
|
emit('update', data.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
function sendNewValue(newValue : string) {
|
function sendNewValue(newValue : string) {
|
||||||
data.value = newValue
|
data.value = newValue;
|
||||||
emit('update', data.value)
|
emit('update', data.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateData(newData: string) {
|
function updateData(newData: string) {
|
||||||
data.value = newData
|
data.value = newData;
|
||||||
inputFile.value.value = ''
|
inputFile.value.value = '';
|
||||||
sendValue()
|
sendValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
function clear() {
|
function clear() {
|
||||||
updateData('')
|
updateData('');
|
||||||
}
|
}
|
||||||
|
|
||||||
function canBeFormatted() {
|
function canBeFormatted() {
|
||||||
|
|||||||
Reference in New Issue
Block a user