diff --git a/js/plugins/media.fromurl.js b/js/plugins/media.fromurl.js
deleted file mode 100644
index f618e23..0000000
--- a/js/plugins/media.fromurl.js
+++ /dev/null
@@ -1,29 +0,0 @@
-
-(function ($) {
-namespace('Drupal.media.browser.plugin');
-
-Drupal.media.browser.plugin.fromurl = function (mediaBrowser, options) {
-  return {
-    init: function () {
-      tabset = mediaBrowser.getTabset();
-      tabset.tabs('add', '#fromurl', 'From URL');
-      mediaBrowser.listen('tabs.show', function (e, id) {
-        if (id == 'fromurl') {
-          // We only need to set this once.
-          // We probably could set it upon load.
-          if (mediaBrowser.getActivePanel().html() == '') {
-            mediaBrowser.getActivePanel().html(options.fromUrlForm);
-          }
-        }
-      });
-    }
-  };
-};
-
-// For now, I guess self registration makes sense.
-// Really though, we should be doing it via drupal_add_js and some settings
-// from the drupal variable.
-// @todo: needs a review.
-Drupal.media.browser.register('fromurl', Drupal.media.browser.plugin.fromurl, {});
-
-})(jQuery);
diff --git a/js/plugins/media.upload.js b/js/plugins/media.upload.js
deleted file mode 100644
index d57b9de..0000000
--- a/js/plugins/media.upload.js
+++ /dev/null
@@ -1,30 +0,0 @@
-
-(function ($) {
-namespace('Drupal.media.browser.plugin');
-
-Drupal.media.browser.plugin.upload = function (mediaBrowser, options) {
-  return {
-    /* Abstract */
-    init: function () {
-      tabset = mediaBrowser.getTabset();
-      tabset.tabs('add', '#upload', Drupal.t('Upload'));
-      mediaBrowser.listen('tabs.show', function (e, id) {
-        if (id == 'upload') {
-          // We only need to set this once.
-          // We probably could set it upon load.
-          if (mediaBrowser.getActivePanel().html() == '') {
-            mediaBrowser.getActivePanel().html(options.uploadForm);
-          }
-        }
-      });
-    }
-  };
-};
-
-// For now, I guess self registration makes sense.
-// Really though, we should be doing it via drupal_add_js and some settings
-// from the drupal variable.
-// @todo: needs a review.
-Drupal.media.browser.register('upload', Drupal.media.browser.plugin.upload, {});
-
-})(jQuery);
