To use the CKeditor without the top and bottom toolbars, do the following: config.removePlugins = “toolbar,elementspath” config.resize_enabled = false This will remove both the capability to resize the dialog and remove the grey toolbar at the bottom, as well as the entire top toolbar, without the need for CSS modifications. If you’re using the […]
Tag: resize
Make Google Charts Responsive
To make google charts responsive to browser resizing and mobile devises, set the width option to 100%: var options = {width: “100%”} Then, redraw the chart every time the page is resized: $(window).resize(function(){ drawChart(); });