diff options
| author | Scott Ostler <scottbot9000@gmail.com> | 2011-01-04 15:42:23 -0500 |
|---|---|---|
| committer | Scott Ostler <scottbot9000@gmail.com> | 2011-01-04 15:42:23 -0500 |
| commit | 92b092823c21af1339e0d42716dc856357f93e85 (patch) | |
| tree | 809221e2a3b3c88306ba5e4b4996eb05297cec02 /template/profile.st | |
| parent | 7a031af911887a913857fdcebb252231119f4bf9 (diff) | |
Added topics, refactored recipient handling
Diffstat (limited to 'template/profile.st')
| -rw-r--r-- | template/profile.st | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/template/profile.st b/template/profile.st index 6b54c43..82c77e6 100644 --- a/template/profile.st +++ b/template/profile.st @@ -2,16 +2,16 @@ <head> <title>$nick$'s dump.fm</title> <meta property="og:image" content="$avatar$"/> - <meta property="og:title" content="$nick$'s dump.fm"/> - <meta property="og:site_name" content="dump.fm"/> + <meta property="og:title" content="$nick$'s dump.fm"/> + <meta property="og:site_name" content="dump.fm"/> $head()$ <script src="/static/js/jquery.editinplace.1.0.1.packed.js" type="text/javascript"></script> <script src="/static/js/ajaxupload.js"></script> <script> - jQuery(document).ready(initProfile); + jQuery(function() { + initProfile($recips$); + }); </script> - - <script> //MESSAGE STUFF @@ -28,8 +28,7 @@ jQuery(document).ready(function() { }); }); - </script> - + </script> </head> <body class="profiledash"> $if(avatar)$ @@ -124,11 +123,6 @@ jQuery(document).ready(function() { </div> }$ </div> - <script> - var Recips = $recips$; - </script> - - </div> <div id="footerc"> $footer()$ |
