From ee616e9e66df28787058bc84548a8d2282ca0c6c Mon Sep 17 00:00:00 2001 From: Aimee Date: Wed, 10 Apr 2013 22:17:03 -0700 Subject: [PATCH 1/2] Add another function to say hello add somthing --- hello.html | 2 ++ linjun.js | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 linjun.js diff --git a/hello.html b/hello.html index e92f92a..dc08832 100644 --- a/hello.html +++ b/hello.html @@ -2,6 +2,7 @@ + Hello Team @@ -29,6 +30,7 @@ // one by one, call all of the functions that add to the text content updateText(elisabeth(), textContent); updateText(bob(), textContent); +updateText(linjun(), textContent); // Note: we need to add more function here for everyone to say hello. // append the text content to the document diff --git a/linjun.js b/linjun.js new file mode 100644 index 0000000..d2918e0 --- /dev/null +++ b/linjun.js @@ -0,0 +1,3 @@ +function linjun() { + return "Linjun(Aimee) says hello." +} \ No newline at end of file From e2b04f4f86bea4c90b17c56d1ade3c567303a3ee Mon Sep 17 00:00:00 2001 From: Aimee Date: Wed, 10 Apr 2013 22:42:29 -0700 Subject: [PATCH 2/2] Add another hello from Linjun --- hello.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.html b/hello.html index dc08832..41785d6 100644 --- a/hello.html +++ b/hello.html @@ -2,7 +2,7 @@ - + Hello Team