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

Add 'position' => 'bottom' to $wgResourceModules #18

Open
jamesmontalvo3 opened this issue Feb 17, 2016 · 0 comments
Open

Add 'position' => 'bottom' to $wgResourceModules #18

jamesmontalvo3 opened this issue Feb 17, 2016 · 0 comments

Comments

@jamesmontalvo3
Copy link
Contributor

In SemanticMeetingMinutes.php need to update $wgResourceModules to include a position parameter. Currently the setup is something like:

    'resource.name' => $someResourceTemplate + array(
        'styles' => 'styles.css',
        'scripts' => array(
            'script1.js',
            'script2.js',
            'script3.js',
        ),
    ),

It needs to be like:

    'resource.name' => $someResourceTemplate + array(
        'position' => 'bottom', // added this since "bottom" was default pre-1.26
        'styles' => 'styles.css',
        'scripts' => array(
            'script1.js',
            'script2.js',
            'script3.js',
        ),
    ),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant