"perspectives": {
"ScanGalleryPerspective": {
"show": true,
- "page": 1
+ "page": undefined
},
"CodeMirrorPerspective": {}
/*
if($tab.length != 1)
$tab = $(DEFAULT_PERSPECTIVE);
- var $old = $('#tabs li').filter('.active');
+ var $old = $tab.closest('.tabs').find('.active');
$old.each(function(){
$(this).removeClass('active');
reportErrors: function(errors) {
var global = $("*[data-ui-error-for='__all__']", this.$elem);
var unassigned = [];
- var unassigned_text = '';
+ $("*[data-ui-error-for]", this.$elem).text('');
for (var field_name in errors)
{
var span = $("*[data-ui-error-for='"+field_name+"']", this.$elem);
if(!span.length) {
unassigned.push(field_name);
- unassigned_text += errors[field_name];
continue;
}
}
if(unassigned.length > 0)
- global.text( global.text() + unassigned_text);
+ global.text( global.text() + 'W formularzu wystąpiły błędy');
}
};