add patch for remove segment text
authorJinhyuk Jun <jinhyuk.jun@samsung.com>
Fri, 14 Dec 2012 02:22:30 +0000 (11:22 +0900)
committerYoumin Ha <youmin.ha@samsung.com>
Thu, 20 Dec 2012 05:06:06 +0000 (14:06 +0900)
Change-Id: I9c0fbcf681182b4f10226a0db0ce5183386c8de9

Conflicts:

src/widgets/pagelayout/js/jquery.mobile.tizen.pagelayout.js

src/themes/tizen/common/jquery.mobile.theme.less
src/widgets/pagelayout/js/jquery.mobile.tizen.pagelayout.js

index 141de86..d9c79ad 100755 (executable)
                        padding : 0px;
                        -webkit-box-shadow : none /* temp code */
                }
-               .ui-btn-footer-right .ui-btn-icon-only .ui-icon {
-                       left : 8 * @unit_base;
-               }
        }
 
        [data-icon="naviframe-more"] {
index 39d4164..fccb198 100755 (executable)
                                $elControlgroup = $elHeader.find( ":jqmData(role='controlgroup')" ),
                                $elContent = $elPage.find( ".ui-content" ),
                                next_id,
-                               $elFooter,
-                               $elFooterGroup,
+                               $elFooter = $( document ).find( ":jqmData(role='footer')" ),
+                               $elFooterGroup = $elFooter.find( ":jqmData(role='fieldcontain')" ),
                                gLength,
                                footerButton;
 
                                }
                        }
 
-                       $elFooter = $( document ).find( ":jqmData(role='footer')" );
-                       footerButton = $elFooter.children( "a" );
-                       footerButton.each( function ( i ) {
-                               if ( footerButton.eq( i ).is(".ui-btn") && !footerButton.eq( i ).is(".ui-btn-back") ) {
-                                       footerButton.eq( i )
-                                               .removeClass( "ui-btn-left" )
-                                               .addClass( "ui-btn-footer-right" );
-                               }
-                       });
-
-                       if ( $elFooter.find( ".ui-controlgroup" ).length ) {
-                               footerControlButton = $elFooter.find( ".ui-controlgroup a" );
-                               footerControlButtonWidth = 100 / $elFooter.find( ".ui-controlgroup a" ).length;
-                               footerControlButton.each( function ( i ) {
-                                       footerControlButton.eq( i ).css( "max-width", footerControlButtonWidth + "%" );
-                               });
+                       if ( $elFooterGroup.find( "div" ).is( ".ui-controlgroup-label" ) ) {
+                               $elFooterGroup.find( "div.ui-controlgroup-label" ).remove();
                        }
                },