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

Commit

Permalink
Bug 863417 - pref for identity ui, fix line too long; a=tef+
Browse files Browse the repository at this point in the history
  • Loading branch information
jedp committed May 7, 2013
1 parent 1caf3ee commit f48d569
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/system/js/identity.js
Expand Up @@ -44,7 +44,8 @@ var Identity = (function() {
frame.setAttribute('mozbrowser', 'true');
frame.setAttribute('remote', true);
frame.classList.add('screen');
frame.src = personaUri + (e.detail.showUI ? kIdentityScreen : kIdentityFrame);
frame.src = personaUri +
(e.detail.showUI ? kIdentityScreen : kIdentityFrame);
frame.addEventListener('mozbrowserloadstart',
function loadStart(evt) {
// After creating the new frame containing the identity flow, we
Expand Down

0 comments on commit f48d569

Please sign in to comment.