Fixed: Back to top button is back

Fixed: Delete series in Firefox
This commit is contained in:
kayone 2013-10-10 18:29:18 -07:00
commit 48c9e29eab
3 changed files with 24 additions and 40 deletions

View file

@ -1,8 +1,9 @@
'use strict';
define(
[
'jquery',
'bootstrap'
], function () {
], function ($) {
$(document).ready(function () {
var _window = $(window);
@ -18,7 +19,7 @@ define(
});
_scrollButton.click(function () {
$("html, body").animate({ scrollTop: 0 }, 600);
$('html, body').animate({ scrollTop: 0 }, 600);
return false;
});
});