Change name, PD to DropView
authorleerang song <leerang.song@samsung.com>
Thu, 2 May 2013 01:18:01 +0000 (10:18 +0900)
committerYunchan Cho <yunchan.cho@samsung.com>
Mon, 6 May 2013 05:27:07 +0000 (14:27 +0900)
[Issue#] N/A
[Problem] N/A
[Cause] N/A
[Solution] Change name, PD to DropView.
[SCMRequest] N/A

Change-Id: I1620b11efacd2c6ea1c7e8de919cfded25d2a23a

box/index.html
pd/index.html

index f3a3b76..d152616 100755 (executable)
@@ -6,12 +6,12 @@
         <script>
             window.onmessage = function(e) {
                 document.getElementById("message").innerHTML += e.data;
-                pdWindow.document.getElementById("fromBox").innerHTML += "<br>[web messaging] Hello, PD";
+                pdWindow.document.getElementById("fromBox").innerHTML += "<br>[web messaging] Hello, DropView";
             }
             window.addEventListener("pdevent",
             function(e) {
                 document.getElementById("message").innerHTML += e.detail.message;
-                pdWindow.document.getElementById("fromBox").innerHTML += "<br>[custom event] Hello, PD";
+                pdWindow.document.getElementById("fromBox").innerHTML += "<br>[custom event] Hello, DropView";
             }, false);
         </script>
     </head>
index 74bd333..01d828c 100755 (executable)
@@ -26,7 +26,7 @@
         </script>
     </head>
     <body bgcolor="#FF9966" text="#FFFFFF">
-        This is a PD.<br>A PD can control the Box.<br>
+        This is a DropView.<br>A DropView can control the Box.<br>
         <input type="button" value="ColorChange" onclick="accessParentElement()" />
         <input type="button" value="WebMessage" onclick="accessWebMessaging()" />
         <input type="button" value="CustomEvent" onclick="accessCustomEvent()" />