nakarte

Source code of https://map.sikmir.ru (fork)
git clone git://git.sikmir.ru/nakarte
Log | Files | Refs | LICENSE

commit ce87f6507fa6410fc7bee7a57d296840b6c8bce7
parent 07e7d4c9c9228494774ede375d4b48336ff5f1f3
Author: Sergej Orlov <wladimirych@gmail.com>
Date:   Thu,  9 Feb 2017 11:34:37 +0300

[knockout progress component] fixed typo

Diffstat:
Msrc/lib/knockout.component.progress/progress.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/knockout.component.progress/progress.js b/src/lib/knockout.component.progress/progress.js @@ -5,7 +5,7 @@ ko.components.register('progress-indicator', { template: ` <div class="ko-progress-unknown" data-bind="visible: progress() === undefined"></div> <div class="ko-progress" data-bind="visible: progress() !== undefined"> - <div class="ko-progress-bkg">' + + <div class="ko-progress-bkg"> <div class="ko-progress-bar" data-bind="style: {width: progress() + '%'}"></div> </div> </div>`,