diff options
Diffstat (limited to 'data/assets/js/admin/tabs/import.js')
-rw-r--r-- | data/assets/js/admin/tabs/import.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/data/assets/js/admin/tabs/import.js b/data/assets/js/admin/tabs/import.js new file mode 100644 index 0000000..2d5bd7f --- /dev/null +++ b/data/assets/js/admin/tabs/import.js @@ -0,0 +1,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; + }); +}); |