Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
check
Overview
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
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_web
check
Commits
b9c45397
Commit
b9c45397
authored
Dec 07, 2012
by
Motohisa Nakano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
20121206-3
parent
90cbc971
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
55 additions
and
11 deletions
+55
-11
abvw/common/js/common.js
+0
-0
abvw/common/json/lang/lang-en.json
+3
-3
abvw/common/json/lang/lang-ja.json
+1
-1
abvw/common/json/lang/lang-ko.json
+1
-1
abvw/contentview.html
+8
-3
abvw/js/contentview.js
+42
-3
No files found.
abvw/common/js/common.js
View file @
b9c45397
This diff is collapsed.
Click to expand it.
abvw/common/json/lang/lang-en.json
View file @
b9c45397
...
...
@@ -48,8 +48,8 @@
"dspTitleNm"
:
"Title"
,
"dspTitleNmKn"
:
"Title(Kana)"
,
"txtPubDt"
:
"Released Date"
,
"txtRecordNum"
:
""
,
"txtRecordTotal"
:
""
,
"txtRecordNum"
:
"
"
,
"txtRecordTotal"
:
"
"
,
"dspViewMore"
:
">> Next {0} contents"
,
"txtGen"
:
"Genre"
,
"txtGr"
:
"Group"
,
...
...
@@ -64,7 +64,7 @@
"dspBkCancel"
:
"Logout"
,
"txtSearchResult"
:
"Result"
,
"dspHome"
:
"Home"
,
"txtLoginUser"
:
"(Ver.20121206-
1
)User:"
,
"txtLoginUser"
:
"(Ver.20121206-
3
)User:"
,
"txtAll"
:
"All"
,
"txtMkgSize"
:
"Size"
,
"txtMkgS"
:
"S"
,
...
...
abvw/common/json/lang/lang-ja.json
View file @
b9c45397
...
...
@@ -64,7 +64,7 @@
"dspBkCancel"
:
"バックアップせずにログアウト"
,
"txtSearchResult"
:
"検索結果"
,
"dspHome"
:
"ホーム"
,
"txtLoginUser"
:
"(Ver.20121206-
1
)ログイン中:"
,
"txtLoginUser"
:
"(Ver.20121206-
3
)ログイン中:"
,
"txtAll"
:
"すべて"
,
"txtMkgSize"
:
"太さ"
,
"txtMkgS"
:
"小"
,
...
...
abvw/common/json/lang/lang-ko.json
View file @
b9c45397
...
...
@@ -64,7 +64,7 @@
"dspBkCancel"
:
"로그아웃"
,
"txtSearchResult"
:
"검색 결과"
,
"dspHome"
:
"홈"
,
"txtLoginUser"
:
"(Ver.20121206-
1
)로그인 중:"
,
"txtLoginUser"
:
"(Ver.20121206-
3
)로그인 중:"
,
"txtAll"
:
"전체"
,
"txtMkgSize"
:
"두께"
,
"txtMkgS"
:
"소"
,
...
...
abvw/contentview.html
View file @
b9c45397
...
...
@@ -1934,10 +1934,10 @@
var
strPattern
=
"
\
n"
;
var
strTemp
=
sPageText
;
strTemp
=
strTemp
.
replace
(
strPattern
,
"<br/>"
);
strTemp
=
strTemp
.
replace
All
(
strPattern
,
"<br/>"
);
strTemp
+=
"<br/>"
;
$
(
'#divCopyText'
).
append
(
'<div class="last" id="txtTextCopy" style="word-wrap:break-word">'
+
strTemp
+
'</div>'
);
$
(
'#divCopyText'
).
append
(
'<div class="last" id="txtTextCopy" style="word-wrap:break-word
;line-height: 20px
">'
+
strTemp
+
'</div>'
);
/* display dialog */
// $("#divCopyText").dialog({
...
...
@@ -3215,6 +3215,11 @@ function oldContent_Back(){
/* check login */
if
(
!
avwCheckLogin
(
ScreenIds
.
Login
))
return
;
// Set event to prevent leave
avwSetLogoutNortice
();
// Lock screen
LockScreen
();
getContentID
();
...
...
@@ -3380,7 +3385,7 @@ function oldContent_Back(){
}
});
LockScreen
();
//
LockScreen();
</script>
</head>
...
...
abvw/js/contentview.js
View file @
b9c45397
...
...
@@ -1190,10 +1190,11 @@ function onClick_CanvasMain(event){
}
function
mouseMove_canvasMain
(
event
){
event
.
preventDefault
();
/* base image move when userScale over 1 */
if
(
moveFlag
&&
userScale
!=
1
)
{
$
(
'#main'
).
css
(
'cursor'
,
'pointer'
);
cancelClick
=
true
;
var
mx
;
var
my
;
...
...
@@ -1312,6 +1313,10 @@ function mouseMove_canvasMain(event){
function
mouseDown_CanvasMain
(
event
){
moveFlag
=
true
;
if
(
isTouchDevice
()
!=
true
){
event
.
preventDefault
();
}
$
(
'#main'
).
css
(
'cursor'
,
'default'
);
/*if(event.originalEvent) {
if(event.originalEvent.targetTouches) {
if(event.originalEvent.targetTouches[0].pageX) {
...
...
@@ -1342,6 +1347,7 @@ function mouseDown_CanvasMain(event){
function
mouseUp_CanvasMain
(
event
){
moveFlag
=
false
;
$
(
'#main'
).
css
(
'cursor'
,
'default'
);
}
...
...
@@ -2655,10 +2661,12 @@ function trackTransforms(ctx){
function
zoomIn
()
{
userScale
+=
scaleDelta
;
if
(
userScale
>
4
){
userScale
=
4
;
}
else
{
changeScale
(
userScale
);
flip
();
...
...
@@ -2666,12 +2674,42 @@ function zoomIn() {
/* zoom video */
zoomVideo
();
}
checkDisableButtonZoom
();
};
function
checkDisableButtonZoom
(){
if
(
userScale
>=
4
){
$
(
'#zoomin'
).
removeClass
();
$
(
'#zoomin'
).
addClass
(
'expansion_off'
);
$
(
"#zoomin"
).
css
(
'cursor'
,
'default'
);
}
else
{
$
(
'#zoomin'
).
unbind
(
'click'
);
$
(
'#zoomin'
).
bind
(
'click'
,
zoomIn
);
$
(
'#zoomin'
).
removeClass
();
$
(
'#zoomin'
).
addClass
(
'expansion'
);
$
(
"#zoomin"
).
css
(
'cursor'
,
'pointer'
);
}
if
(
userScale
<=
1
){
$
(
'#zoomout'
).
removeClass
();
$
(
'#zoomout'
).
addClass
(
'reduction_off'
);
$
(
"#zoomout"
).
css
(
'cursor'
,
'default'
);
}
else
{
$
(
'#zoomout'
).
unbind
(
'click'
);
$
(
'#zoomout'
).
bind
(
'click'
,
zoomOut
);
$
(
'#zoomout'
).
removeClass
();
$
(
'#zoomout'
).
addClass
(
'reduction'
);
$
(
"#zoomout"
).
css
(
'cursor'
,
'pointer'
);
}
}
function
checkDisableButtonZoom1
(){
if
(
userScale
>=
4
){
$
(
'#zoomin'
).
unbind
(
'click'
);
$
(
'#zoomin'
).
removeClass
();
...
...
@@ -2708,13 +2746,14 @@ function zoomOut() {
userScale
-=
scaleDelta
;
if
(
userScale
<
1
)
{
userScale
=
1
;
}
}
else
{
changeScale
(
userScale
);
flip
();
/* zoom video */
zoomVideo
()
}
checkDisableButtonZoom
();
};
...
...
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