fix button roundness

This commit is contained in:
2015-04-23 23:59:06 +02:00
parent 23ea454d9b
commit 345ca91a43
7 changed files with 16 additions and 40 deletions

2
jquery/common.js vendored
View File

@@ -39,7 +39,7 @@ $.prototype.addButton = function(sType, sTitle, oClickLink, sId, sButtonClass, s
{
$This = $(this);
sButtonClass = sButtonClass || '';
var asAttributes = {id:(sId || ''), 'class':'button round'+sButtonClass};
var asAttributes = {id:(sId || ''), 'class':'button round '+sButtonClass};
//Link
var bLink = (typeof oClickLink == 'string');