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
git clone https://github.com/fex-team/kityminder-core | |
cd kityminder-core | |
npm install | |
bower install | |
git submodule init | |
git submodule update | |
cd lib/kity | |
npm install | |
npm install -g grunt-cli | |
grunt |
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 find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \; |
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
/** | |
* 拖动上下文,贯穿拖动排序的整个生命周期 | |
*/ | |
export interface DraggingContext { | |
startPosition: [number, number]; | |
activated: boolean; | |
source: HTMLTableRowElement; | |
sourceIndex: number; | |
sourceHeight: number; |
OlderNewer