diff options
author | Byron Jones <bjones@mozilla.com> | 2012-09-26 08:32:58 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-09-26 08:32:58 +0200 |
commit | 3700f44dcd4fddb7798619451275b05f12a99032 (patch) | |
tree | d9ed724100d30ae392cf3781f5871e15888db541 /template | |
parent | eacdf2e2ef8186d5421582276437116512f3780b (diff) | |
download | bugzilla-3700f44dcd4fddb7798619451275b05f12a99032.tar.gz bugzilla-3700f44dcd4fddb7798619451275b05f12a99032.tar.xz |
Bug 437212: sync bmo code with upstream
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/show-header.html.tmpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/template/en/default/bug/show-header.html.tmpl b/template/en/default/bug/show-header.html.tmpl index f71c2a22a..40f35ba7c 100644 --- a/template/en/default/bug/show-header.html.tmpl +++ b/template/en/default/bug/show-header.html.tmpl @@ -35,7 +35,7 @@ [% header = "$terms.Bug $bug.bug_id" %] [% header_addl_info = "Last modified: $filtered_timestamp" %] [% yui = ['autocomplete', 'calendar'] %] -[% javascript_urls = [ "js/util.js", "js/field.js", "js/show_bug.js" ] %] +[% javascript_urls = [ "js/util.js", "js/field.js" ] %] [% IF bug.defined %] [% unfiltered_title = "$terms.Bug $bug.bug_id – $bug.short_desc" %] [% javascript = BLOCK %] @@ -52,6 +52,9 @@ history.replaceState(null, "[% unfiltered_title FILTER js %]", href); } } + YAHOO.util.Event.onDOMReady(function() { + initDirtyFieldTracking(); + }); [% javascript FILTER none %] [% END %] [% END %] |