Skip to content

Commit

Permalink
Item11561: fixed installer breakage
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/InfiniteScrollContrib@14077 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
MichaelDaum authored and MichaelDaum committed Feb 24, 2012
1 parent cab1f95 commit 6e1ca62
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 3 additions & 1 deletion data/System/InfiniteScrollContrib.txt
@@ -1,4 +1,4 @@
%META:TOPICINFO{author="micha" comment="save topic" date="1307348209" format="1.1" reprev="7" version="8"}%
%META:TOPICINFO{author="ProjectContributor" comment="save topic" date="1307348209" format="1.1" reprev="7" version="8"}%
---+!! %TOPIC%
%SHORTDESCRIPTION%

Expand Down Expand Up @@ -225,6 +225,8 @@ Example:
| Release: | %$RELEASE% |
| Version: | %$VERSION% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 24 Feb 2012 | fixed syntax error breaking dependency check of configure and pseudo-install |
| 06 Jun 2011 | initial release |
| Dependencies: | %$DEPENDENCIES% |
| Home page: | Foswiki:Extensions/%TOPIC% |
| Support: | Foswiki:Support/%TOPIC% |
4 changes: 2 additions & 2 deletions lib/Foswiki/Contrib/InfiniteScrollContrib.pm
Expand Up @@ -4,12 +4,12 @@ use strict;
use warnings;

our $VERSION = '$Rev$';
our $RELEASE = '1.10';
our $RELEASE = '1.11';
our $SHORTDESCRIPTION = 'Infinite scrolling layouts';
our $NO_PREFS_IN_TOPIC = 1;

sub init {
require Foswiki::Plugins::JQueryPlugin ();
require Foswiki::Plugins::JQueryPlugin;
Foswiki::Plugins::JQueryPlugin::registerPlugin("InfiniteScroll", "Foswiki::Contrib::InfiniteScrollContrib::Core");
}

Expand Down
2 changes: 0 additions & 2 deletions lib/Foswiki/Contrib/InfiniteScrollContrib/Core.pm
Expand Up @@ -8,11 +8,9 @@ our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin );

sub new {
my $class = shift;
my $session = shift || $Foswiki::Plugins::SESSION;

my $this = bless(
$class->SUPER::new(
$session,
name => 'InfiniteScroll',
version => '2.0e159f28de22ee386baa2',
author => 'Paul Irish, Luke Shumard and Michael Daum',
Expand Down
2 changes: 2 additions & 0 deletions lib/Foswiki/Contrib/InfiniteScrollContrib/MANIFEST
Expand Up @@ -6,6 +6,8 @@ pub/System/InfiniteScrollContrib/infinite-scroll-pattern.gif 0644
pub/System/InfiniteScrollContrib/jquery.infinitescroll.init.js 0644
pub/System/InfiniteScrollContrib/jquery.infinitescroll.init.js.gz 0644
pub/System/InfiniteScrollContrib/jquery.infinitescroll.init.uncompressed.js 0644
pub/System/InfiniteScrollContrib/jquery.infinitescroll.js 0644
pub/System/InfiniteScrollContrib/jquery.infinitescroll.js.gz 0644
pub/System/InfiniteScrollContrib/jquery.infinitescroll.uncompressed.js 0644
pub/System/InfiniteScrollContrib/loading.gif 0644
pub/System/InfiniteScrollContrib/Makefile 0644
Expand Up @@ -169,6 +169,8 @@
result = (opts.isDone) ? 'done' : (!opts.appendCallback) ? 'no-append' : 'append',
frag, children;

opts.loadingMsg.hide();

switch (result) {

case 'done':
Expand Down Expand Up @@ -215,12 +217,8 @@

}

// fadeout currently makes the <em>'d text ugly in IE6

// this is where the loadingEnd function goes!!!

opts.loadingMsg.fadeOut('normal');


// smooth scroll to ease in the new content
if (opts.animate) {
Expand Down

0 comments on commit 6e1ca62

Please sign in to comment.