turn multiple profiles into a feature, implement connection flags (block,hide,archive,etc.)
This commit is contained in:
@@ -3709,3 +3709,4 @@ ul.menu-popup {
|
||||
.notify-seen {
|
||||
background: #DDDDDD;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
|
||||
<h2>$header</h2>
|
||||
|
||||
<br />
|
||||
<a href="connections/$contact_id/profile">$viewprof</a>
|
||||
|
||||
<div id="connection-flag-tabs">
|
||||
$tabs
|
||||
</div>
|
||||
|
||||
<div id="contact-edit-wrapper">
|
||||
<br />
|
||||
@@ -10,6 +12,8 @@
|
||||
|
||||
$slide
|
||||
|
||||
|
||||
|
||||
<h3>Permissions</h3>
|
||||
|
||||
<form action="abook/$contact_id" method="post" >
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<div id="contact-slider" class="slider" style="height: 32px; position: relative; left: 5%; width: 90%;"><input id="contact-range" type="text" name="fake-closeness" value="$val" /></div>
|
||||
<script>
|
||||
$("#contact-range").slider({ from: 0, to: 99, step: 1, scale: ['$me', '$intimate', '|', '$friends', '|', '$coworkers', '|', '$oldfriends', '|', '$acquaintances', '|', '$world' ], onstatechange: function(v) { $("#contact-closeness-mirror").val(v); } });
|
||||
$("#contact-range").slider({ from: 0, to: 99, step: 1, scale: ['$me', '|', '$intimate', '|', '$friends', '|', '$oldfriends', '|', '$acquaintances', '|', '$world' ], onstatechange: function(v) { $("#contact-closeness-mirror").val(v); } });
|
||||
</script>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<div id="main-slider" class="slider" ><input id="main-range" type="text" name="cminmax" value="$val" /></div>
|
||||
<script>
|
||||
$("#main-range").slider({ from: 0, to: 99, step: 1, scale: ['$me', '$intimate', '|', '$friends', '|', '$coworkers', '|', '$oldfriends', '|', '$acquaintances', '|', '$world' ], onstatechange: function(v) {
|
||||
$("#main-range").slider({ from: 0, to: 99, step: 1, scale: ['$me', '|', '$intimate', '|', '$friends', '|', '$oldfriends', '|', '$acquaintances', '|', '$world' ], onstatechange: function(v) {
|
||||
var carr = v.split(";");
|
||||
network_cmin = carr[0];
|
||||
network_cmax = carr[1];
|
||||
|
||||
Reference in New Issue
Block a user