Damien Law
Damien Law
There is no semicolon at the end of the file https://github.com/shaack/bootstrap-input-spinner/blob/29b09b4be6bf0dd4af0a0a0cb55594093eeec329/src/bootstrap-input-spinner.js#L372 It is however added at the beginning https://github.com/shaack/bootstrap-input-spinner/blob/29b09b4be6bf0dd4af0a0a0cb55594093eeec329/src/bootstrap-input-spinner.js#L7 This library, among many other third party libraries are concatenated/bundled together...
This is a suggestion for enhancement. When setting a cache (`IAbpCache.Set()`), allow the method to take in an optional callback as parameter. As the cached item expires or being evicted,...
For this example, I'm going to use the Cheque / Money Order payment plugin but could as well applicable to other plugins. The payment instructions could be found during Checkout...
This is a discussion to pick some of our brains to make nopCommerce even more extensible than it already is. See if this could lead to somewhere. I notice that...
I have a model ``` public class TestModel { [ExplicitKey] public int ExplicitId1 { get; set; } [ExplicitKey] public int ExplicitId2 { get; set; } public int Property1 { get;...
Version: 2.2.0 Steps to reproduce: 1. Create 2 input spinners 2. Attach `change` event handlers to both spinners ``` $("#spinnerA").change(function () { console.log("Hello"); }); $("#spinnerB").change(function () { console.log("World"); }); ```...
Abp version: 7.4 .NET 6 EF Core 7 Global filters such as _Soft Delete_, _May Have Tenant_, _Must Have Tenant_ are causing SELECT query in a large database table (eg:...
As per my understanding about IIS, stopping a website would still allow the application pool to continue running. Stopping the website merely just stops listening for requests but the worker...
The behaviour of `AbpAuthorizationFilter` for users who have logged in but doesn't have the required permission(s) is to redirect them to the login page. My unauthorised users were so confused...
According to the README, it doesn't matter if `util.js` is pre-loaded or lazy loaded. So I opted to pre-load the `util.js` using a `` tag at the top of the...