Put square brackets around ids in notifier debug output if multiple ids passed
This commit is contained in:
parent
3796741911
commit
b31be7af7e
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ Scholar.Notifier = new function(){
|
||||||
}
|
}
|
||||||
|
|
||||||
Scholar.debug("Notifier.trigger('" + event + "', '" + type + "', "
|
Scholar.debug("Notifier.trigger('" + event + "', '" + type + "', "
|
||||||
+ (typeof ids=='Object' ? ids.join() : ids) + ") called "
|
+ (typeof ids=='object' ? '[' + ids.join() + ']' : ids) + ") called "
|
||||||
+ "[column trees: " + _observers['columnTree'].length
|
+ "[column trees: " + _observers['columnTree'].length
|
||||||
+ ", item trees: " + _observers['itemTree'].length + "]");
|
+ ", item trees: " + _observers['itemTree'].length + "]");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue