Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
e-epal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Σταύρος Παπαδάκης
e-epal
Commits
561ba1f2
Commit
561ba1f2
authored
May 15, 2017
by
Open Source Developer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
menu correction
parent
4d0e3dd0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
8 deletions
+10
-8
myschool/navbar.scss
myschool/navbar.scss
+1
-2
source/components/director/director-view.ts
source/components/director/director-view.ts
+8
-6
source/containers/globalstyles.css
source/containers/globalstyles.css
+1
-0
No files found.
myschool/navbar.scss
View file @
561ba1f2
...
...
@@ -27,7 +27,6 @@
}
.nav-wrapper {
z-index: 1;
position: relative;
background-color: #fff;
.navbar {
...
...
@@ -40,7 +39,7 @@
}
}
.navbar-collapse {
// height: 46
px;
min-height: 80
px;
.navbar-nav {
padding-bottom: 0px;
...
...
source/components/director/director-view.ts
View file @
561ba1f2
import
{
Component
,
OnInit
,
OnDestroy
,
ElementRef
,
ViewChild
}
from
"
@angular/core
"
;
import
{
Component
,
OnInit
,
OnDestroy
,
ElementRef
,
ViewChild
,
Renderer
}
from
"
@angular/core
"
;
import
{
Injectable
}
from
"
@angular/core
"
;
import
{
AppSettings
}
from
'
../../app.settings
'
;
import
{
HelperDataService
}
from
'
../../services/helper-data-service
'
;
...
...
@@ -146,6 +146,7 @@ import {
`
})
@
Injectable
()
export
default
class
DirectorView
implements
OnInit
,
OnDestroy
{
public
formGroup
:
FormGroup
;
...
...
@@ -172,10 +173,13 @@ import {
private
type
:
Number
;
@
ViewChild
(
'
fileInput
'
)
fileInput
:
ElementRef
;
constructor
(
private
fb
:
FormBuilder
,
private
_hds
:
HelperDataService
,
private
activatedRoute
:
ActivatedRoute
,
private
router
:
Router
)
{
private
router
:
Router
,
private
renderer
:
Renderer
)
{
this
.
StudentSelected$
=
new
BehaviorSubject
([{}]);
this
.
StudentSelectedSpecial$
=
new
BehaviorSubject
([{}]);
this
.
StudentInfo$
=
new
BehaviorSubject
([{}]);
...
...
@@ -329,14 +333,12 @@ import {
}
updateCheckedOptions
(
id
,
cbvalue
)
{
let
i
=
this
.
saved
.
length
;
console
.
log
(
cbvalue
.
value
,
"
aaaaa
"
);
let
i
=
0
;
if
(
cbvalue
.
value
===
'
1
'
)
{
this
.
saved
[
i
]
=
id
;
this
.
type
=
1
;
console
.
log
(
"
ok
"
)
}
else
if
(
cbvalue
.
value
===
'
2
'
)
{
this
.
saved
[
i
]
=
id
;
...
...
source/containers/globalstyles.css
View file @
561ba1f2
...
...
@@ -24,6 +24,7 @@
width
:
100%
;
height
:
100%
;
background-color
:
rgba
(
0
,
0
,
0
,
0.3
);
z-index
:
999
;
}
...
...
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