Skip to content

Commit

Permalink
Item12648: fixing errors IE complains about mostly
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/EditChapterPlugin@17073 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
MichaelDaum authored and MichaelDaum committed Nov 7, 2013
1 parent f220542 commit af10d8f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 15 deletions.
4 changes: 2 additions & 2 deletions lib/Foswiki/Plugins/EditChapterPlugin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ use Foswiki::Plugins();
use Foswiki::Plugins::JQueryPlugin ();
use Foswiki::Contrib::JsonRpcContrib ();

our $VERSION = '4.61';
our $RELEASE = '4.61';
our $VERSION = '4.62';
our $RELEASE = '4.62';
our $NO_PREFS_IN_TOPIC = 1;
our $SHORTDESCRIPTION = 'An easy sectional edit facility';
our $core;
Expand Down
2 changes: 1 addition & 1 deletion lib/Foswiki/Plugins/EditChapterPlugin/Core.pm
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ sub new {
'<img src="%PUBURLPATH%/%SYSTEMWEB%/EditChapterPlugin/pencil.png" height="16" width="16" />';
my $editLabelFormat =
Foswiki::Func::getPreferencesValue("EDITCHAPTERPLUGIN_EDITLABELFORMAT") ||
'<span id="$id" class="ecpHeading"> $heading <noautolink><a href="#" class="ecpEdit" title="$title" data-web="$web" data-topic="$topic" data-from="$from" data-to="$to">$img</a></noautolink>';
'<span id="$id" class="ecpHeading"> $heading <noautolink><a href="#" class="ecpEdit" title="$title" data-web="$web" data-topic="$topic" data-from="$from" data-to="$to">$img</a></noautolink></span>';

my $wikiName = Foswiki::Func::getWikiName();

Expand Down
10 changes: 5 additions & 5 deletions locale/EditChapterPlugin/Foswiki.pot
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 4.40\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013 08 13 13:08+0001\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2013 08 13 13:08+0001\n"
"Last-Translator: Michael Daum <foswiki@michaeldaumconsulting.com>\n"
"Language-Team: Foswiki German Translation Team <none>\n"
Expand All @@ -16,18 +16,18 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#: templates/edit.chapter.tmpl:17
#: templates/edit.chapter.tmpl:20
msgid "Cancel"
msgstr ""

#: templates/edit.chapter.tmpl:18
#: templates/edit.chapter.tmpl:21
msgid "Edit all"
msgstr ""

#: templates/edit.chapter.tmpl:4
#: templates/edit.chapter.tmpl:7
msgid "Edit chapter '%1'"
msgstr ""

#: templates/edit.chapter.tmpl:16
#: templates/edit.chapter.tmpl:19
msgid "OK"
msgstr ""
10 changes: 5 additions & 5 deletions locale/EditChapterPlugin/de.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 4.40\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013 08 13 13:08+1\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2013 08 13 13:08+0001\n"
"Last-Translator: Michael Daum <foswiki@michaeldaumconsulting.com>\n"
"Language-Team: Foswiki German Translation Team <none>\n"
Expand All @@ -16,18 +16,18 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#: templates/edit.chapter.tmpl:17
#: templates/edit.chapter.tmpl:20
msgid "Cancel"
msgstr "Abbrechen"

#: templates/edit.chapter.tmpl:18
#: templates/edit.chapter.tmpl:21
msgid "Edit all"
msgstr "Alles editieren"

#: templates/edit.chapter.tmpl:4
#: templates/edit.chapter.tmpl:7
msgid "Edit chapter '%1'"
msgstr ""

#: templates/edit.chapter.tmpl:16
#: templates/edit.chapter.tmpl:19
msgid "OK"
msgstr "OK"
2 changes: 0 additions & 2 deletions pub/System/EditChapterPlugin/ecpjavascript.uncompressed.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,9 @@ jQuery(function($) {
timeout: 500,
over: function(event) {
$(this).addClass('ecpHover');
event.stopPropagation();
},
out: function(event) {
$(this).removeClass('ecpHover');
event.stopPropagation();
}
});
});

0 comments on commit af10d8f

Please sign in to comment.