Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
scratch-www
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
scratch-www
Commits
7b72e6cd
Commit
7b72e6cd
authored
Mar 18, 2016
by
Ray Schamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix lint errors
parent
a5e336a1
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
src/components/navigation/navigation.jsx
src/components/navigation/navigation.jsx
+1
-1
src/init.js
src/init.js
+0
-1
src/views/splash/splash.jsx
src/views/splash/splash.jsx
+2
-2
No files found.
src/components/navigation/navigation.jsx
View file @
7b72e6cd
...
...
@@ -64,7 +64,7 @@ var Navigation = React.createClass({
this
.
setState
({
'
messageCountIntervalId
'
:
intervalId
});
}
},
componentDidUpdate
:
function
(
prevProps
,
prevState
)
{
componentDidUpdate
:
function
(
prevProps
)
{
if
(
prevProps
.
session
.
user
!=
this
.
props
.
session
.
user
)
{
this
.
setState
({
'
loginOpen
'
:
false
,
...
...
src/init.js
View file @
7b72e6cd
var
api
=
require
(
'
./mixins/api.jsx
'
).
api
;
var
jar
=
require
(
'
./lib/jar
'
);
...
...
src/views/splash/splash.jsx
View file @
7b72e6cd
...
...
@@ -41,9 +41,9 @@ var Splash = injectIntl(React.createClass({
getDefaultProps
:
function
()
{
return
{
session
:
{}
}
}
;
},
componentDidUpdate
:
function
(
prevProps
,
prevState
)
{
componentDidUpdate
:
function
(
prevProps
)
{
if
(
this
.
props
.
session
.
user
!=
prevProps
.
session
.
user
)
{
if
(
this
.
props
.
session
.
user
)
{
this
.
getActivity
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment