Export 0.1.44
authorYoumin Ha <youmin.ha@samsung.com>
Mon, 3 Sep 2012 08:21:45 +0000 (17:21 +0900)
committerYoumin Ha <youmin.ha@samsung.com>
Mon, 3 Sep 2012 08:21:45 +0000 (17:21 +0900)
packaging/web-ui-fw.spec
src/themes/tizen/common/jquery.mobile.listview.less
src/themes/tizen/common/jquery.mobile.tizen.swipelist.less
src/widgets/datetimepicker/js/jquery.mobile.tizen.datetimepicker.js
src/widgets/swipelist/js/jquery.mobile.tizen.swipelist.js

index 501aa97..ebd262d 100644 (file)
@@ -1,5 +1,5 @@
 Name:       web-ui-fw
-Version:    0.1.43
+Version:    0.1.44
 Release:    0
 Summary:    Tizen Web UI Framework Library
 Group:      Development/Other
@@ -88,6 +88,13 @@ Summary:    Tizen Web UI Framework Demo Application: tizen winset demo
 ###############################
 %changelog
 
+* Fri Aug 31 2012 Minkyu Kang <mk7.kang@samsung.com> 0.1.44
+- FIX:
+       - swipelist: show list items correctly
+       - datetimepicker: set last day, if day is overflowed
+- Spec changes:
+       - controlbar: update icons
+
 * Tue Aug 29 2012 Minkyu Kang <mk7.kang@samsung.com> 0.1.43
 - FIX:
        - notification: fix typo
index 1a5380e..40f21b0 100755 (executable)
 
 .ui-content {
        .ui-listview {
-               margin: -16 * @unit_base;
+               margin-left: -16 * @unit_base;
+               margin-right: -16 * @unit_base;
                padding-bottom: 1px;
 
                .ui-listview {
index dd7369e..5e133ac 100755 (executable)
@@ -7,16 +7,12 @@
 }
 
 .ui-swipelist-item {
+       height: 52 * @unit_base;
        -webkit-user-select: none;
        -user-select: none;
 
        .ui-btn {
-               margin-top: -0.3em !important;
-       }
-
-       .ui-dummy {
-               padding-top : 30 * @unit_base;
-               padding-bottom : 30 * @unit_base;
+               margin-top: -1.5em !important;
        }
 }
 
@@ -29,7 +25,6 @@
        height: 100%;
        z-index: 100;
 
-
        .ui-swipelist-item-cover-inner {
                position : absolute;
                padding-top : 30 * @unit_base;
index c1a7e52..f17b2c9 100644 (file)
                                        break;
                                case 'mm': //00 01 ... 59
                                case 'm': //0 1 2 ... 59
-                                       $(div).append( tpl.replace('%1', 'min') );
+                                       if ( this.options.type == 'date' ) {
+                                               $(div).append( tpl.replace('%1', 'month') );
+                                       } else {
+                                               $(div).append( tpl.replace('%1', 'min') );
+                                       }
                                        break;
                                case 'ss':
                                case 's':
                                                break;
                                        case 'month':
                                                date.setMonth( val - 1 );
+
+                                               if ( date.getMonth() == val ) {
+                                                       date.setDate( date.getDate() - 1 );
+                                               }
                                                break;
                                        case 'day':
                                                date.setDate( val );
index 05c9957..0fab979 100644 (file)
                                        coverTheme = defaultCoverTheme,
                                // get the parent li element and add classes
                                        item = cover.closest('li'),
-                                       btn,
                                        itemHasThemeClass;
 
                                // add swipelist CSS classes
 
                                // any clicks on buttons inside the item also trigger
                                // the cover to slide back to the left
-                               btn = item.find('.ui-btn');
-
-                               if ( btn.length ) {
-                                       btn.bind('vclick', cover.data('animateLeft'));
-                               } else {
-                                       item.append('<div class="ui-dummy"></div>');
-                               }
+                               item.find('.ui-btn').bind('vclick', cover.data('animateLeft'));
                        });
                },