Skip to content

Commit

Permalink
Item14123: fixed foswiki.getPubUrlPath() js api
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDaum committed Jul 25, 2016
1 parent a4869c2 commit a1512bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/FOSWIKI.pm
Expand Up @@ -30,7 +30,7 @@ sub new {
my $this = bless(
$class->SUPER::new(
name => 'Foswiki',
version => '2.10',
version => '2.11',
author => 'Michael Daum',
homepage => 'http://foswiki.org/Extensions/JQueryPlugin',
javascript => ['jquery.foswiki.js'],
Expand Down
@@ -1,6 +1,6 @@
/**
* Foswiki setups wrt jQuery
*
* jQuery-foswiki: javascript base for foswiki
* Version: 2.11
*/

/*global XMLHttpRequest:false, StrikeOne:false */
Expand Down Expand Up @@ -148,8 +148,8 @@ var foswiki = foswiki || {
foswiki.getPubUrl = function(web, topic, file, params) {
return _getPubUrl(1, web, topic, file, params);
};
foswiki.getPubUrlPath = function(web, topic, params) {
return _getPubUrl(0, web, topic, params);
foswiki.getPubUrlPath = function(web, topic, file, params) {
return _getPubUrl(0, web, topic, file, params);
};

/**
Expand Down

0 comments on commit a1512bf

Please sign in to comment.