Brad Richardson

Results 10 comments of Brad Richardson

@mentalernie At least we know that it isn't something in our own code, because the demo here: http://codef0rmer.github.io/angular-dragdrop/#!/ctrl, doesn't work either. After you spell the correct character, the letters are...

It would seem that the watcher for the data-drop and data-drag attributes is being killed prematurely. On lines 334 and 398 of the non-minified codebase is this: `if (killWatcher &&...

EDIT: The fix that I mentioned above, leads to some weird issues, where droppable areas are not accepting the draggables. I am still investigating.

@codef0rmer @mentalernie is correct. The data-drop feature is not working with a dynamic {{...}} approach. Your demo that I pasted the link to above shows that.

Here is how I have been able to overcome the issue: - Comment out the if statement on line 334: https://github.com/codef0rmer/angular-dragdrop/blob/master/src/angular-dragdrop.js#L334 - Comment out the if statement on line 398:...

Interested in the progress of this.

Thank you for that clarification. I apologize and will read your contribution guidelines for future reference.

This actually has to do with the z-index settings of md-select and md-panel. md-select's z-index is set to 90. md-panel has a default z-index of 80, but it allows you...

EDIT of last comment: I meant that we could step through the child elements of the md-panel and add higher z-index values. NOT added in the CSS. Late night when...