Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
linkedin-public-profile
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mbas
linkedin-public-profile
Commits
03244b5f
Commit
03244b5f
authored
Feb 22, 2016
by
Julian Beisenkötter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
major schema changes
parent
17bac123
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
9 deletions
+5
-9
educations.js
src/analyse-parts/educations.js
+2
-4
positions.js
src/analyse-parts/positions.js
+2
-4
skills.js
src/analyse-parts/skills.js
+1
-1
No files found.
src/analyse-parts/educations.js
View file @
03244b5f
...
...
@@ -6,10 +6,8 @@ var educationsAnalysis = function($, profile){
var
school
=
{
school
:
schoolItem
.
find
(
".item-title"
).
text
(),
course
:
schoolItem
.
find
(
".item-subtitle"
).
text
(),
dates
:
{
from
:
schoolItem
.
find
(
".meta .date-range time:nth-child(1)"
).
text
(),
to
:
schoolItem
.
find
(
".meta .date-range time:nth-child(2)"
).
text
()
},
from
:
schoolItem
.
find
(
".meta .date-range time:nth-child(1)"
).
text
(),
to
:
schoolItem
.
find
(
".meta .date-range time:nth-child(2)"
).
text
()
description
:
schoolItem
.
find
(
".description p"
).
text
()
};
profile
.
educations
.
push
(
school
);
...
...
src/analyse-parts/positions.js
View file @
03244b5f
...
...
@@ -6,10 +6,8 @@ var positionsAnalysis = function($, profile){
var
position
=
{
position
:
positionItem
.
find
(
".item-title"
).
text
(),
companyName
:
positionItem
.
find
(
".item-subtitle"
).
text
(),
dates
:
{
from
:
positionItem
.
find
(
".meta .date-range time:nth-child(1)"
).
text
(),
to
:
positionItem
.
find
(
".meta .date-range time:nth-child(2)"
).
text
()
},
from
:
positionItem
.
find
(
".meta .date-range time:nth-child(1)"
).
text
(),
to
:
positionItem
.
find
(
".meta .date-range time:nth-child(2)"
).
text
()
locality
:
positionItem
.
find
(
".meta .location"
).
text
(),
description
:
positionItem
.
find
(
".description"
).
text
(),
current
:
(
positionItem
.
attr
(
'data-section'
)
==
"currentPositions"
)
...
...
src/analyse-parts/skills.js
View file @
03244b5f
...
...
@@ -7,7 +7,7 @@ var skillsAnalysis = function($, profile){
var
less
=
skill
.
hasClass
(
'see-less'
);
if
(
!
more
&&
!
less
){
profile
.
skills
.
push
(
skill
.
text
()
);
profile
.
skills
.
push
(
{
name
:
skill
.
text
()}
);
}
});
return
profile
;
...
...
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