Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Bug 1064735 - Theme apps should be hidden on homescreen.
Browse files Browse the repository at this point in the history
  • Loading branch information
oklang authored and rvandermeulen committed Sep 30, 2014
1 parent 4e80dc0 commit dcbd7dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/homescreen/js/grid.js
Expand Up @@ -13,7 +13,7 @@ var GridManager = (function() {
var SAVE_STATE_TIMEOUT = 100;
var BASE_HEIGHT = 460; // 480 - 20 (status bar height)

var HIDDEN_ROLES = ['system', 'input', 'homescreen', 'search'];
var HIDDEN_ROLES = ['system', 'input', 'homescreen', 'search', 'theme'];

// Store the pending apps to be installed until SingleVariant conf is loaded
var pendingInstallRequests = [];
Expand Down
2 changes: 1 addition & 1 deletion apps/verticalhome/js/app.js
Expand Up @@ -4,7 +4,7 @@
(function(exports) {

// Hidden manifest roles that we do not show
const HIDDEN_ROLES = ['system', 'input', 'homescreen'];
const HIDDEN_ROLES = ['system', 'input', 'homescreen', 'theme'];

function App() {
window.dispatchEvent(new CustomEvent('moz-chrome-dom-loaded'));
Expand Down

0 comments on commit dcbd7dd

Please sign in to comment.