jablonka.czprosek.czf

freenet-router

Subversion Repositories:
[/] [trunk/] [freenet-router/] [var/] [www/] [freenet-router/] [Application/] [Resources/] [javascript/] [btnToggle.js] - Blame information for rev 2

 

Line No. Rev Author Line
12simandl$(document).ready(function(){
2 $('.btn-toggle').click(function() {
3 $(this).find('.btn').toggleClass('active');
4 
5 if ($(this).find('.btn-primary').size()>0) {
6 $(this).find('.btn').toggleClass('btn-primary');
7 }
8 if ($(this).find('.btn-danger').size()>0) {
9 $(this).find('.btn').toggleClass('btn-danger');
10 }
11 if ($(this).find('.btn-success').size()>0) {
12 $(this).find('.btn').toggleClass('btn-success');
13 }
14 if ($(this).find('.btn-info').size()>0) {
15 $(this).find('.btn').toggleClass('btn-info');
16 }
17 
18 $(this).find('.btn').toggleClass('btn-default');
19 return false;
20 });
21});

Powered by WebSVN 2.2.1