﻿$(function (e) {
    SyntaxHighlighter.defaults["wrap-lines"] = false;
    SyntaxHighlighter.all();
});

$(function (e) {
    $('.codeblock')
        .filter(function (index) { return $(this).height() >= 300; })
        .each(function (index) {
            var ctrl = $("<div style='width:100px;margin:0px auto 25px auto;background:#fff url(/Content/img/expand_new.gif);cursor:pointer'>&nbsp;</div>");
            $(this).CodeBlockPanel(300, ctrl, '/Content/img/expand_new.gif', '/Content/img/collapse_new.gif');
        });
});
