aboutsummaryrefslogtreecommitdiff
path: root/data/assets/js/admin/tabs/import.js
blob: 2d5bd7fb8052c950efa80937fe4f2036410dcd9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
jQuery(function($) {
  "use strict";

  $('#import-posts').click(function() {
    alert('TODO: import');

    // stop event
    return false;
  });

  $('#export-posts').click(function() {
    alert('TODO: export posts');

    // stop event
    return false;
  });
});