summaryrefslogtreecommitdiff
path: root/assets/js/components/project-creation-select-options.js
blob: 618ec86ca02cce8e158fabcc7c1923f66ed645ed (plain)
1
2
3
4
5
6
7
8
9
KB.onChange('.js-project-creation-select-options', function (element) {
    var projectId = element.value;

    if (projectId === '0') {
        KB.find('.js-project-creation-options').hide();
    } else {
        KB.find('.js-project-creation-options').show();
    }
});