Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PERFORMA_REPLICA
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Muhammad Usman
PERFORMA_REPLICA
Commits
f8abfd64
Commit
f8abfd64
authored
Dec 06, 2018
by
Saliya Randunu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
S12521571 # Client - remove unnecessary html tags from copying string and button cursor
parent
9fa933d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
common.css
cmsWebApp/webroot/css/common.css
+1
-0
created_job.jsp
cmsWebApp/webroot/extensions/adminportal/created_job.jsp
+5
-1
No files found.
cmsWebApp/webroot/css/common.css
View file @
f8abfd64
...
@@ -1658,6 +1658,7 @@ p.job-txt , p.job-txt span{
...
@@ -1658,6 +1658,7 @@ p.job-txt , p.job-txt span{
border-radius
:
13px
;
border-radius
:
13px
;
display
:
block
;
display
:
block
;
float
:
right
;
float
:
right
;
cursor
:
pointer
;
}
}
.job-desc-box
.details-box
{
.job-desc-box
.details-box
{
...
...
cmsWebApp/webroot/extensions/adminportal/created_job.jsp
View file @
f8abfd64
...
@@ -35,7 +35,11 @@
...
@@ -35,7 +35,11 @@
function copyHTMLToClip(ele) {
function copyHTMLToClip(ele) {
str = $(ele).html().trim();
str = $(ele).html().trim();
str = str.replace(/<span class="calcField">/g, '');
str = str.replace(/<\/span>/g, '');
str = str.replace(/<p><\/p>/g, '');
function listener(e) {
function listener(e) {
e.clipboardData.setData("text/html", str);
e.clipboardData.setData("text/html", str);
e.clipboardData.setData("text/plain", str);
e.clipboardData.setData("text/plain", str);
...
...
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