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

Allow a base url for external links #253

Merged
merged 1 commit into from
Nov 3, 2014
Merged

Commits on Aug 4, 2014

  1. Allow a base url for external links

    This commit adds the ability to specify a base url for a given data.json to be
    used when constructing urls for external links. For example:
    
      external: {
        data: [
          {
            base: 'http://emberjs.com/api/',
            json: 'http://builds.emberjs.com/tags/v1.5.1/ember-docs.json'
          },
          {
    	    base: 'http://emberjs.com/api/',
    	    json: 'http://builds.emberjs.com/tags/v1.0.0-beta.6/ember-data-docs.json'
          }
        ]
      }
    
    This is not breaking. For example, the following is still valid:
    
      external: {
        data: [
          'http://builds.emberjs.com/tags/v1.5.1/ember-docs.json'
        ]
      }
    mmpestorich committed Aug 4, 2014
    Configuration menu
    Copy the full SHA
    75bb9ef View commit details
    Browse the repository at this point in the history