Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Genesys PGR
Genesys Backend
Commits
7fc4145f
Commit
7fc4145f
authored
Jan 15, 2014
by
Matija Obreza
Browse files
UI look-and-feel assets
parent
45836576
Changes
31
Hide whitespace changes
Inline
Side-by-side
src/main/webapp/html/images/icon_search.png
0 → 100644
View file @
7fc4145f
1.17 KB
src/main/webapp/html/images/icon_stars.png
0 → 100644
View file @
7fc4145f
2.1 KB
src/main/webapp/html/images/icon_user_genesys.png
0 → 100644
View file @
7fc4145f
1.89 KB
src/main/webapp/html/images/icon_user_unknown.png
0 → 100644
View file @
7fc4145f
1.59 KB
src/main/webapp/html/images/logo_genesys.png
0 → 100644
View file @
7fc4145f
4.82 KB
src/main/webapp/html/images/logo_genesys_footer.png
0 → 100644
View file @
7fc4145f
3.29 KB
src/main/webapp/html/images/pic_map_news.png
0 → 100644
View file @
7fc4145f
7.29 KB
src/main/webapp/html/images/pic_map_news_full.png
0 → 100644
View file @
7fc4145f
14.4 KB
src/main/webapp/html/images/pic_map_stats.png
0 → 100644
View file @
7fc4145f
9.45 KB
src/main/webapp/html/images/pic_news_1.png
0 → 100644
View file @
7fc4145f
16.6 KB
src/main/webapp/html/js/tab.js
0 → 100644
View file @
7fc4145f
/* ========================================================================
* Bootstrap: tab.js v3.0.3
* http://getbootstrap.com/javascript/#tabs
* ========================================================================
* Copyright 2013 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ======================================================================== */
+
function
(
$
)
{
"
use strict
"
;
// TAB CLASS DEFINITION
// ====================
var
Tab
=
function
(
element
)
{
this
.
element
=
$
(
element
)
}
Tab
.
prototype
.
show
=
function
()
{
var
$this
=
this
.
element
var
$ul
=
$this
.
closest
(
'
ul:not(.dropdown-menu)
'
)
var
selector
=
$this
.
data
(
'
target
'
)
if
(
!
selector
)
{
selector
=
$this
.
attr
(
'
href
'
)
selector
=
selector
&&
selector
.
replace
(
/.*
(?=
#
[^\s]
*$
)
/
,
''
)
//strip for ie7
}
if
(
$this
.
parent
(
'
li
'
).
hasClass
(
'
active
'
))
return
var
previous
=
$ul
.
find
(
'
.active:last a
'
)[
0
]
var
e
=
$
.
Event
(
'
show.bs.tab
'
,
{
relatedTarget
:
previous
})
$this
.
trigger
(
e
)
if
(
e
.
isDefaultPrevented
())
return
var
$target
=
$
(
selector
)
this
.
activate
(
$this
.
parent
(
'
li
'
),
$ul
)
this
.
activate
(
$target
,
$target
.
parent
(),
function
()
{
$this
.
trigger
({
type
:
'
shown.bs.tab
'
,
relatedTarget
:
previous
})
})
}
Tab
.
prototype
.
activate
=
function
(
element
,
container
,
callback
)
{
var
$active
=
container
.
find
(
'
> .active
'
)
var
transition
=
callback
&&
$
.
support
.
transition
&&
$active
.
hasClass
(
'
fade
'
)
function
next
()
{
$active
.
removeClass
(
'
active
'
)
.
find
(
'
> .dropdown-menu > .active
'
)
.
removeClass
(
'
active
'
)
element
.
addClass
(
'
active
'
)
if
(
transition
)
{
element
[
0
].
offsetWidth
// reflow for transition
element
.
addClass
(
'
in
'
)
}
else
{
element
.
removeClass
(
'
fade
'
)
}
if
(
element
.
parent
(
'
.dropdown-menu
'
))
{
element
.
closest
(
'
li.dropdown
'
).
addClass
(
'
active
'
)
}
callback
&&
callback
()
}
transition
?
$active
.
one
(
$
.
support
.
transition
.
end
,
next
)
.
emulateTransitionEnd
(
150
)
:
next
()
$active
.
removeClass
(
'
in
'
)
}
// TAB PLUGIN DEFINITION
// =====================
var
old
=
$
.
fn
.
tab
$
.
fn
.
tab
=
function
(
option
)
{
return
this
.
each
(
function
()
{
var
$this
=
$
(
this
)
var
data
=
$this
.
data
(
'
bs.tab
'
)
if
(
!
data
)
$this
.
data
(
'
bs.tab
'
,
(
data
=
new
Tab
(
this
)))
if
(
typeof
option
==
'
string
'
)
data
[
option
]()
})
}
$
.
fn
.
tab
.
Constructor
=
Tab
// TAB NO CONFLICT
// ===============
$
.
fn
.
tab
.
noConflict
=
function
()
{
$
.
fn
.
tab
=
old
return
this
}
// TAB DATA-API
// ============
$
(
document
).
on
(
'
click.bs.tab.data-api
'
,
'
[data-toggle="tab"], [data-toggle="pill"]
'
,
function
(
e
)
{
e
.
preventDefault
()
$
(
this
).
tab
(
'
show
'
)
})
}(
jQuery
);
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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