function try_fetch_topic()

in excel-addin/src/taskpane/taskpane.js [322:328]


function try_fetch_topic() {
    var topic = document.getElementById("topic-box").value;
    if (topic === '') {
        return null;
    }
    return topic;
}