John Kenn
John Kenn
I'm getting this error when I submit the form: TypeError: Cannot read property 'apply' of undefined scope[attr.stripeForm].apply(scope, args); ``` ```
Does activeshipping gem supports creating of multi-piece shipment? Example: Our customer orders 2 pieces of item X. When we ask UPS/Fedex to ship the order of the customer, we need...
I'm getting this error `TypeError: Cannot read property 'statusCode' of undefined` when I use "mocha -w" command. ``` // 1st run Minimal example ✓ should provide a simple async testing...
Would be great if there's a way to change the delims "{{}}" to something else so it won't conflict w/ Angularjs templates. Currently, I don't see a way to change...
I tried the barcode demo app and it is not working. this is the error "Cannot read property 'barcodeScanner' of undefined" Its working on samsung galaxy y running android gingerbread...
Given this User model: ``` var ssaclAttributeRoles = require('ssacl-attribute-roles'); module.exports = function(sequelize, DataTypes) { var Model = sequelize.define("User", { password: { type: DataTypes.STRING, roles: false }, }, { classMethods: {...
Not currently sure how to check if the worker killer is working. Also, where can I check the logs of unicorn worker killer?
Is it possible to flatten or resolve references to other collections before indexing to Elasticsearch? Example I have this schema: ``` var PartSchema = new mongoose.Schema({ title: { type: String,...
For some reason, when using this module, errors like: `Error: Unexpected request: GET http://domain.com/api/v1/blah/` is not being thrown in unit tests. Because of this, you'll not immediately notice that there's...
Let's say I have a Customer model that belongs to a User. I saw this on the documentation for create method: ``` [options.include] Array an array of include options -...