File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 17
17
link : function ( scope , element , attrs , ngModel ) {
18
18
var pendingSaveRequest = null ;
19
19
var options = {
20
+ showPlaceholderCount : false ,
20
21
deleteKeyAlwaysChangeValue : false ,
21
22
lazySaveTimeout : ariaNgConstants . lazySaveTimeout ,
22
23
errorTooltipPlacement : 'top' ,
85
86
} ;
86
87
87
88
var getTotalCount = function ( itemsText , separator , trim ) {
88
- if ( ! itemsText || ! angular . isString ( itemsText ) ) {
89
+ if ( ! itemsText || ! separator || ! angular . isString ( itemsText ) ) {
89
90
return 0 ;
90
91
}
91
92
180
181
var fixedValueCount = getTotalCount ( scope . fixedValue , scope . option . separator , scope . option . trimCount ) ;
181
182
var inputValueCount = getTotalCount ( scope . optionValue , scope . option . separator , scope . option . trimCount ) ;
182
183
184
+ if ( ! scope . optionValue && scope . showPlaceholderCount ) {
185
+ inputValueCount = scope . placeholderItemCount ;
186
+ }
187
+
183
188
return fixedValueCount + inputValueCount ;
184
189
} ;
185
190
313
318
}
314
319
315
320
scope . placeholder = getHumanReadableValue ( displayValue ) ;
321
+ scope . placeholderItemCount = getTotalCount ( scope . placeholder , scope . option . separator , scope . option . trimCount ) ;
316
322
} ) ;
317
323
324
+ scope . showPlaceholderCount = options . showPlaceholderCount === true || options . showPlaceholderCount === 'true' ;
318
325
loadHistory ( ) ;
319
326
}
320
327
} ;
Original file line number Diff line number Diff line change 83
83
</ div >
84
84
</ div >
85
85
< ng-setting ng-repeat ="option in context.availableOptions " ng-if ="context.optionFilter[option.category] "
86
- option ="option " lazy-save-timeout ="0 " delete-key-always-change-value ="true "
86
+ option ="option " show-placeholder-count ="true "
87
+ lazy-save-timeout ="0 " delete-key-always-change-value ="true "
87
88
default-value ="(option.overrideMode !== 'append' && !context.options[option.key] && context.options[option.key] !== '') ? context.globalOptions[option.key] : '' "
88
89
fixed-value ="option.overrideMode === 'append' ? context.globalOptions[option.key] : '' "
89
90
on-change-value ="setOption(key, value, optionStatus) "> </ ng-setting >
Original file line number Diff line number Diff line change 4
4
< em ng-bind ="'(' + option.key + ')' "> </ em >
5
5
< i class ="icon-primary fa fa-question-circle " ng-if ="(option.descriptionKey | translate) !== '' "
6
6
data-toggle ="popover " data-trigger ="hover " data-placement ="auto top " data-container ="body " data-content ="{{option.descriptionKey | translate}} "> </ i >
7
- < span class ="description " ng-if ="option.showCount && option.separator && (optionValue || fixedValue) "
7
+ < span class ="description " ng-if ="option.showCount && option.separator && (optionValue || fixedValue || (placeholder && showPlaceholderCount) ) "
8
8
ng-bind ="'format.settings.total-count' | translate: {count: getTotalCount()} "> </ span >
9
9
< i class ="icon-primary fa fa-info-circle " ng-if ="(option.since && option.since !== '') " ng-tooltip ="{{('format.requires.aria2-version' | translate: {version: option.since})}} " ng-tooltip-container ="body " ng-tooltip-placement ="right "> </ i >
10
10
</ div >
You can’t perform that action at this time.
0 commit comments