summaryrefslogtreecommitdiff
path: root/static/js/pages/scroll_pane_init.js
blob: 1508418d084f6f3a43fd6b003ff8a59e75e39f57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Optional jScrollPane initializer for legacy pages that use `.scroll-pane`.
// Keep it defensive: some pages may not load the plugin.

(function() {
  if (typeof jQuery !== 'function') { return; }

  jQuery(function() {
    if (jQuery.fn && typeof jQuery.fn.jScrollPane === 'function') {
      jQuery('.scroll-pane').jScrollPane();
    }
  });
})();