// Copyright (c) IPython Development Team. // Distributed under the terms of the Modified BSD License. define([ 'jquery', 'notebook/js/celltoolbar', 'base/js/dialog', ], function($, celltoolbar, dialog) { "use strict"; var CellToolbar = celltoolbar.CellToolbar; var raw_edit = function(cell){ dialog.edit_metadata(cell.metadata, function (md) { cell.metadata = md; }); }; var add_raw_edit_button = function(div, cell) { var button_container = $(div); var button = $('