diff --git a/src/assets/js/backend_calendar_table_view.js b/src/assets/js/backend_calendar_table_view.js
index cd5e1642..9131301e 100644
--- a/src/assets/js/backend_calendar_table_view.js
+++ b/src/assets/js/backend_calendar_table_view.js
@@ -329,29 +329,6 @@ window.BackendCalendarTableView = window.BackendCalendarTableView || {};
}, 'json').fail(GeneralFunctions.ajaxFailureHandler);
}
});
-
- $calendar.on('mouseenter', 'table.slots tbody td', function() {
- if ($(this).index() === 0) {
- return; // Do not add the button to the time column.
- }
-
- var $button = $('');
-
- $button.html('');
-
- $(this).append($button);
- });
-
- $calendar.on('mouseleave', 'table.slots tbody td', function() {
- $(this).find('.add-appointment-shortcut').remove();
- });
-
- $calendar.on('click', '.add-appointment-shortcut', function() {
- $(this)
- .remove()
- .parent()
- .trigger('click');
- });
}
/**