Jump to content

Adam Bro

Members
  • Posts

    12
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by Adam Bro

  1. 2 minutes ago, CodingJungle said:

    that works now for a temp fix 🙂

    but it looks like if i introduce a 25ms delay (the card will turn slight translucent when it is activate to begin moving), it seems to solve the problem. i think it was just one of those weird race conditions, that it was activating too fast, but not all the events/triggers weren't off at that point, so the browser thought you were highlight text. anyway it should be fixed in the final release 🙂

    Sounds good either way :^)

    And sidenote, holy crap - I was not expecting the noticeable improvement in quality from 2.0.1 to 2.1.0. Stuff like when you open the UI for the cards especially looks noticeably better. This is some quality stuff ;^)

  2. Just now, CodingJungle said:

    its a weird little thing, i use to have a delay on the triggering of the move, it was like a 100ms. i had this delay cause Firefox when you dragged a card and dropped it, would open it (chrome wouldn't). so i added it, but in chrome the delay would cause issues. like sometimes it would take 2 or 3 seconds to trigger that you wanted to move the card, other times it would grab like the contents of the card, but leave the square box behind. so i removed the delay, now it seems if you you grab the card on any of the text on it (like the title area or the like if it has a date or percentage done from the list), it will do this. it is one of the things i've noticed, not sure how to fix it yet, one of the things i'm debugging, so hopefully i'll have it fixed soon. 

    Check my edit, might not be the most ideal fix but I've put in a CSS workaround that seems to do the trick:

    #elStratagemColumns {
        user-select: none;
    }

     

  3. 11 minutes ago, CodingJungle said:
    i guess i never really noticed the style changing lol, as my attention is often in the console/viewport area. I use a material theme in my IDE, have been for the last few years, so it could be why i didn't notice it, as i was already use to the flat look. 

    I'm fairly sure I've got a higher attention to detail because I've basically been told the same thing by friends of mine - not noticing it until I've pointed it out.

    Also, another minor issue that I'm not sure if you're aware of (I've confirmed this isn't a browser issue), or if you can even fix - is that dragging cards/columns around will also select text along the way. Not a big deal really - but so far that appears to be the only remaining issue. 93c5c23f29abd3afb9bba89be1a7a602.png

     

    EDIT: never mind - found out I can just use a CSS tweak to fix it :biggrin:, leaving it below if anyone's interested:

    #elStratagemColumns {
        user-select: none;
    }

     

  4. 4 minutes ago, CodingJungle said:

    please don't tell me it is IE11 🙂 non-chromium Edge i can at least understand.

    It's an old version of Chrome - the last version to include an option to revert to the non-material design. I cannot stand the new material UI and it's only gotten worse over time imo. I've stuck with it because save for like two websites that I barely use, it works flawlessly.

    4 minutes ago, CodingJungle said:

    yeah the theme settings are funky in IPS, i don't like them and often don't include them cause of how flaky they can be, here's to hoping for LESS or something in the future 🙂

    🙏

     

  5. 20 minutes ago, CodingJungle said:

    does it owe you money? save your puppy from a fire? or something else? 😛

    but i've sent you a PM with the latest beta. 

     

    Sweet, appreciate it. And no i just have attachment issues :laugh:

    EDIT: Can confirm that the beta build fixed it (and the colors too) - thanks a ton!

  6. 1 minute ago, CodingJungle said:

    yeah its the scroll being triggered,  if you would like i can send you the beta which has the fix in it, as it will probably be next week before i release the new version (as it is being tested now).

    how old of a browser are we talking about? cause my IDE doesn't throw an error on this when it is configured for emacscript 6, but if i set it to emacscript 5 it will. i'll have them remove in the next version as i don't need the complete closure in the one method, and since i'm already in the file i'll remove it from the other one too. 

    Please do - that'd be incredibly helpful. Even if there's other bugs, this bug in particular makes the whole thing unusable for me lmao

    And yeah it's a fairly old browser - one that realistically shouldn't be used in 2020 but hey. Either way I appreciate it!

  7. @CodingJungle Didn't fix anything with the duplicating cards. A couple other details that I should've mentioned is that:

    • The cards that duplicate don't show on the board immediately - they only appear near when page loading has finished, and then afterwards begin duplicating a number of times
    • There are other columns with less cards and they don't have the issue at all

     

    EDIT: It actually appears to happen with any column that has more than 2 cards.

     

    Also this is sort of unrelated, but there appears to be a slight JS issue that breaks older browser compatibility in front_front_projects.js (if you want me to remove the JS code just lemme know and I will):

                        } else {
                            let html = '<div id="formWarning"><span class="ipsType_warning">Credentials are invalid!</span></div>';
                            secret.parents('li').addClass('ipsFieldRow_error');
                            secret.after(html);
                        }
                    },
                    complete: function(data) {},
                }, );   //<<<<<<<<< LINE 1311 when run through unminify.com - Removing the "," fixes it
            },
        });
                                            if (data.hasOwnProperty('locGroup')) {
                                                ips.stratagem.main.emit('updateTeams', data);
                                            }
                                        },
                                        complete: function() {}
                                    });
                                },
                                cancel: function(e) {},
                            },
                        });
                    }, ); //<<<<<<<<<<< LINE 1394 when run through unminify.com - Removing the "," once again fixes it
                },
                formSubmit = function() {

    I know it's pretty low on the priority list - but it'd be really great if you fixed this in a future update so I don't have to keep editing files manually :smile:

  8. Hey, just purchased Stratagem and it looks really nice - however, I'm currently having a pretty awful issue where cards will be displayed on the page multiple times. They all open the same card ID so it doesn't seem like it's being duplicated in the database, but they're all placed onto the page a number of times.

    The issue can be seen in this screenshot: 5c741de5f9569d37e4322c5c21e0b46f.png

×
×
  • Create New...