1// 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}
20