end of day commit
This commit is contained in:
@@ -1,4 +1,12 @@
|
||||
jQuery ->
|
||||
$("a[rel=popover]").popover()
|
||||
$(".tooltip").tooltip()
|
||||
$("a[rel=tooltip]").tooltip()
|
||||
$("a[rel=tooltip]").tooltip()
|
||||
$('input.currency').each(->
|
||||
obj = $(this)
|
||||
original_width = obj.width()
|
||||
obj.wrap("<div class='input-prepend'>")
|
||||
currency_sign = $("<span class='add-on'>€</span>")
|
||||
obj.before(currency_sign)
|
||||
obj.css('width', (original_width - currency_sign.outerWidth())+'px')
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user