wip: component reorg, gathering js, css, images, ...

This commit is contained in:
Florian BLOUET
2015-11-17 16:23:04 +01:00
parent d729ac441b
commit f186091823
271 changed files with 466 additions and 1636 deletions

View File

@@ -0,0 +1,24 @@
var p4 = p4 || {};
(function (p4, window) {
p4.Results = {
'Selection': new Selectable($('#answers'), {
selector: '.IMGT',
limit: 800,
selectStart: function (event, selection) {
$('#answercontextwrap table:visible').hide();
},
selectStop: function (event, selection) {
viewNbSelect();
},
callbackSelection: function (element) {
var elements = $(element).attr('id').split('_');
return elements.slice(elements.length - 2, elements.length).join('_');
}
})
};
return;
}(p4, window));