<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -92,12 +92,12 @@
             &lt;input type=&quot;hidden&quot; id=&quot;pl-bpm-range-stop&quot;&gt;
             &lt;label id=&quot;bpm-range-label&quot;&gt;BPM Range&lt;/label&gt;
             &lt;div class=&quot;bpm-range&quot;&gt;
-              &lt;label id=&quot;bpm-range-start&quot;&gt;0&lt;/label&gt;
+              &lt;label id=&quot;bpm-range-start&quot;&gt;50&lt;/label&gt;
                &lt;div class=&quot;ui-slider-1&quot; id=&quot;pl-bpm-range-slider&quot;&gt;
                  &lt;div class=&quot;ui-slider-handle&quot; id=&quot;bpm-handle-start&quot;&gt;&lt;/div&gt;
                  &lt;div class=&quot;ui-slider-handle&quot; id=&quot;bpm-handle-stop&quot;&gt;&lt;/div&gt;
               &lt;/div&gt;
-              &lt;label id=&quot;bpm-range-stop&quot;&gt;250&lt;/label&gt;
+              &lt;label id=&quot;bpm-range-stop&quot;&gt;200&lt;/label&gt;
             &lt;/div&gt;
             
           &lt;/div&gt;</diff>
      <filename>player.html</filename>
    </modified>
    <modified>
      <diff>@@ -72,17 +72,17 @@ SC.Player.prototype = {
 
     // create smart playlist, bpm slider
     $(&quot;#pl-bpm-range-slider&quot;).slider({
-      min : 0,
-      max : 250,
+      min : 50,
+      max : 200,
       range: true,
+      values: [50,200],
       slide : function(e, ui) {
-        $(&quot;#bpm-range-start&quot;).text($(&quot;#pl-bpm-range-slider&quot;).slider(&quot;value&quot;,0));
-        $(&quot;#bpm-range-stop&quot;).text(Math.floor($(&quot;#pl-bpm-range-slider&quot;).slider(&quot;value&quot;,0) + ui.range));
+        $(&quot;#bpm-range-start&quot;).text(ui.values[0]);
+        $(&quot;#bpm-range-stop&quot;).text(ui.values[1]);
+        $(&quot;#pl-bpm-range-start&quot;).val(ui.values[0]);
+        $(&quot;#pl-bpm-range-stop&quot;).val(ui.values[1]);
       },
-      change : function(e, ui) {
-        $(&quot;#pl-bpm-range-start&quot;).val($(&quot;#pl-bpm-range-slider&quot;).slider(&quot;value&quot;,0));
-        $(&quot;#pl-bpm-range-stop&quot;).val($(&quot;#pl-bpm-range-slider&quot;).slider(&quot;value&quot;,0) + ui.range);
-      }
+      orientation : 'horizontal'
     });
     
     // code to prevent keypress event from triggering when creating smart playlist
@@ -208,9 +208,11 @@ SC.Player.prototype = {
       this.volume = 100; // default to max
     }
 
+    console.log(this.volume)
+
     // volume
     $(&quot;#volume&quot;).slider({
-      startValue : this.volume,
+      value : this.volume,
       min : 0,
       max : 100,
       slide : function(e, ui) {
@@ -220,6 +222,7 @@ SC.Player.prototype = {
         }
       },
       change : function(e, ui) {
+        console.log(e,ui.value)
         $.cookie('volume',ui.value); // save the volume in a cookie
       }
     });</diff>
      <filename>scripts/player.js</filename>
    </modified>
    <modified>
      <diff>@@ -401,13 +401,14 @@ table {
     left: 24px;
     background-image: url(/images/icons.png);
     background-position: -150px 56px;
-    width: 104px;
+    width: 99px;
     height: 10px;
   }
   
   .ui-slider-range {
     background: rgba(63,111,211,0.2);
     height: 10px;
+    position: absolute;
   }
 
   #create-smart-playlist .buttons {
@@ -916,7 +917,7 @@ table {
   left: 149px;
   background-image: url(/images/icons.png);
   background-position: -150px 56px;
-  width: 104px;
+  width: 99px;
   height: 10px;  
 }
 
@@ -948,6 +949,7 @@ table {
   background-position: -151px 79px;
   position: absolute;
   z-index: 10;
+  margin-left: -6px;
 }
 
 #footer input[type=image] {</diff>
      <filename>stylesheets/player.css</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>6419d328ad3aa2509ba6709b6fa38a90f1a4a4f2</id>
    </parent>
  </parents>
  <author>
    <name>Eric Wahlforss</name>
    <email>eric@wahlforss.com</email>
  </author>
  <url>http://github.com/hinke/the-cloud-player/commit/56280e659d8d9de1f7fd2982a82a8eb1a87b9ca6</url>
  <id>56280e659d8d9de1f7fd2982a82a8eb1a87b9ca6</id>
  <committed-date>2009-02-05T07:03:30-08:00</committed-date>
  <authored-date>2009-02-05T07:03:30-08:00</authored-date>
  <message>fix vol and bpm slider</message>
  <tree>474c4e973d7956640bed7828703e180c51d79b57</tree>
  <committer>
    <name>Eric Wahlforss</name>
    <email>eric@wahlforss.com</email>
  </committer>
</commit>
