ngCart icon indicating copy to clipboard operation
ngCart copied to clipboard

Really simple shopping cart for AngularJS

Results 52 ngCart issues
Sort by recently updated
recently updated
newest added

hi, gives a way to use ngcart in a Angular 4 Project ? or comes a Upgrade of ngcart who will work in Angular 4 ? Thanks Benny

I am not sure where to put the index.html. Should I be doing CLI: ng new nsCart and then to start the servers: ng server --open Any help would be...

Since https://github.com/snapjay/ngCart/blob/1.0.0/src/ngCart.js#L47 passes `relative = false` in `inCart.setQuantity()` ```js this.addItem = function (id, name, price, quantity, data) { var inCart = this.getItemById(id); if (typeof inCart === 'object'){ //Update quantity of...

I've an angular 1.6.x application renders to: ```html Aggiungi al carrello 123456789101112131415161718192021222324252627282930 Aggiungi al carrello This item is in your cart. Remove ``` but clicking on the add button does...

Hi, I am using your ngCart for my project. At first, it didn't work, so I checked the source code. And I add 'bower_components/ngCart/template' in front of the current templateUrl...

I have followed the steps yet it is not working properly. As shown in the demo, Add to Cart buttons are not appearing which is defined in the directive. Only,...

Hi there. I am trying to run from jsfiddle. I copy all the code listed there. But the code does not work properly, it only displays static html, there is...

Hi, I would need to access `ngCart.getTotalItems()` and `ngCart.totalCost()` functions from my controller's view (in order to display some items conditionally based on the number of items added to the...

Has anyone successfully altered the setQuantity function to allow for text inputs instead of only incrementing/decrementing already added products by one? I want each one of my products to have...