Add run-001 execution outputs and issue body draft
This commit is contained in:
20
docs/run-001/05-execution/README.md
Normal file
20
docs/run-001/05-execution/README.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# Execution Outputs
|
||||
|
||||
이 폴더는 `run-001`의 실제 후반부 실행 결과를 저장한다.
|
||||
|
||||
## 포함 파일
|
||||
- `final.html`: 실제 렌더 결과 HTML
|
||||
- `generated_html.json`: body/sidebar/footer 생성 조각
|
||||
- `measurement.json`: 렌더 측정 결과
|
||||
- `context.json`: 실행 시점의 누적 컨텍스트
|
||||
|
||||
## 실행 방식
|
||||
- `Kei API` 없이 `stage-1a-topics.json` + `stage-1b-refined-concepts.json`을 입력으로 사용
|
||||
- `scripts/run_from_artifacts.py` 브리지 경로 사용
|
||||
- 후반부는 기존 `design_agent` 코드 자산 활용
|
||||
|
||||
## 판정 요약
|
||||
- 실행 경로 검증: 통과
|
||||
- 렌더링/측정: 통과
|
||||
- 내용 보존 검증: 실패
|
||||
- 최종 판정: revise
|
||||
496
docs/run-001/05-execution/context.json
Normal file
496
docs/run-001/05-execution/context.json
Normal file
File diff suppressed because one or more lines are too long
407
docs/run-001/05-execution/final.html
Normal file
407
docs/run-001/05-execution/final.html
Normal file
@@ -0,0 +1,407 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>건설산업 DX의 올바른 이해</title>
|
||||
<style>
|
||||
/* Design Agent — 디자인 토큰 */
|
||||
/* CLAUDE.md에 정의된 디자인 원칙을 CSS 변수로 구현 */
|
||||
|
||||
:root {
|
||||
/* 색상 */
|
||||
--color-primary: #1e293b;
|
||||
--color-accent: #2563eb;
|
||||
--color-neutral: #64748b;
|
||||
--color-bg: #ffffff;
|
||||
--color-bg-subtle: #f8fafc;
|
||||
--color-border: #e2e8f0;
|
||||
--color-danger: #dc2626;
|
||||
--color-success: #16a34a;
|
||||
--color-text: #1e293b;
|
||||
--color-text-secondary: #64748b;
|
||||
--color-text-light: #94a3b8;
|
||||
|
||||
/* 폰트 크기 */
|
||||
--font-title: 2rem;
|
||||
--font-subtitle: 1.25rem;
|
||||
--font-body: 0.95rem;
|
||||
--font-caption: 0.8rem;
|
||||
--font-small: 0.7rem;
|
||||
|
||||
/* 폰트 두께 */
|
||||
--weight-normal: 400;
|
||||
--weight-medium: 500;
|
||||
--weight-bold: 700;
|
||||
--weight-black: 900;
|
||||
|
||||
/* 여백 */
|
||||
--spacing-page: 40px;
|
||||
--spacing-block: 20px;
|
||||
--spacing-inner: 16px;
|
||||
--spacing-small: 8px;
|
||||
|
||||
/* 기타 */
|
||||
--radius: 6px;
|
||||
--border-width: 1px;
|
||||
--accent-border: 3px;
|
||||
--line-height-ko: 1.7;
|
||||
}
|
||||
|
||||
/* Design Agent — 기본 슬라이드 스타일 */
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* 슬라이드 컨테이너: 16:9 고정 비율 */
|
||||
.slide {
|
||||
width: 1280px;
|
||||
height: 720px;
|
||||
aspect-ratio: 16 / 9;
|
||||
overflow: hidden;
|
||||
background: var(--color-bg);
|
||||
font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans KR', sans-serif;
|
||||
color: var(--color-text);
|
||||
font-size: var(--font-body);
|
||||
line-height: var(--line-height-ko);
|
||||
word-break: keep-all;
|
||||
padding: var(--spacing-page);
|
||||
display: grid;
|
||||
gap: var(--spacing-block);
|
||||
}
|
||||
|
||||
/* 슬라이드 제목 */
|
||||
.slide-title {
|
||||
font-size: var(--font-title);
|
||||
font-weight: var(--weight-black);
|
||||
color: var(--color-primary);
|
||||
border-bottom: var(--accent-border) solid var(--color-accent);
|
||||
padding-bottom: var(--spacing-small);
|
||||
}
|
||||
|
||||
/* 섹션 제목 */
|
||||
.section-title {
|
||||
font-size: var(--font-subtitle);
|
||||
font-weight: var(--weight-bold);
|
||||
color: var(--color-primary);
|
||||
margin-bottom: var(--spacing-small);
|
||||
}
|
||||
|
||||
/* 본문 */
|
||||
.body-text {
|
||||
font-size: var(--font-body);
|
||||
color: var(--color-text);
|
||||
line-height: var(--line-height-ko);
|
||||
}
|
||||
|
||||
/* 캡션/출처 */
|
||||
.caption {
|
||||
font-size: var(--font-caption);
|
||||
color: var(--color-text-light);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* 강조 텍스트 */
|
||||
.highlight {
|
||||
color: var(--color-accent);
|
||||
font-weight: var(--weight-bold);
|
||||
}
|
||||
|
||||
/* 경고/문제 강조 */
|
||||
.danger {
|
||||
color: var(--color-danger);
|
||||
font-weight: var(--weight-bold);
|
||||
}
|
||||
|
||||
/* ── 컨테이너 레이아웃 ── */
|
||||
/* grid area: flex 축소 허용. overflow는 프레임(.slide)에서만 hidden. */
|
||||
/* A-1(Sonnet 디자인 조정)이 텍스트 양에 맞게 CSS를 사전 조정하므로,
|
||||
area 레벨에서는 overflow: visible로 텍스트 잘림을 방지한다. */
|
||||
.slide > div {
|
||||
overflow: visible;
|
||||
min-height: 0;
|
||||
min-width: 0;
|
||||
}
|
||||
/* area 안에서 flex-column 그룹핑된 블록들의 축소 허용 */
|
||||
.slide > div > div {
|
||||
min-height: 0;
|
||||
flex-shrink: 1;
|
||||
}
|
||||
|
||||
|
||||
.slide-1 {
|
||||
grid-template-areas: 'header header' 'body sidebar' 'footer footer';
|
||||
grid-template-columns: 65fr 35fr;
|
||||
grid-template-rows: auto 1fr auto;
|
||||
}
|
||||
.slide-1 .area-body { grid-area: body; }
|
||||
.slide-1 .area-sidebar { grid-area: sidebar; }
|
||||
.slide-1 .area-footer { grid-area: footer; }
|
||||
|
||||
.slide + .slide { margin-top: 40px; }
|
||||
@media print {
|
||||
.slide { page-break-after: always; }
|
||||
.slide + .slide { margin-top: 0; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="slide slide-1">
|
||||
<div class="slide-title" style="grid-area: header;">건설산업 DX의 올바른 이해</div>
|
||||
|
||||
<div class="area-body" style="overflow:hidden;">
|
||||
<div style="width:100%; height:104px; overflow:hidden; background:#f8fafc; border:1px solid #e2e8f0; border-radius:6px; padding:10px 14px;">
|
||||
<div style="font-size:12px; font-weight:bold; color:#334155; margin-bottom:4px;">용어 혼용 문제</div>
|
||||
|
||||
<div style="display:flex; gap:8px; height:100%;">
|
||||
<div style="flex:1; background:#ffffff; border-left:2px solid #94a3b8; padding:6px 8px;">
|
||||
<div style="font-size:10px; font-weight:bold; color:#334155; margin-bottom:2px;">용어의 혼용</div>
|
||||
<div style="font-size:9px; color:#64748b; line-height:1.3;">
|
||||
<div style="padding-left:14px; text-indent:-14px;">• 건설산업의 디지털 전환 논의에서 <strong style="color:#1e293b">DX(Digital Transformation)</strong>와 <strong style="color:#1e293b">BIM(Building Information Modeling)</strong>이 개념적으로 명확히 정립되지 않은채 혼용되어 사용되고 있음</div>
|
||||
<div style="padding-left:14px; text-indent:-14px;">• 이로인해 BIM기술의 도입을 DX의 완성으로 오인하거나, DX를 BIM 기술 도입 수준으로 한정하는 인식 확산</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="flex:1; background:#ffffff; border-left:2px solid #94a3b8; padding:6px 8px;">
|
||||
<div style="font-size:10px; font-weight:bold; color:#334155; margin-bottom:2px;">혼용 대표 사례</div>
|
||||
<div style="font-size:9px; color:#64748b; line-height:1.3;">
|
||||
<div><strong style="color:#1e293b">스마트 건설 활성화 방안(2022.07)</strong> - 추진과제: 건설산업 디지털화, 실행과제: BIM 전면 도입</div>
|
||||
<div><strong style="color:#1e293b">제7차 건설기술진흥 기본계획(2023.12)</strong> - 추진방향: 디지털 전환을 통한 스마트 건설 확산</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="flex:1; background:#ffffff; border-left:2px solid #94a3b8; padding:6px 8px;">
|
||||
<div style="font-size:10px; font-weight:bold; color:#334155; margin-bottom:2px;">해결 방향</div>
|
||||
<div style="font-size:9px; color:#64748b; line-height:1.3;">
|
||||
<div style="padding-left:14px; text-indent:-14px;">• 건설산업의 DX를 올바르게 이해하기 위해 각 용어의 정의, 역할, 상호관계에 대한 체계적 정립 필요</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="height:12px;"></div>
|
||||
<div class="core">
|
||||
<div class="core-header">
|
||||
<div class="core-label">용어 정의</div>
|
||||
<div class="popup-link">DX와 BIM 구분표 보기</div>
|
||||
<details style="position: absolute; top: 40px; right: 18px; width: 400px; z-index: 10;">
|
||||
<summary style="display: none;"></summary>
|
||||
<div style="background: white; border: 1px solid #cbd5e1; border-radius: 6px; padding: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); max-height: 300px; overflow-y: auto;">
|
||||
<table style="width: 100%; font-size: 10px; border-collapse: collapse;">
|
||||
<tr style="background: #f1f5f9;">
|
||||
<th style="padding: 4px; border: 1px solid #cbd5e1; font-weight: 700;">DX</th>
|
||||
<th style="padding: 4px; border: 1px solid #cbd5e1; font-weight: 700;">구분</th>
|
||||
<th style="padding: 4px; border: 1px solid #cbd5e1; font-weight: 700;">BIM</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 4px; border: 1px solid #cbd5e1;"><b>BIM << DX</b>(Engineering + Management 통합)</td>
|
||||
<td style="padding: 4px; border: 1px solid #cbd5e1; text-align: center;"><b>범위</b></td>
|
||||
<td style="padding: 4px; border: 1px solid #cbd5e1;"><b>Only 3D</b>(형상 구현 중심)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 4px; border: 1px solid #cbd5e1;"><b>제작 및 운영</b>(상용 + 전용 40~80개)[Rhino, Sketchup, Blender..] + [EG-BIM 등]</td>
|
||||
<td style="padding: 4px; border: 1px solid #cbd5e1; text-align: center;"><b>S/W</b></td>
|
||||
<td style="padding: 4px; border: 1px solid #cbd5e1;"><b>모델 제작용 상용 SW</b>[Revit, Civil 3D, Navisworks, Autocad]</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 4px; border: 1px solid #cbd5e1;"><b>근본적 문제의식을 통한 개선</b></td>
|
||||
<td style="padding: 4px; border: 1px solid #cbd5e1; text-align: center;"><b>프로세스</b></td>
|
||||
<td style="padding: 4px; border: 1px solid #cbd5e1;"><b>기존 2D 설계 방식 유지</b></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</details>
|
||||
</div>
|
||||
<div class="core-text">
|
||||
<div class="fi">
|
||||
<img id="slide-img-DX1" src="/assets/images/DX1.png">
|
||||
<div class="cap">DX와 핵심기술간 상호관계</div>
|
||||
</div>
|
||||
<div class="bp"><b>건설산업</b></div>
|
||||
<div class="sp">다양한 시설물을 각 산업마다의 광범위한 기술을 통합 및 융합하여 만들어내는 종합산업</div>
|
||||
<div class="sp">목적 시설물의 품질 욕구를 충족시키면서 최단기간내에 최소 비용으로 편리하고 안전하며 우수한 성능의 시설물 완성을 목표로 함</div>
|
||||
|
||||
<div class="bp"><b>BIM(Building Information Modeling) : 디지털 전환을 위한 핵심 기술</b></div>
|
||||
<div class="sp">시설물의 생애주기동안 발생한 모든 정보를 3차원 모델 기반으로 통합·관리하는 정보 관리 도구</div>
|
||||
<div class="sp">건설 정보와 절차를 표준화된 방식으로 연계하고 디지털 협업이 가능하도록 하는 핵심 인프라 기술</div>
|
||||
<div class="sp">출처: 건설산업 BIM 기본지침, 국토교통부, 2020</div>
|
||||
|
||||
<div class="bp"><b>DX(Digital Transformation) : 산업 패러다임의 변화</b></div>
|
||||
<div class="sp">디지털 기술을 기반으로 산업 전반의 업무방식과 가치 창출 구조를 전환하는 과정 및 결과</div>
|
||||
<div class="sp">단순한 기술 도입이 아닌, 고객 가치와 의사결정 방식의 근본적인 변화로 산업의 새로운 방향을 정립하는 것을 의미함</div>
|
||||
<div class="sp">출처: Digital Transformation, IBM Institute for Business Value, 2011 / What is Digital Transformation?, Agile Elephant, 2015</div>
|
||||
|
||||
<div class="bp">DX는 BIM과 같은 디지털기술을 기반으로 산업 전반의 프로세스를 혁신하는 상위개념</div>
|
||||
<div class="bp">건설산업의 DX는 GIS(공간정보), BIM, 디지털 트윈(가상환경)의 기술융합을 통해서만 실현 또는 구현 가능</div>
|
||||
<div class="sp"><b>GIS의 역할</b> : 지리적 데이터를 공간 분석하여 시각적으로 표현, 위치기반 정보 제공</div>
|
||||
<div class="sp"><b>BIM의 역할</b> : 형상정보와 내용정보가 포함된 3D모델로, 건설 정보 기반의 Process와 Product를 제공</div>
|
||||
</div>
|
||||
<div class="key-msg">
|
||||
건설산업에서 DX는 상위 개념이고 BIM은 그 디지털 전환을 가능하게 하는 핵심 기술 중 하나다.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.core {
|
||||
width: 100%;
|
||||
max-height: 358px;
|
||||
margin-top: 0;
|
||||
font-family: 'Pretendard Variable', sans-serif;
|
||||
background: #ffffff;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-radius: 8px;
|
||||
padding: 14px 18px;
|
||||
overflow: hidden;
|
||||
word-break: keep-all;
|
||||
}
|
||||
.core-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.core-label {
|
||||
background: #1e293b;
|
||||
color: #ffffff;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
padding: 3px 12px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.popup-link {
|
||||
font-size: 10px;
|
||||
color: #2563eb;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.fi {
|
||||
float: right;
|
||||
margin: 60px 0 8px 12px;
|
||||
width: 250px;
|
||||
}
|
||||
.fi img { width: 100%; }
|
||||
.fi .cap {
|
||||
font-size: 9px;
|
||||
color: #94a3b8;
|
||||
text-align: center;
|
||||
margin-top: 1px;
|
||||
}
|
||||
.core-text {
|
||||
font-size: 12px;
|
||||
color: #1e293b;
|
||||
line-height: 1.75;
|
||||
}
|
||||
.bp {
|
||||
padding-left: 14px;
|
||||
text-indent: -14px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.bp::before {
|
||||
content: '•';
|
||||
display: inline-block;
|
||||
width: 14px;
|
||||
text-indent: 0;
|
||||
color: #1e293b;
|
||||
font-weight: 700;
|
||||
}
|
||||
.sp {
|
||||
padding-left: 28px;
|
||||
text-indent: -14px;
|
||||
margin-bottom: 4px;
|
||||
font-size: 11px;
|
||||
color: #475569;
|
||||
}
|
||||
.sp::before {
|
||||
content: '◦';
|
||||
display: inline-block;
|
||||
width: 14px;
|
||||
text-indent: 0;
|
||||
color: #64748b;
|
||||
}
|
||||
.core-text b { font-weight: 700; color: #1e293b; }
|
||||
.key-msg {
|
||||
background: #f0f9ff;
|
||||
border: 2px solid #bae6fd;
|
||||
border-radius: 6px;
|
||||
padding: 5px 12px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
color: #0c4a6e;
|
||||
margin-top: 8px;
|
||||
clear: both;
|
||||
}
|
||||
.key-msg em {
|
||||
color: #dc2626;
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
}
|
||||
</style>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="area-sidebar" style="overflow:hidden;">
|
||||
<div style="width:380px; height:474px; overflow:hidden; padding:14px; box-sizing:border-box; font-family:sans-serif;">
|
||||
<div style="font-size:10px; color:#64748b; margin-bottom:12px; text-align:left;">용어 정의</div>
|
||||
|
||||
<div style="background:#f8fafc; border:1px solid #e2e8f0; border-radius:8px; padding:14px; margin-bottom:10px;">
|
||||
<div style="font-size:11px; font-weight:bold; color:#1e293b; margin-bottom:8px;">건설산업</div>
|
||||
<div style="padding-left:14px; text-indent:-14px; margin-bottom:4px; font-size:10px; color:#475569; line-height:1.6;">• 다양한 시설물을 각 산업마다의 광범위한 기술을 통합 및 융합하여 만들어내는 종합산업</div>
|
||||
<div style="padding-left:14px; text-indent:-14px; margin-bottom:4px; font-size:10px; color:#475569; line-height:1.6;">• 목적 시설물의 품질 욕구를 충족시키면서 최단기간내에 최소 비용으로 편리하고 안전하며 우수한 성능의 시설물 완성을 목표로 함</div>
|
||||
</div>
|
||||
|
||||
<div style="background:#f8fafc; border:1px solid #e2e8f0; border-radius:8px; padding:14px; margin-bottom:10px;">
|
||||
<div style="font-size:11px; font-weight:bold; color:#1e293b; margin-bottom:8px;">BIM(Building Information Modeling) : 디지털 전환을 위한 핵심 기술</div>
|
||||
<div style="padding-left:14px; text-indent:-14px; margin-bottom:4px; font-size:10px; color:#475569; line-height:1.6;">• 시설물의 생애주기동안 발생한 모든 정보를 3차원 모델 기반으로 통합·관리하는 정보 관리 도구</div>
|
||||
<div style="padding-left:14px; text-indent:-14px; margin-bottom:4px; font-size:10px; color:#475569; line-height:1.6;">• 건설 정보와 절차를 표준화된 방식으로 연계하고 디지털 협업이 가능하도록 하는 핵심 인프라 기술</div>
|
||||
<div style="font-size:9px; color:#94a3b8; font-style:italic; margin-top:8px; border-top:1px solid #e2e8f0; padding-top:6px;">출처: 건설산업 BIM 기본지침, 국토교통부, 2020</div>
|
||||
</div>
|
||||
|
||||
<div style="background:#f8fafc; border:1px solid #e2e8f0; border-radius:8px; padding:14px;">
|
||||
<div style="font-size:11px; font-weight:bold; color:#1e293b; margin-bottom:8px;">DX(Digital Transformation) : 산업 패러다임의 변화</div>
|
||||
<div style="padding-left:14px; text-indent:-14px; margin-bottom:4px; font-size:10px; color:#475569; line-height:1.6;">• 디지털 기술을 기반으로 산업 전반의 업무방식과 가치 창출 구조를 전환하는 과정 및 결과</div>
|
||||
<div style="padding-left:14px; text-indent:-14px; margin-bottom:4px; font-size:10px; color:#475569; line-height:1.6;">• 단순한 기술 도입이 아닌, 고객 가치와 의사결정 방식의 근본적인 변화로 산업의 새로운 방향을 정립하는 것을 의미함</div>
|
||||
<div style="font-size:9px; color:#94a3b8; font-style:italic; margin-top:8px; border-top:1px solid #e2e8f0; padding-top:6px;">출처: Digital Transformation, IBM Institute for Business Value, 2011 / What is Digital Transformation?, Agile Elephant, 2015</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="area-footer" style="overflow:hidden;">
|
||||
<div class="block-banner-grad">
|
||||
<div class="bg-text">BIM은 건설산업의 디지털전환(DX)을 수행하는 과정에서 **가장 기초가 되는 일부분**</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.block-banner-grad {
|
||||
background: linear-gradient(135deg, #006aff 0%, #00aaff 100%);
|
||||
border-radius: 8px;
|
||||
padding: 14px 30px;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
height: 60px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.bg-text {
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
line-height: 1.5;
|
||||
}
|
||||
</style>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
window.onbeforeprint = function() {
|
||||
document.querySelectorAll('details').forEach(function(d) { d.open = true; });
|
||||
};
|
||||
window.onafterprint = function() {
|
||||
document.querySelectorAll('details').forEach(function(d) { d.open = false; });
|
||||
};
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
6
docs/run-001/05-execution/generated_html.json
Normal file
6
docs/run-001/05-execution/generated_html.json
Normal file
File diff suppressed because one or more lines are too long
44
docs/run-001/05-execution/measurement.json
Normal file
44
docs/run-001/05-execution/measurement.json
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"containers": {},
|
||||
"slide": {
|
||||
"clientHeight": 720,
|
||||
"excess_px": 0,
|
||||
"overflowed": false,
|
||||
"scrollHeight": 720
|
||||
},
|
||||
"zones": {
|
||||
"body": {
|
||||
"block_count": 0,
|
||||
"blocks": [],
|
||||
"clientHeight": 475,
|
||||
"excess_px": 0,
|
||||
"overflowed": false,
|
||||
"scrollHeight": 475
|
||||
},
|
||||
"footer": {
|
||||
"block_count": 1,
|
||||
"blocks": [
|
||||
{
|
||||
"block_type": "banner-grad",
|
||||
"clientHeight": 60,
|
||||
"excess_px": 0,
|
||||
"offsetHeight": 60,
|
||||
"overflowed": false,
|
||||
"scrollHeight": 60
|
||||
}
|
||||
],
|
||||
"clientHeight": 60,
|
||||
"excess_px": 0,
|
||||
"overflowed": false,
|
||||
"scrollHeight": 60
|
||||
},
|
||||
"sidebar": {
|
||||
"block_count": 0,
|
||||
"blocks": [],
|
||||
"clientHeight": 475,
|
||||
"excess_px": 0,
|
||||
"overflowed": false,
|
||||
"scrollHeight": 475
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user