Changed: photoswipe > lightGallery

This commit is contained in:
RainLoop Team 2015-08-31 23:13:59 +03:00
parent 9b6b68e72b
commit fc827326c4
51 changed files with 7754 additions and 37 deletions

View file

@ -241,26 +241,6 @@
return aResult;
};
FolderUserStore.prototype.reComputeFolderListSubFolders = function ()
{
return;
var
func = function (aList) {
_.each(aList, function (oFolder) {
if (oFolder && oFolder.subFolders)
{
func(oFolder.subFolders());
oFolder.subFolders.valueHasMutated();
}
});
}
;
func(this.folderList());
};
module.exports = new FolderUserStore();
}());