Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
internship
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Skripnikov
internship
Commits
bdb573b3
Commit
bdb573b3
authored
Jan 31, 2018
by
a.serikova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
task1
parent
8b7edb81
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
1 deletion
+32
-1
src/main/webapp/index.html
src/main/webapp/index.html
+1
-1
src/main/webapp/js/player.js
src/main/webapp/js/player.js
+31
-0
No files found.
src/main/webapp/index.html
View file @
bdb573b3
...
...
@@ -24,7 +24,7 @@ AS.OPTIONS.locale = "ru";
AS
.
OPTIONS
.
coreUrl
=
"
http://intern-dev.arta.kz/Synergy/
"
;
var
portal
=
{
var
portal
=
{
player
:
null
,
clearPlayer
:
function
()
{
...
...
src/main/webapp/js/player.js
0 → 100644
View file @
bdb573b3
'
use strict
'
;
AS
.
OPTIONS
.
locale
=
"
ru
"
;
AS
.
OPTIONS
.
coreUrl
=
"
http://intern-dev.arta.kz/Synergy/
"
;
var
portal
=
{
player
:
null
,
clearPlayer
:
function
()
{
if
(
portal
.
player
)
{
portal
.
player
.
destroy
();
}
},
createPlayer
:
function
(
formCode
){
portal
.
clearPlayer
();
portal
.
player
=
AS
.
FORMS
.
createPlayer
();
portal
.
player
.
showFormByCode
(
formCode
);
portal
.
player
.
view
.
appendTo
(
$
(
'
#form_player_div
'
));
}
};
$
(
document
).
ready
(
function
(){
AS
.
OPTIONS
.
login
=
"
intern
"
;
AS
.
OPTIONS
.
password
=
"
intern
"
;
portal
.
createPlayer
(
"
timesheet
"
);
});
\ No newline at end of file
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