Phil Freo

Results 112 comments of Phil Freo

+1 for fixing this. Right now the naive way to use this plugin with dynamic content is to just call `$('.timeago').timeago()` after every time you add more content which is...

@cburgmer you should remove the `clear` argument. Hope this pull request gets accepted... it's a major improvement even if you don't use jquery-livequery

`remove` is probably the best name (matches jQuery's $.remove functionality) if it turns off the timeago functionality and fully cleans up everything. You should also look at #30 - that's...

This can be easily reproduced. If you paste an animated .gif into Froala (latest version) what actually gets uploaded is a non-animated .png. Can this be fixed?

You should `git submodule update --init --recursive` after each `switch` and `sync` so that people don't have to think about submodules in most cases. Not a separate command!

Understandable, but it would still be nice to have an option for GitHub flavored. In my world that's where Markdown ends up getting used most, so I was looking for...

I'm seeing a similar issue where the 2nd-level unordered list items have a space below them, however this is **only** a problem on specific rendering themes. It is a problem...

Let's move discussion about this use case back to #273. I opened this issue for other use cases where you plan on re-rendering the form anyway (when it's not currently...

Current workaround in the case where you want to take an existing form instance, tweak the schema, and re-display it: ``` form.schema = _.result(this.model, 'schema'); // or whatever form.initialize(); form.render();...