dragouf / Stash-Reviewers-Chrome-Extension

This chrome/firefox extension allow to define groups of reviewers in Atlassian Stash/Bitbucket to bulk add them when creating or updating pull request + other features
MIT License
88 stars 34 forks source link

template url not working in firefox #47

Open thekyz opened 6 years ago

thekyz commented 6 years ago

The box does not show up at all; I tried fixing it by addings divs around the

in popup.html. It does show up then but when I create a pull-request I still don't see the template loading.

            <div id="template" class="tab-pane">
                <div>
                    <div class="form-group">
                        <label for="template_text">Template:</label>
                        <textarea class="form-control" rows="10" id="template_text"></textarea>
                    </div>
                </div>
                <div>
                    <div class="form-group">
                        <label for="template_url">Template URL:</label>
                        <input class="form-control" id="template_url" type="text">
                    </div>
                </div>
            </div>