fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Ticket #801 - better editor's textarea without interfering with gallery sidebar
[redakcja.git]
/
redakcja
/
static
/
js
/
wiki
/
base.js
diff --git
a/redakcja/static/js/wiki/base.js
b/redakcja/static/js/wiki/base.js
index
3fa47cc
..
de1d8e5
100644
(file)
--- a/
redakcja/static/js/wiki/base.js
+++ b/
redakcja/static/js/wiki/base.js
@@
-111,7
+111,7
@@
if($tab.length != 1)
$tab = $(DEFAULT_PERSPECTIVE);
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');
$old.each(function(){
$(this).removeClass('active');
@@
-298,7
+298,6
@@
reportErrors: function(errors) {
var global = $("*[data-ui-error-for='__all__']", this.$elem);
var unassigned = [];
reportErrors: function(errors) {
var global = $("*[data-ui-error-for='__all__']", this.$elem);
var unassigned = [];
- var unassigned_text = '';
for (var field_name in errors)
{
for (var field_name in errors)
{
@@
-306,7
+305,6
@@
if(!span.length) {
unassigned.push(field_name);
if(!span.length) {
unassigned.push(field_name);
- unassigned_text += errors[field_name];
continue;
}
continue;
}
@@
-314,7
+312,7
@@
}
if(unassigned.length > 0)
}
if(unassigned.length > 0)
- global.text( global.text() +
unassigned_text
);
+ global.text( global.text() +
'W formularzu wystąpiły błędy'
);
}
};
}
};