Skip to content

Commit

Permalink
Item12215: fixed hiding of jquery loader early enough
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/branches/Release01x01@15822 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
MichaelDaum authored and MichaelDaum committed Nov 1, 2012
1 parent 07b4ad1 commit a3e6df9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/LOADER.pm
Expand Up @@ -12,10 +12,11 @@ sub new {
my $this = bless(
$class->SUPER::new(
name => 'Loader',
version => '1.00',
version => '1.01',
author => 'Michael Daum',
homepage => 'http://foswiki.org/Extensions/JQueryPlugin',
tags => 'LOADER',
css => ['jquery.loader.css'],
javascript => ['jquery.loader.js'],
dependencies => ['metadata'],
),
Expand Down
@@ -1,5 +1,6 @@
TARGET=\
jquery.loader.js \
jquery.loader.css \
$(JQUERYPLUGIN_LIB)/LOADER.pm

-include ../../Makefile.include
@@ -0,0 +1,3 @@
.jqLoader {
display:none;
}
Expand Up @@ -46,8 +46,6 @@ jQuery(function($) {
var self = this,
$elem = $(self.element);

$elem.hide();

// construct load url
if (typeof(self.options.section) !== 'undefined') {
self.options.url =
Expand Down

0 comments on commit a3e6df9

Please sign in to comment.