1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 05:15:25 +02:00

Refactoring, moved all assets into /assets, all angular files moved to /app.

This commit is contained in:
Kevan Ahlquist 2014-11-02 23:56:39 -06:00
parent 2b2d4152a5
commit a9a36323eb
18 changed files with 12 additions and 429 deletions

View file

@ -1,21 +0,0 @@
function ImageViewModel(data) {
this.Id = data.Id;
this.Tag = data.Tag;
this.Repository = data.Repository;
this.Created = data.Created;
this.Checked = false;
this.RepoTags = data.RepoTags;
this.VirtualSize = data.VirtualSize;
}
function ContainerViewModel(data) {
this.Id = data.Id;
this.Image = data.Image;
this.Command = data.Command;
this.Created = data.Created;
this.SizeRw = data.SizeRw;
this.Status = data.Status;
this.Checked = false;
this.Names = data.Names;
}