aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/javascripts/lib/quick_selection.js
blob: 7fd0399b4cbcd24c99bab05fb36e302f8950c30e (plain)
1
2
3
4
5
6
7
const QuickSelection = {
    update: function (html) {
        jQuery('#quickSelectionWrap').replaceWith(html);
    }
};

export default QuickSelection;