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

Add batch ops to images

This commit is contained in:
Michael Crosby 2013-06-18 19:08:17 -09:00
parent 86d7c4db5d
commit b069616da2
5 changed files with 41 additions and 5 deletions

8
js/viewmodel.js Normal file
View file

@ -0,0 +1,8 @@
function ImageViewModel(data) {
this.Id = data.Id;
this.Tag = data.Tag;
this.Repository = data.Repository;
this.Created = data.Created;
this.Checked = false;
}