mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 00:14:06 +00:00
Fix autoplay of some audiolinks
This commit is contained in:
parent
8bed9e80eb
commit
71e961e4fb
23
audiolink.cc
23
audiolink.cc
|
@ -14,9 +14,28 @@ std::string addAudioLink( std::string const & url,
|
|||
std::string makeAudioLinkScript( std::string const & url,
|
||||
std::string const & dictionaryId )
|
||||
{
|
||||
/// Convert "'" to "\'" - this char broke autoplay of audiolinks
|
||||
|
||||
std::string ref;
|
||||
bool escaped = false;
|
||||
for( unsigned x = 0; x < url.size(); x++ )
|
||||
{
|
||||
char ch = url[ x ];
|
||||
if( escaped )
|
||||
{
|
||||
ref += ch;
|
||||
escaped = false;
|
||||
continue;
|
||||
}
|
||||
if( ch == '\'' )
|
||||
ref += '\\';
|
||||
ref += ch;
|
||||
escaped = ( ch == '\\' );
|
||||
}
|
||||
|
||||
return std::string( "var gdAudioLink; "
|
||||
"if ( !gdAudioLink ) gdAudioLink=" ) + url +
|
||||
"if ( !gdAudioLink ) gdAudioLink=" ) + ref +
|
||||
"; if ( typeof gdActivateAudioLink_" + dictionaryId + " != 'function' ) {"
|
||||
"eval( 'function gdActivateAudioLink_" + dictionaryId + "() {"
|
||||
"gdAudioLink=" + url + "; }' ); }";
|
||||
"gdAudioLink=" + ref + "; }' ); }";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue