[SelfCamera] updated SelfCamera sources
authorPiotr Dabrowski <p.dabrowski2@samsung.com>
Tue, 20 Aug 2013 13:23:32 +0000 (15:23 +0200)
committerPiotr Dabrowski <p.dabrowski2@samsung.com>
Tue, 20 Aug 2013 13:23:32 +0000 (15:23 +0200)
Change-Id: I550515123aed35f600fc2c9485490a299c65b260

js/main.js

index e49641b..10ccca8 100644 (file)
@@ -102,16 +102,6 @@ function SelfCamera() {
                if (this.filename === '') {
                        return false;
                }
-
-               function fillStr(num) {
-                       num = num.toString();
-                       if (num.length < 2) {
-                               num = '00' + num;
-                       } else if (num.length < 3) {
-                               num = '0' + num;
-                       }
-                       return num;
-               }
                this.showPhotoPreview(this.filename);
                return true;
        };