r2818 - removed console logging demo so it doesn't throw errors in non-firebug browsers

r2818 - removed console logging demo so it doesn't throw errors in non-firebug browsers


Author: scottjehl
Date: Fri Jun 19 07:44:48 2009
New Revision: 2818
Modified:
branches/labs/selectmenu/index.html
Log:
removed console logging demo so it doesn't throw errors in non-firebug
browsers
Modified: branches/labs/selectmenu/index.html
==============================================================================
--- branches/labs/selectmenu/index.html    (original)
+++ branches/labs/selectmenu/index.html    Fri Jun 19 07:44:48 2009
@@ -62,22 +62,6 @@
                ]
            });
            
-            //sample with logging
-            $('select#speedE').selectmenu({
-                open: function(event,ui){
-                    console.log('event: '+event.type+', value: '+ui.value);
-                },
-                close: function(event,ui){
-                    console.log('event: '+event.type+', value: '+ui.value);
-                },
-                select: function(event,ui){
-                    console.log('event: '+event.type+', value: '+ui.value);
-                },
-                change: function(event,ui){
-                    console.log('event: '+event.type+', value: '+ui.value);
-                }
-            });
-            
            
        });
        
@@ -222,18 +206,7 @@
            </select>
        </fieldset>
        
-        
-        <h2>Demo with events logged to console.</h2>
-        <fieldset>
-            <label for="speedE">Select a Speed:</label>
-            <select name="speedE" id="speedE">
-                <option value="Slower">Slower</option>
-                <option value="Slow">Slow</option>
-                <option value="Medium" selected="selected">Medium</option>
-                <option value="Fast">Fast</option>
-                <option value="Faster">Faster</option>
-            </select>
-        </fieldset>
+
    </form>
</body>