Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
Merge pull request #322 from peterbe/bug-1166977-hashed-tabzilla-asse…
Browse files Browse the repository at this point in the history
…t-urls

fixes bug 1166977 - hashed tabzilla asset urls
  • Loading branch information
Peter Bengtsson committed May 21, 2015
2 parents 70b840a + 6a098ea commit bd078c3
Show file tree
Hide file tree
Showing 3 changed files with 805 additions and 4 deletions.
9 changes: 5 additions & 4 deletions airmozilla/main/static/main/js/include-tabzilla.js
@@ -1,10 +1,11 @@
$(function() {
var link = document.createElement('link');
link.rel = "stylesheet";
link.href = "//mozorg.cdn.mozilla.net/media/css/tabzilla-min.css";
// link.href = "//mozorg.cdn.mozilla.net/media/css/tabzilla-min.css";
link.href = "//mozorg.cdn.mozilla.net/media/css/tabzilla-min.c4ec201287fa.css";
document.head.appendChild(link);

var script = document.createElement('script');
script.src = "//mozorg.cdn.mozilla.net/en-US/tabzilla/tabzilla.js";
document.head.appendChild(script);
// var script = document.createElement('script');
// script.src = "//mozorg.cdn.mozilla.net/en-US/tabzilla/tabzilla.js";
// document.head.appendChild(script);
});

0 comments on commit bd078c3

Please sign in to comment.