git-svn-id: https://msi/svn/firstRepo/WebClient/branches/Manut_3.0.1@64 0f545695-f87b-41b6-9a03-7f16563b5454

This commit is contained in:
2016-02-09 08:14:16 +00:00
parent 327c2e577d
commit b205668910
3 changed files with 13 additions and 25 deletions
+9 -9
View File
@@ -58,7 +58,7 @@ define(['jquery', 'underscore', 'backbone', 'text!modules/item/itemViewTemplate.
var self = this;
$('body').scrollTop(0);
this.galleryWall = new Freewall("#Gallery");
/*this.galleryWall = new Freewall("#Gallery");
this.galleryWall.reset({
selector: '.brick',
animate: true,
@@ -69,12 +69,12 @@ define(['jquery', 'underscore', 'backbone', 'text!modules/item/itemViewTemplate.
}
});
var imgurl = Images.getThumb(48);
var imgurl = Images.getThumb(48);*/
var images = this.galleryWall.container.find('.brick');
/*var images = this.galleryWall.container.find('.brick');
images.find('img').load(function() {
self.galleryWall.fitWidth();
});
});*/
$.mobile.loading('hide');
@@ -94,14 +94,14 @@ define(['jquery', 'underscore', 'backbone', 'text!modules/item/itemViewTemplate.
ricetta: self.collRicetta.toJSON()[0],
ingredienti: self.collIngredienti.toJSON(),
profile: Profile,
images: Images,
//images: Images,
}));
self.scrollPositions = [];
self.$arrayContent = self.$el.find('div[data-role="content"]');
self.$arrayNavBar = self.$el.find('div[data-role="navbar"] a');
self.$photos = self.$el.find('#contentFoto a');
/*self.$photos = self.$el.find('#contentFoto a');
self.$el.find('#contentFoto a img').load(function(){
countImgLoaded++;
if(self.$photos.length == countImgLoaded)
@@ -127,7 +127,7 @@ define(['jquery', 'underscore', 'backbone', 'text!modules/item/itemViewTemplate.
});
});
*/
for (var i = self.$arrayContent.length - 1; i >= 0; i--) {
self.scrollPositions.push(0);
};
@@ -181,8 +181,8 @@ define(['jquery', 'underscore', 'backbone', 'text!modules/item/itemViewTemplate.
$(this.$arrayContent[this.indexContent]).show();
$(this.$arrayNavBar[this.indexContent]).addClass('ui-btn-active');
$(this.$arrayNavBar[this.indexContent]).addClass('ui-state-persist');
if(this.indexContent == 2)
this.galleryWall.fitWidth();
/*if(this.indexContent == 2)
this.galleryWall.fitWidth();*/
}
});
return ItemView;