Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix base URL if window.location contains index.php #663

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Feb 21, 2017

  1. Fix base URL if window.location contains index.php

    I assume it was forgotten that this replace part should be renamed, after it was decided that index.html shall become index.php.
    
    Currently I have to use a pretty ugly hack with the --body-html config
    
    ```
    var getBaseUrl = Docs.controller.Content.prototype.getBaseUrl;
    Docs.controller.Content.prototype.getBaseUrl = function(){
        var r = getBaseUrl.apply(this,arguments);
        r = r.replace('/index.php','');
        return r;
    }
    ```
    valioDOTch authored Feb 21, 2017
    Configuration menu
    Copy the full SHA
    71160d8 View commit details
    Browse the repository at this point in the history