David Llop

Results 9 comments of David Llop

In teem I do this to erase a file: ``` js $scope.project.image = new swellRT.FileObject(undefined); ``` And it throws the following error: ![captura de pantalla de 2016-06-14 12-59-46](https://cloud.githubusercontent.com/assets/16879027/16040480/fe3f3070-322f-11e6-8f61-b274500c5f4c.png)

But it is not implemented in teem yet.

I'm on it, it is because of a SwellRT API change.

Not related with what I was fixing anymore. ![Error screenshot](https://cloud.githubusercontent.com/assets/16879027/20438338/8718138c-adb7-11e6-8fa9-23db3c4561f9.png) This is the error that appears when clicking on a need in firefox.

You can add placeholders to contenteditable elements using only CSS, maybe `.swellrt-placeholder` element isn't needed. ``` css .swellrt-editor [contenteditable=true]:empty:before { content: attr(placeholder); display: block; /* For Firefox */ } ```...

It simply does not provide a detect language function; so, we have to trust on angular-translate's one or write our own.

We are already using Angular UI, so we do not need any more library. We can use `uib-tooltip` directive, as described here: https://angular-ui.github.io/bootstrap/#/tooltip And these are the material design guidelines...

@elenamv I don't understand if you refer to login/register/forgotten-password forms. We are already using ngSubmit there, and they work when pressing enter if they are valid. Maybe we need to...