|
@@ -22,13 +22,13 @@ $(function() {
|
|
|
function refreshColumn(columnLength){
|
|
|
for(var i=1;i<=columnLength;i++){
|
|
|
var isAccept=localStorage.getItem("curingColumn_"+i);
|
|
|
- console.log(isAccept==null);
|
|
|
+
|
|
|
isColumnShow(isAccept,i);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
function isColumnShow(isAccept,column){
|
|
|
- if (typeof(isAccept)==null||isAccept) {
|
|
|
+ if (isAccept==null||isAccept) {
|
|
|
|
|
|
$('table[columnShow] tr').find('th:eq('+column+')').show();
|
|
|
$('table[columnShow] tr').find('td:eq('+column+')').show();
|