Özgür Yazılım Derneği web sitesi
https://oyd.org.tr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
399 B
17 lines
399 B
8 months ago
|
$(document).ready(function() {
|
||
|
|
||
|
// Instructs the browser to release the focus from buttons. Could be a Bootstrap bug.
|
||
|
|
||
|
$(".btn").mouseup(function() {
|
||
|
$(this).blur();
|
||
|
})
|
||
|
|
||
|
// Push the 'Actions' pane to the bottom on mobile
|
||
|
if ($('body').width() < 960) {
|
||
|
$("#actions").insertBefore("#charities");
|
||
|
} else {
|
||
|
$("#actions").insertAfter("#intro");
|
||
|
}
|
||
|
|
||
|
});
|