summaryrefslogtreecommitdiff
path: root/zend/documentation/api/core/js/template.js
blob: 59ccb3d4c577698e42f21251c2b24a9f7f7c2471 (plain)
1
2
3
4
5
6
7
8
9
10
11
$(document).ready(function ()
{
    // to make the page work without JS we need to set a margin-left;
    // this distorts the splitter plugin and thus we set margin
    // to 0 when JS is enabled
    $("#contents").attr('style', 'margin: 0px;');

    $(".resizable").splitter({
        sizeLeft:250
    });
});