|
@@ -8,6 +8,20 @@ $(document).ready(function () {
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
|
|
|
|
+$(document).ready(function () {
|
|
|
|
+ 'use strict';
|
|
|
|
+
|
|
|
|
+ $('#switcher').click(function(event) {
|
|
|
|
+ if (!$(event.target).is('button')) {
|
|
|
|
+ $('#switcher button').toggleClass('hidden');
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ $('#switcher-narrow, #switcher-large').click(function () {
|
|
|
|
+ $('#switcher').off('click');
|
|
|
|
+ });
|
|
|
|
+});
|
|
|
|
+
|
|
$(document).ready(function () {
|
|
$(document).ready(function () {
|
|
'use strict';
|
|
'use strict';
|
|
|
|
|
|
@@ -21,8 +35,6 @@ $(document).ready(function () {
|
|
|
|
|
|
$('#switcher button').removeClass('selected');
|
|
$('#switcher button').removeClass('selected');
|
|
$(event.target).addClass('selected');
|
|
$(event.target).addClass('selected');
|
|
- } else {
|
|
|
|
- $('#switcher button').toggleClass('hidden');
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
});
|
|
});
|
|
});
|
|
});
|