* fix bug for colorbox errot in view.html.php.

This commit is contained in:
wangyidong
2013-03-05 01:40:30 +00:00
parent a36ab1f4d5
commit d9b6f2284f
2 changed files with 5 additions and 23 deletions

View File

@@ -5,15 +5,13 @@
<script type="text/javascript">
function path()
{
var args = arguments,
result = []
;
var args = arguments;
var result = [];
for(var i = 0; i < args.length; i++)
result.push(args[i].replace('@', '<?php echo $jsRoot;?>jquery/syntaxhighlighter/scripts/'));
for(var i = 0; i < args.length; i++) result.push(args[i].replace('@', '<?php echo $jsRoot;?>jquery/syntaxhighlighter/scripts/'));
return result
};
}
SyntaxHighlighter.autoloader.apply(null, path(
'applescript @shBrushAppleScript.js',

File diff suppressed because one or more lines are too long