Skip to content

Commit

Permalink
Issue Sunbird-Ed#253 fix: Public page org log
Browse files Browse the repository at this point in the history
  • Loading branch information
anoophm committed Apr 13, 2018
1 parent ffb3375 commit 1b7f21f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/helpers/environmentVariablesHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let envVariables = {
PORTAL_AUTH_SERVER_URL: env.sunbird_portal_auth_server_url || 'https://staging.open-sunbird.org/auth',
PORTAL_AUTH_SERVER_CLIENT: env.sunbird_portal_auth_server_client || 'portal',
APPID: process.env.sunbird_environment + '.' + process.env.sunbird_instance + '.portal',
DEFAUULT_TENANT: env.sunbird_default_tenant,
DEFAUULT_TENANT: env.sunbird_default_tenant || 'sunbird',
EKSTEP_ENV: env.ekstep_env || 'qa',
PORTAL_PORT: env.sunbird_port || 3000,
PORTAL_API_AUTH_TOKEN: env.sunbird_api_auth_token,
Expand Down
2 changes: 1 addition & 1 deletion src/app/public/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title ng-bind="$root.titleName"></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/ico" ng-href="{{faviconIcon || '/common/images/favicon.ico'}}">
<link rel="icon" type="image/ico" ng-href="{{$root.faviconIcon || '/common/images/favicon.ico'}}">
<link rel="stylesheet" href="/themes/<%= theme ? theme : 'default' %>/semantic.min.css">

<!-- inject:css -->
Expand Down
2 changes: 1 addition & 1 deletion src/app/public/views/header/publicHeader.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="one wide column "></div>
<div class="one wide column ">
<a href="/">
<img class="image centered header-logoBeforeLogin" ng-src="{{orgLogo || '/common/images/sunbird_logo.png'}}">
<img class="image centered header-logoBeforeLogin" ng-src="{{$root.orgLogo || '/common/images/sunbird_logo.png'}}">
</a>
</div>
<div class="one wide column computer only"></div>
Expand Down

0 comments on commit 1b7f21f

Please sign in to comment.