Merge branch 'stable' into develop
This commit is contained in:
commit
aab21be09d
3 changed files with 13 additions and 0 deletions
|
|
@ -91,6 +91,7 @@ With the port to Bootstrap 3, app/views/terms/default.haml has a new structure.
|
|||
* Normalize new followed tags and insert them alphabetically [#6454](https://github.com/diaspora/diaspora/pull/6454)
|
||||
* Add avatar fallback for notification dropdown [#6463](https://github.com/diaspora/diaspora/pull/6463)
|
||||
* Improve handling of j/k hotkeys [#6462](https://github.com/diaspora/diaspora/pull/6462)
|
||||
* Fix JS error caused by hovercards [6480](https://github.com/diaspora/diaspora/pull/6480)
|
||||
|
||||
## Features
|
||||
* Show spinner on initial stream load [#6384](https://github.com/diaspora/diaspora/pull/6384)
|
||||
|
|
|
|||
|
|
@ -147,6 +147,7 @@ app.views.Hovercard = app.views.Base.extend({
|
|||
},
|
||||
|
||||
mouseIsOverElement: function(element, event) {
|
||||
if(!element) { return false; }
|
||||
var elPos = element.offset();
|
||||
return event.pageX >= elPos.left &&
|
||||
event.pageX <= elPos.left + element.width() &&
|
||||
|
|
|
|||
11
spec/javascripts/app/views/hovercard_view_spec.js
Normal file
11
spec/javascripts/app/views/hovercard_view_spec.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
describe("app.views.Hovercard", function() {
|
||||
beforeEach(function() {
|
||||
this.view = new app.views.Hovercard();
|
||||
});
|
||||
|
||||
describe("mouseIsOverElement", function() {
|
||||
it("returns false if the element is undefined", function() {
|
||||
expect(this.view.mouseIsOverElement(undefined, $.Event())).toBeFalsy();
|
||||
});
|
||||
});
|
||||
});
|
||||
Loading…
Reference in a new issue