This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update | |
sudo apt install build-essential | |
sudo apt install libssl-dev | |
export OPENSSL_ROOT_DIR=/usr/include/openssl | |
wget https://cmake.org/files/v3.29/cmake-3.29.2.tar.gz | |
tar -xzvf cmake-3.29.2.tar.gz | |
cd cmake-3.29.2 | |
./bootstrap | |
make -j$(nproc) | |
sudo make install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div className='delete-button' onClick={() => { if (window.confirm('Are you sure you wish to delete this item?')) this.onCancel(item) } } /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
(function($) { | |
return $.widget('IKS.editHtmlButton', { | |
options: { | |
uuid: '', | |
editable: null | |
}, | |
populateToolbar: function(toolbar) { | |
var button, widget; |