diff --git a/context_field.css b/context_field.css
deleted file mode 100644
index 0160b00..0000000
--- a/context_field.css
+++ /dev/null
@@ -1,37 +0,0 @@
-#context_field-context-ui {
-	width: 550px;
-	display:none;
-}
-
-#context_field-context-ui ul {
-	margin: 0;
-}
-#context_field-context-ui ul li {
-	padding: 0;
-	list-style: none;
-}
-#context_field-context-ui div.admin-pane-condition,
-#context_field-context-ui div.admin-pane-reaction-theme,
-#context_field-context-ui div.admin-pane-reaction-theme_html {
-	display: none;
-}
-
-.boxes-box-editing {
-  background: none repeat scroll 0 0 #EEEEDD;
-  display: inline-block;
-  padding: 3px;
-}
-
-body.context-editing div.contextual-links-wrapper {
-	right: 0;
-	top: 40px;
-}
-
-form.context-editing li.context-editable {
-  opacity: .2;
-}
-form.context-editing li.context-editing {
-  visibility : visible;
-  display : list-item;
-  opacity: 1;
-}
diff --git a/context_field.js b/context_field.js
deleted file mode 100644
index bcad675..0000000
--- a/context_field.js
+++ /dev/null
@@ -1,55 +0,0 @@
-(function ($) {
-  Drupal.behaviors.context_field = { attach: function(context) {
-    $('#context_field-context-ui').dialog({
-      width: 350,
-      height: 450,
-      //position: 'left',
-      position: [0, 75],
-      zIndex: 0,
-      draggable: false,
-      resizable: false,
-      title: 'Context Editor',
-      hide: 'slide',
-      open: function () {
-        $('#context_field-context-ui').show();
-        $('#context_field-context-ui').parent().css('position', 'fixed');
-
-        $('div.ui-dialog-titlebar').click(function () {
-          $('#context_field-context-ui').toggle(400);
-        });
-
-        $(".context-block-addable").mousedown(function () {
-          $('#context_field-context-ui').attr('location', $('#context_field-context-ui').parent().css('left'));
-          $('#context_field-context-ui').parent().animate({'left':-300}, 1000);
-          $('body').one('mouseup',function () {
-            $('#context_field-context-ui').parent().animate({'left':$('#context_field-context-ui').attr('location')}, 1000);
-          });
-        });
-      },
-      close: function () {
-        window.location.href = $('.tabs.primary li a').first().attr('href');
-      }
-    });
-
-    // Hide the context editor if we're editing or adding a box
-    if ($('#boxes-box-form').length || $('.boxes-box-editing').length) {
-      $('#context_field-context-ui').hide();
-      $('#context-ui-editor .links a.done').click();
-    }
-    else {
-      $('#context_field-context-ui').show();
-    }
-    
-    // Trigger Edit mode if there is only one context
-    if ($('.ui-dialog-content form .links a.edit').size() == 1) {
-    	$('.ui-dialog-content form .links a.edit').first().click();
-    }
-    
-    // Conceal Section title, subtitle and class
-    $('div.context-block-browser').nextAll('.form-item').hide();
-
-    // Add a class to body
-    $('body').once().addClass('context-field-editor');
-  }
-  };
-})(jQuery);
diff --git a/context_field.module b/context_field.module
index 2d4a4f6..303edeb 100644
--- a/context_field.module
+++ b/context_field.module
@@ -27,22 +27,6 @@ function context_field_ctools_plugin_api() {
  * Implementation of hook_menu()
  */
 function context_field_menu() {
-  $items['node/%node/context_field'] = array(    
-    'title' => 'Configure Layout',
-    'access callback' => 'context_field_access_loader',
-    'access arguments' => array(1),
-    'page callback' => 'context_field_node_page_view',
-    'page arguments' => array(1),
-    'type' => MENU_LOCAL_ACTION,
-  );
-  $items['taxonomy/term/%taxonomy_term/context_field'] = array(    
-    'title' => 'Configure Layout',
-    'access callback' => 'context_field_access_loader',
-    'access arguments' => array(2),
-    'page callback' => 'context_field_term_page_view',
-    'page arguments' => array(2),
-    'type' => MENU_LOCAL_ACTION,
-  );
   $items['context_field/autocomplete/node'] = array(
     'title' => 'Node Autocomplete',
     'access arguments' => TRUE,
@@ -59,53 +43,6 @@ function context_field_menu() {
 }
 
 /**
- * Custom access callback used to restrict Context Field tab to content types with the field.
- * This needs to be not based on a fixed field name.
- */
-function context_field_access_loader($entity) {
-  if (user_access('use context field editor') == FALSE) {
-    return FALSE;
-  }
-  else {
-    // TODO: at some point we'll need to alter the path and not use node/%node/context_field
-    // given that path-based contexts set for node/%node will not trigger correctly there
-    if (arg(2) != 'context_field' && context_active_contexts() == array()) {
-      return FALSE;
-    }
-    return TRUE;
-  }
-}
-
-/**
- * Custom callback for the Context Field tab
- * Essentially a slightly altered node view with a modified version of the Context UI editor
- */
-function context_field_node_page_view($node) {
-  // Only append this when no additional params are set so as not
-  // to break any existing behavior (ie when context_block or boxes_delta are set)
-  if (sizeof($_GET) === 1) {
-    // let context_ui know that we are doing an edit
-    context_set('context_ui', 'context_ui_editor_present', TRUE);
-  }
-  return node_page_view($node);
-}
-/**
- * Custom callback for the Context Field tab
- * Essentially a slightly altered term view with a modified version of the Context UI editor
- */
-function context_field_term_page_view($term) {
-  // Only append this when no additional params are set so as not
-  // to break any existing behavior (ie when context_block or boxes_delta are set)
-  if (sizeof($_GET) === 1) {
-    // let context_ui know that we are doing an edit
-    context_set('context_ui', 'context_ui_editor_present', TRUE);
-  }
-  global $language;
-  return taxonomy_term_view($term, 'full', $language);
-}
-
-
-/**
  * Implementation of hook_context_plugins()
  */
 function context_field_context_plugins() {
@@ -636,28 +573,3 @@ function context_field_field_formatter_view($entity_type, $entity, $field, $inst
   return array();
 }
 
-function context_field_page_alter(&$page) {
-  $contexts = context_active_contexts();
-  if (context_isset('context_ui', 'context_ui_editor_present')) {
-    // set a value for which blocks should be allowed in the inline editor
-    //context_set("context_field","allowed_blocks", $instance['settings']['allowed_blocks']);
-
-    //build a inline editor 
-    //$context = context_load($field_value['context']);
-    $contexts = context_active_contexts();
-    $form = drupal_get_form('context_ui_editor', $contexts);
-    //$form = drupal_get_form('context_ui_editor', array($context));
-    $path = drupal_get_path("module", 'context_field');
-    drupal_add_library('system', 'ui.dialog');
-    drupal_add_js($path . '/context_field.js', array('type' => 'file', 'weight' => 50)); 
-    drupal_add_css($path . '/context_field.css');
-
-    $page['content']['context_ui_editor'] = array(
-      0 => array(
-        '#type' => 'markup',
-        '#markup' => '<div style="display:none;" id="context_field-context-ui">' . drupal_render($form) . '</div>',
-      ),
-    );
-  }
-
-}
