DEV/other things
-
라즈베리파이 우분투 설치하기DEV/other things 2024. 12. 16. 16:07
https://www.raspberrypi.com/software/ Raspberry Pi OS – Raspberry PiFrom industries large and small, to the kitchen table tinkerer, to the classroom coder, we make computing accessible and affordable for everybody.www.raspberrypi.com Raspberry Pi Imager 다운로드. sd카드 연결 후 Install > 운영체제 > Other general-purpose OS > Ubuntu 선택 후 설치
-
trumbowyg color picker bugDEV/other things 2024. 9. 4. 15:17
Problem with color selection. trumbowyg.color.js// Original codefunction colorTagHandler(element, trumbowyg) { var tags = []; if (!element.style) { return tags; } // background color if (element.style.backgroundColor !== '') { var backColor = colorToHex(element.style.backgroundColor); if (trumbowyg.o.plugins.colors.colorList.indexOf(backColor) >= 0) { ..
-
trumbowyg table bugDEV/other things 2024. 9. 4. 15:15
How to fix a bug where the table width changes randomly. trumbowyg.table.js// Original codevar setColWidths = function ($table, tableState, isUnitPercent = false) { var $colgroup = $('colgroup', $table); var $cols = $('col', $colgroup); var tableWidth = $table[0].offsetWidth; $table.css({ maxWidth: $table[0].offsetWidth, }); var columnCount = tableState[0].length; var..