Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
solo-1
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
solo-1
Commits
7ea075cb
Unverified
Commit
7ea075cb
authored
Sep 26, 2018
by
Van
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🎨
https://hacpai.com/article/1537323691603?r=Vanessa#1537964101589
parent
b62e4748
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
4 deletions
+22
-4
src/main/webapp/plugins/kanbanniang/assert/index.js
src/main/webapp/plugins/kanbanniang/assert/index.js
+3
-3
src/main/webapp/skins
src/main/webapp/skins
+1
-1
src/test/resources/robots.txt
src/test/resources/robots.txt
+18
-0
No files found.
src/main/webapp/plugins/kanbanniang/assert/index.js
View file @
7ea075cb
...
...
@@ -27,7 +27,7 @@ var soloKanbanniang = {
}
var
dialog
=
this
;
var
x
=
event
.
clientX
-
parseInt
(
dialog
.
style
.
left
||
0
),
y
=
event
.
clientY
-
parseInt
(
dialog
.
style
.
top
||
0
);
y
=
event
.
clientY
-
parseInt
(
dialog
.
style
.
top
||
$
(
window
).
height
()
-
$
(
dialog
).
height
()
);
_document
.
ondragstart
=
"
return false;
"
;
_document
.
onselectstart
=
"
return false;
"
;
_document
.
onselect
=
"
document.selection.empty();
"
;
...
...
@@ -53,8 +53,8 @@ var soloKanbanniang = {
if
(
positionY
<
0
)
{
positionY
=
0
;
}
if
(
positionY
>
$
(
'
html
'
).
height
()
-
$
(
dialog
).
height
())
{
positionY
=
$
(
'
html
'
).
height
()
-
$
(
dialog
).
height
();
if
(
positionY
>
$
(
window
).
height
()
-
$
(
dialog
).
height
())
{
positionY
=
$
(
window
).
height
()
-
$
(
dialog
).
height
();
}
dialog
.
style
.
left
=
positionX
+
"
px
"
;
dialog
.
style
.
top
=
positionY
+
"
px
"
;
...
...
skins
@
c2c29ee9
Subproject commit
982110525f6206c41045dd758d72f9263e9822fe
Subproject commit
c2c29ee93631faf3b69292de03345cc8740e5b8c
src/test/resources/robots.txt
View file @
7ea075cb
====
Solo - A small and beautiful blogging system written in Java.
Copyright (c) 2010-2018, b3log.org & hacpai.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
====
User-agent: *
Disallow: /*.do
Disallow: /login
...
...
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