From 2d60b2cbb6b94d6053da4b169d4167203bc22f1f Mon Sep 17 00:00:00 2001
From: Gabriel Schulhof
Date: Sat, 25 Oct 2014 00:28:23 +0300
Subject: [PATCH] Theme: Remove iconshadow-related UI from default theme demo
Fixes gh-7749
---
demos/theme-default/index.php | 16 ----------------
1 file changed, 16 deletions(-)
diff --git a/demos/theme-default/index.php b/demos/theme-default/index.php
index 36ff0937465..94ece707569 100644
--- a/demos/theme-default/index.php
+++ b/demos/theme-default/index.php
@@ -26,13 +26,6 @@
$( "#testpage" ).addClass( "noshadow" );
}
});
- $( "#opt-iconshadow input" ).on( "change", function( event ) {
- if ( $( "#off1" ).prop( "checked" ) ) {
- $( "#testpage" ).removeClass( "ui-shadow-icon" );
- } else if ( $( "#on1" ).prop( "checked" ) ) {
- $( "#testpage" ).addClass( "ui-shadow-icon" );
- }
- });
$( "#opt-navbars input" ).on( "change", function( event ) {
if ( $( "#show" ).prop( "checked" ) ) {
$( "#testpage .ui-navbar" ).show();
@@ -101,15 +94,6 @@
-
-
-