Skip to content
Extraits de code Groupes Projets
Valider abde3244 rédigé par Raphael Sofaer's avatar Raphael Sofaer
Parcourir les fichiers

InfiniteScroll#options doesn't need to be a function

parent 89ec768d
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
(function() { (function() {
var InfiniteScroll = function() { }; var InfiniteScroll = function() { };
InfiniteScroll.prototype.options = function(){ InfiniteScroll.prototype.options =
return { {
navSelector : "#pagination", navSelector : "#pagination",
nextSelector : ".paginate", nextSelector : ".paginate",
itemSelector : ".stream_element", itemSelector : ".stream_element",
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
loadingText: "", loadingText: "",
loadingImg: '/images/ajax-loader.gif' loadingImg: '/images/ajax-loader.gif'
}; };
};
InfiniteScroll.prototype.reInitialize = function(){ InfiniteScroll.prototype.reInitialize = function(){
this.clear(); this.clear();
...@@ -30,7 +29,7 @@ ...@@ -30,7 +29,7 @@
InfiniteScroll.prototype.initialize = function(){ InfiniteScroll.prototype.initialize = function(){
if($('#main_stream').length !== 0){ if($('#main_stream').length !== 0){
$('#main_stream').infinitescroll(this.options(), function() { $('#main_stream').infinitescroll(this.options, function() {
Diaspora.widgets.publish("stream/scrolled"); Diaspora.widgets.publish("stream/scrolled");
}); });
} }
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter