1515
1616************************************************************************ */
1717
18- qx . Class . define ( "osparc.vipStore.VIPStore " , {
18+ qx . Class . define ( "osparc.vipMarket.VIPMarket " , {
1919 extend : qx . ui . core . Widget ,
2020
2121 construct : function ( ) {
@@ -68,7 +68,7 @@ qx.Class.define("osparc.vipStore.VIPStore", {
6868 } ) ;
6969 this . _add ( toolbarLayout ) ;
7070
71- const sortModelsButtons = this . __sortByButton = new osparc . vipStore . SortModelsButtons ( ) . set ( {
71+ const sortModelsButtons = this . __sortByButton = new osparc . vipMarket . SortModelsButtons ( ) . set ( {
7272 alignY : "bottom" ,
7373 maxHeight : 27 ,
7474 } ) ;
@@ -98,7 +98,7 @@ qx.Class.define("osparc.vipStore.VIPStore", {
9898 const anatomicalModelsModel = this . __anatomicalModelsModel = new qx . data . Array ( ) ;
9999 const membersCtrl = new qx . data . controller . List ( anatomicalModelsModel , modelsUIList , "name" ) ;
100100 membersCtrl . setDelegate ( {
101- createItem : ( ) => new osparc . vipStore . AnatomicalModelListItem ( ) ,
101+ createItem : ( ) => new osparc . vipMarket . AnatomicalModelListItem ( ) ,
102102 bindItem : ( ctrl , item , id ) => {
103103 ctrl . bindProperty ( "id" , "modelId" , null , item , id ) ;
104104 ctrl . bindProperty ( "thumbnail" , "thumbnail" , null , item , id ) ;
@@ -118,7 +118,7 @@ qx.Class.define("osparc.vipStore.VIPStore", {
118118 } ;
119119 this . __anatomicalModelsModel . append ( qx . data . marshal . Json . createModel ( loadingModel ) ) ;
120120
121- const anatomicModelDetails = new osparc . vipStore . AnatomicalModelDetails ( ) . set ( {
121+ const anatomicModelDetails = new osparc . vipMarket . AnatomicalModelDetails ( ) . set ( {
122122 padding : 20 ,
123123 } ) ;
124124 modelsLayout . add ( anatomicModelDetails , {
0 commit comments