r3608 committed - created replacement for ui-icon-seek-first as ui-icon-seek-start

r3608 committed - created replacement for ui-icon-seek-first as ui-icon-seek-start

Revision: 3608
Author: joern.zaefferer
Date: Mon Jan 4 07:40:12 2010
Log: created replacement for ui-icon-seek-first as ui-icon-seek-start
http://code.google.com/p/jquery-ui/source/detail?r=3608
Modified:
/branches/dev/demos/button/toolbar.html
/branches/dev/themes/base/ui.theme.css
=======================================
--- /branches/dev/demos/button/toolbar.html    Mon Jan 4 02:50:54 2010
+++ /branches/dev/demos/button/toolbar.html    Mon Jan 4 07:40:12 2010
@@ -1,7 +1,7 @@
<!doctype html>
<html lang="en">
<head>
-    <title>jQuery UI Button - Default demo</title>
+    <title>jQuery UI Button - Toolbar demo</title>
    <link type="text/css" href="../../themes/base/ui.all.css"
rel="stylesheet" />
    <script type="text/javascript" src="../../jquery-1.3.2.js"></script>
    <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
@@ -18,7 +18,7 @@
        $('#beginning').button({
            text: false,
            icons: {
-                primary: 'ui-icon-seek-first'
+                primary: 'ui-icon-seek-start'
            }
        });
        $('#rewind').button({
=======================================
--- /branches/dev/themes/base/ui.theme.css    Wed Dec 30 10:10:00 2009
+++ /branches/dev/themes/base/ui.theme.css    Mon Jan 4 07:40:12 2010
@@ -186,6 +186,7 @@
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
+.ui-icon-seek-start { background-position: -80px -160px; }
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
--