Play and Stop button need to change 'block' to 'inline' on CSS display property.
authorkeonho07.kim <keonho07.kim@samsung.com>
Mon, 8 Jul 2013 07:36:14 +0000 (16:36 +0900)
committerkeonho07.kim <keonho07.kim@samsung.com>
Mon, 8 Jul 2013 07:45:10 +0000 (16:45 +0900)
[Title] Play and Stop button need to change 'block' to 'inline' on CSS display property.
[Problem] N_SE-45205
[Cause] N/A
[Solution] Change block to inline

Change-Id: I820d7d5236958e9c2729c2ccd587728296c61fbf

js/main.js

index db82a29..930412b 100755 (executable)
@@ -47,7 +47,7 @@ function webAudioInit() {
     */\r
     this.playSound = function () {\r
         document.querySelector('.play').style.display = 'none';\r
-        document.querySelector('.stop').style.display = 'block';\r
+        document.querySelector('.stop').style.display = 'inline';\r
 \r
         //re-create the source node\r
         if (soundSource.playbackState != 0)\r
@@ -66,7 +66,7 @@ function webAudioInit() {
     this.stopSound = function () {\r
         //stop the source now\r
         try {\r
-            document.querySelector('.play').style.display = 'block';\r
+            document.querySelector('.play').style.display = 'inline';\r
             document.querySelector('.stop').style.display = 'none';\r
 \r
             if (soundSource.playbackState != 0) {\r