Famous / Famous/famous-angular

fa-pipe-to not working on chrome v37 (windows 8.1)

Open
#222 4 comments 0 reactions 1 assignee Claimed by @zackbrown View on GitHub
Dominant language
JavaScript
Stars
1.9k
Forks
267
PR merge metrics
No merged PRs in 30d

Description

The following example worked on chrome (OSX v37), firefox (v32), ie11 (windows 8.1) but does not work with chrome(v37) on windows.

Can anyone replicate this issue? I'm using:
- famous-angular 0.4
- famous-global 0.2.2
- angular.js v1.2.22

index.html

``` html





```

main.js

``` javascript
app = angular.module("testApp",['famous.angular'])
app.controller("testController", ['$scope','$famous', function($scope, $famous) {
var EventHandler = $famous['famous/core/EventHandler'];
$scope.eventHandler = new EventHandler();

$scope.eventHandler.on("mousedown", function(e) {
console.log(e);
});

$scope.eventHandler.on("mouseup", function(e) {
console.log(e);
});

}]);
```

Let me know if any other information is needed.

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.