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
b8f05326
Commit
b8f05326
authored
6 years ago
by
Valentin Skripnikov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Merge branch 'a.serikova-dev' into 'master'"
This reverts merge request
!28
parent
7f457729
master
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
48 deletions
+9
-48
src/main/webapp/index.html
src/main/webapp/index.html
+9
-17
src/main/webapp/js/player.js
src/main/webapp/js/player.js
+0
-31
No files found.
src/main/webapp/index.html
View file @
b8f05326
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<html>
<head
lang=
"en"
>
<head
lang=
"en"
>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
TimeSheet
</title>
<title>
TimeSheet
</title>
<script>
FORM_PLAYER_URL_PREFIX
=
"
http://intern-dev.arta.kz/Synergy/
"
;
</head>
</script>
<body>
<link
rel=
"stylesheet"
href=
"http://intern-dev.arta.kz/Synergy/js/form.player.css"
/>
<p
id=
"welcome"
>
Start page
</p>
<script
src=
"http://intern-dev.arta.kz/Synergy/js/vendor.js"
type=
"text/javascript"
></script>
</body>
<script
src=
"http://intern-dev.arta.kz/Synergy/js/form.player.js"
type=
"text/javascript"
></script>
<script
src=
"js\player.js"
></script>
</head>
<body>
<div
id=
"form_player_container"
>
<div
id=
"form_player_div"
></div>
</div>
</body>
</html>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/main/webapp/js/player.js
deleted
100644 → 0
View file @
7f457729
'
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
This diff is collapsed.
Click to expand it.
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