diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-06-23 20:34:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-23 20:34:55 +0200 |
commit | 8630521c3151c652143673b80fb7f1cc501687a7 (patch) | |
tree | 47bf47da68d4a519884c91e0cd0f808b899ee2b1 /extensions/BugModal/template | |
parent | df042aa77951fa69ea59c1ced9feded43ba3ae6c (diff) | |
download | bugzilla-8630521c3151c652143673b80fb7f1cc501687a7.tar.gz bugzilla-8630521c3151c652143673b80fb7f1cc501687a7.tar.xz |
Bug 1361890 - Fix problems with current js and css concatenation
Diffstat (limited to 'extensions/BugModal/template')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl index 5ece78805..18faf19cc 100644 --- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl @@ -298,7 +298,7 @@ <button type="button" id="mode-btn" class="major"> <span id="mode-btn-readonly" title="Enable editing fields for [% terms.bug %] metadata">Edit [% terms.Bug %]</span> <span id="mode-btn-loading"> - <img id="edit-throbber" src="extensions/BugModal/web/throbber.gif" width="16" height="11"> + <img id="edit-throbber" src="[% asset_file('extensions/BugModal/web/throbber.gif') FILTER html %]" width="16" height="11"> Fetching </span> </button> @@ -402,7 +402,7 @@ %] <button id="product-search" type="button" class="minor">Search</button> <button id="product-search-cancel" type="button" class="minor" style="display:none">X</button> - <img id="product-throbber" src="extensions/BugModal/web/throbber.gif" + <img id="product-throbber" src="[% asset_file('extensions/BugModal/web/throbber.gif') FILTER html %]" width="16" height="11" style="display:none"> <img id="product-search-error" class="tt" src="extensions/BugModal/web/error.png" width="16" height="16" style="display:none"> |