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

This commit is contained in:
wangyidong
2013-03-05 01:41:55 +00:00
parent f4cf1b14fc
commit 701201ae2e
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