Fix autoplay of some audiolinks

This commit is contained in:
Abs62 2012-09-28 21:42:15 +04:00
parent 8bed9e80eb
commit 71e961e4fb

View file

@ -14,9 +14,28 @@ std::string addAudioLink( std::string const & url,
std::string makeAudioLinkScript( std::string const & url, std::string makeAudioLinkScript( std::string const & url,
std::string const & dictionaryId ) 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; " return std::string( "var gdAudioLink; "
"if ( !gdAudioLink ) gdAudioLink=" ) + url + "if ( !gdAudioLink ) gdAudioLink=" ) + ref +
"; if ( typeof gdActivateAudioLink_" + dictionaryId + " != 'function' ) {" "; if ( typeof gdActivateAudioLink_" + dictionaryId + " != 'function' ) {"
"eval( 'function gdActivateAudioLink_" + dictionaryId + "() {" "eval( 'function gdActivateAudioLink_" + dictionaryId + "() {"
"gdAudioLink=" + url + "; }' ); }"; "gdAudioLink=" + ref + "; }' ); }";
} }