Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
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
lifo
Nicolas Ollinger
OpenBoard
Commits
2480a33b
Commit
2480a33b
authored
Oct 12, 2011
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added new widget
parent
532f9f6c
Changes
10
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
1026 additions
and
0 deletions
+1026
-0
config.xml
resources/library/interactive/BlackYellow.wgt/config.xml
+16
-0
basic.css
resources/library/interactive/BlackYellow.wgt/css/basic.css
+507
-0
icon.png
resources/library/interactive/BlackYellow.wgt/icon.png
+0
-0
greySquare.png
...library/interactive/BlackYellow.wgt/images/greySquare.png
+0
-0
icon-close.png
...library/interactive/BlackYellow.wgt/images/icon-close.png
+0
-0
popupBack.png
.../library/interactive/BlackYellow.wgt/images/popupBack.png
+0
-0
index.html
resources/library/interactive/BlackYellow.wgt/index.html
+25
-0
blackYellow.js
...ibrary/interactive/BlackYellow.wgt/scripts/blackYellow.js
+398
-0
jquery-1.6.2.min.js
...y/interactive/BlackYellow.wgt/scripts/jquery-1.6.2.min.js
+18
-0
jquery.disable.text.select.js
...ive/BlackYellow.wgt/scripts/jquery.disable.text.select.js
+62
-0
No files found.
resources/library/interactive/BlackYellow.wgt/config.xml
0 → 100644
View file @
2480a33b
<?xml version="1.0" encoding="UTF-8"?>
<widget
xmlns=
"http://www.w3.org/ns/widgets"
xmlns:ub=
"http://uniboard.mnemis.com/widgets"
id=
"http://uniboard.mnemis.com/widgets/webbrowser"
version=
"1.1"
width=
"700"
height=
"400"
ub:resizable=
"false"
>
<name>
Choisir
</name>
<author
href=
"http://www.getuniboard.com"
email=
"info@mnemis.com"
>
Mnemis SA
</author>
<description>
Choisir widget
</description>
<content
src=
"index.html"
/>
</widget>
resources/library/interactive/BlackYellow.wgt/css/basic.css
0 → 100644
View file @
2480a33b
This diff is collapsed.
Click to expand it.
resources/library/interactive/BlackYellow.wgt/icon.png
0 → 100644
View file @
2480a33b
1.03 KB
resources/library/interactive/BlackYellow.wgt/images/greySquare.png
0 → 100644
View file @
2480a33b
214 Bytes
resources/library/interactive/BlackYellow.wgt/images/icon-close.png
0 → 100644
View file @
2480a33b
1.47 KB
resources/library/interactive/BlackYellow.wgt/images/popupBack.png
0 → 100644
View file @
2480a33b
861 Bytes
resources/library/interactive/BlackYellow.wgt/index.html
0 → 100644
View file @
2480a33b
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/basic.css"
/>
<script
type=
"text/javascript"
src=
"scripts/jquery-1.6.2.min.js"
></script>
<script
src=
"scripts/jquery.disable.text.select.js"
type=
"text/javascript"
></script>
<script
type=
"text/javascript"
src=
"scripts/blackYellow.js"
></script>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
(){
init
();
});
</script>
</head>
<body>
</body>
</html>
resources/library/interactive/BlackYellow.wgt/scripts/blackYellow.js
0 → 100644
View file @
2480a33b
This diff is collapsed.
Click to expand it.
resources/library/interactive/BlackYellow.wgt/scripts/jquery-1.6.2.min.js
0 → 100644
View file @
2480a33b
This diff is collapsed.
Click to expand it.
resources/library/interactive/BlackYellow.wgt/scripts/jquery.disable.text.select.js
0 → 100644
View file @
2480a33b
/**
* .disableTextSelect - Disable Text Select Plugin
*
* Version: 1.1
* Updated: 2007-11-28
*
* Used to stop users from selecting text
*
* Copyright (c) 2007 James Dempster (letssurf@gmail.com, http://www.jdempster.com/category/jquery/disabletextselect/)
*
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
**/
/**
* Requirements:
* - jQuery (John Resig, http://www.jquery.com/)
**/
(
function
(
$
)
{
if
(
$
.
browser
.
mozilla
)
{
$
.
fn
.
disableTextSelect
=
function
()
{
return
this
.
each
(
function
()
{
$
(
this
).
css
({
'MozUserSelect'
:
'none'
});
});
};
$
.
fn
.
enableTextSelect
=
function
()
{
return
this
.
each
(
function
()
{
$
(
this
).
css
({
'MozUserSelect'
:
''
});
});
};
}
else
if
(
$
.
browser
.
msie
)
{
$
.
fn
.
disableTextSelect
=
function
()
{
return
this
.
each
(
function
()
{
$
(
this
).
bind
(
'selectstart.disableTextSelect'
,
function
()
{
return
false
;
});
});
};
$
.
fn
.
enableTextSelect
=
function
()
{
return
this
.
each
(
function
()
{
$
(
this
).
unbind
(
'selectstart.disableTextSelect'
);
});
};
}
else
{
$
.
fn
.
disableTextSelect
=
function
()
{
return
this
.
each
(
function
()
{
$
(
this
).
bind
(
'mousedown.disableTextSelect'
,
function
()
{
return
false
;
});
});
};
$
.
fn
.
enableTextSelect
=
function
()
{
return
this
.
each
(
function
()
{
$
(
this
).
unbind
(
'mousedown.disableTextSelect'
);
});
};
}
})(
jQuery
);
\ 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