10 lines
312 B
JavaScript
10 lines
312 B
JavaScript
document.addEventListener('DOMContentLoaded', function () {
|
|
app.initialized().then(function (client) {
|
|
console.log('KB initialized');
|
|
|
|
document.getElementById('insert-ka-btn').addEventListener('click', function() {
|
|
alert('Insert KA# - to be implemented');
|
|
});
|
|
|
|
});
|
|
}); |