blob: 66caf59d8f66a702027289f2a5cfc84c6019bd56 [file] [log] [blame]
Ben Murdoch61f157c2016-09-16 13:49:30 +01001// Copyright 2015 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5"use strict";
6
7class EmptyView extends View {
8 constructor(id, broker) {
9 super(id, broker);
10 this.svg = this.divElement.append("svg").attr('version','1.1').attr("width", "100%");
11 }
12
13 initializeContent(data, rememberedSelection) {
14 this.svg.attr("height", document.documentElement.clientHeight + "px");
15 }
16
17 deleteContent() {
18 }
19}