15 lines
432 B
Text
15 lines
432 B
Text
= content_for :title, "Choose new Dagschotel"
|
|
= render 'products/index'
|
|
= javascript_tag do
|
|
var id = $("#remove_dagschotel").find(".btn");
|
|
default_value=id.val();
|
|
|
|
id.hover(function () {
|
|
$(this).toggleClass("btn-success");
|
|
$(this).toggleClass("btn-danger");
|
|
$(this).val("Remove dagschotel");
|
|
}, function(){
|
|
$(this).val(default_value);
|
|
$(this).toggleClass("btn-success");
|
|
$(this).toggleClass("btn-danger");
|
|
});
|