Mauro Alexandre

Results 6 issues of Mauro Alexandre

For work with JQuery >= 1.9 is necessary change event.clientX and event.clientY to event.originalEvent.clientX and event.originalEvent.clientY [(https://jquery.com/upgrade-guide/1.9/#removed-properties-of-the-event-object)](https://jquery.com/upgrade-guide/1.9/#removed-properties-of-the-event-object) I will try send PR later. Thanks for your project.

Directive not working when use custom angular ``` app.config(function($interpolateProvider, $httpProvider) { $interpolateProvider.startSymbol('[['); $interpolateProvider.endSymbol(']]'); }); ``` This is necessary because i'm using Django and the template engine uses the same symbols...

I don't know if is related with the issue #596 but the error is the same ## Source https://gist.github.com/upmauro/90be14ddad9cc14d2f0d93be70eb0269 ## Error `KeyError: u'table_a'`

## API `manager.create_api(Vehicle, methods=['GET', 'POST', 'DELETE'], preprocessors=dict(GET_SINGLE=[auth_func], GET_MANY=[auth_func]), primary_key='id') ` ## MODELS ``` class Vehicle(db.Model): __tablename__ = 'vehicle' id = db.Column(db.Integer, primary_key=True) plate = db.Column(db.String(8)) title = db.Column(db.String(255)) fleet_number =...

bug

The function below not work for check if angular using jqLite ot jQuery in the last version of angular. Maybe we need change to check if element have a exclusive...