You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
717 B
19 lines
717 B
5 years ago
|
import Store from '../store';
|
||
|
import locale from '../locale/locale';
|
||
|
import { replaceHtml } from '../utils/util';
|
||
|
import rhchInit from '../global/rhchInit';
|
||
|
import luckysheetConfigsetting from './luckysheetConfigsetting';
|
||
|
|
||
|
|
||
|
export function zoomInitial(){
|
||
|
//zoom
|
||
|
Store.rowHeaderWidth = luckysheetConfigsetting.rowHeaderWidth * Store.zoomRatio;
|
||
|
Store.columeHeaderHeight = luckysheetConfigsetting.columeHeaderHeight *Store.zoomRatio;
|
||
|
$("#luckysheet-rows-h").width((Store.rowHeaderWidth-1.5));
|
||
|
$("#luckysheet-cols-h-c").height((Store.columeHeaderHeight-1.5));
|
||
|
$("#luckysheet-left-top").css({width:Store.rowHeaderWidth-1.5, height:Store.columeHeaderHeight-1.5});
|
||
|
}
|
||
|
|
||
|
export function zoomChange(){
|
||
|
|
||
|
}
|