mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 21:13:26 +00:00
22 lines
542 B
JavaScript
22 lines
542 B
JavaScript
var p4 = p4 || {};
|
|
|
|
(function(p4, window){
|
|
|
|
p4.Results = {
|
|
'Selection':new Selectable($('#answers'), {
|
|
selector : '.IMGT',
|
|
selectStart:function(event, selection){
|
|
$('#answercontextwrap table:visible').hide();
|
|
},
|
|
selectStop:function(event, selection){
|
|
viewNbSelect();
|
|
},
|
|
callbackSelection:function(element){
|
|
return $(element).attr('id').split('_').slice(1,3).join('_');
|
|
}
|
|
})
|
|
};
|
|
|
|
return;
|
|
}(p4, window))
|