This commit is contained in:
DonRenando
2015-03-16 16:01:52 +01:00
90 changed files with 122 additions and 10 deletions

0
SRC/public/css/bootstrap-multiselect.css vendored Normal file → Executable file
View File

0
SRC/public/css/fonts/icomoon.eot Normal file → Executable file
View File

0
SRC/public/css/fonts/icomoon.svg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 816 B

After

Width:  |  Height:  |  Size: 816 B

0
SRC/public/css/fonts/icomoon.ttf Normal file → Executable file
View File

0
SRC/public/css/fonts/icomoon.woff Normal file → Executable file
View File

0
SRC/public/css/fonts/style.css Normal file → Executable file
View File

0
SRC/public/css/frontend.css Normal file → Executable file
View File

0
SRC/public/css/image-picker.css Normal file → Executable file
View File

0
SRC/public/css/memory.css Normal file → Executable file
View File

0
SRC/public/imgs/Trophy-Gold.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

BIN
SRC/public/imgs/adminbg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 MiB

0
SRC/public/imgs/avatar/1.jpg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 617 KiB

After

Width:  |  Height:  |  Size: 617 KiB

0
SRC/public/imgs/avatar/1.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

0
SRC/public/imgs/avatar/default.jpg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

0
SRC/public/imgs/bg.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 1.0 MiB

0
SRC/public/imgs/memo.jpg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 654 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

0
SRC/public/imgs/puzzle/balls.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

0
SRC/public/js/bootstrap-multiselect.js vendored Normal file → Executable file
View File

0
SRC/public/js/image-picker.min.js vendored Normal file → Executable file
View File

0
SRC/public/js/imagesloaded.pkgd.min.js vendored Normal file → Executable file
View File

0
SRC/public/js/masonry.min.js vendored Normal file → Executable file
View File

0
SRC/public/js/memory.js Normal file → Executable file
View File

0
SRC/public/js/phaser.map Normal file → Executable file
View File

0
SRC/public/js/phaser.min.js vendored Normal file → Executable file
View File

View File

@ -0,0 +1,19 @@
// fonction qui recherche le referent donnee en parametre
function rechercherReferent()
{
// on recupere le mot cle rentrer dans le champs de recherche
var motCle = document.getElementById("searchfield").value;
//boucle sur chaque item
var list = document.getElementsByClassName("item");
for (var i = 0; i < list.length; i++)
{
referent = list[i].getElementsByClassName('nomRef')[0].innerHTML; //recupere le nom du referent referent
if (referent.indexOf(motCle) > -1) //on compare si la recherche correspond à un nom
{
//on remplace la classe
list[i].className = "item active";
}
}
}

0
SRC/public/js/responsivevoice.js Normal file → Executable file
View File