aboutsummaryrefslogtreecommitdiff
path: root/data/assets/js/admin/tabs/import.js
blob: 8027dcd2974f4fac73369e71f8d05409ebebd7e6 (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() {
    $('#export-posts-form').submit();

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