bjorn2404 / jQuery-Store-Locator-Plugin

A store locator plugin using Google Maps API version 3
MIT License
495 stars 235 forks source link

Handlebars {{niceURL pretags}} #58

Closed monocraft closed 9 years ago

monocraft commented 9 years ago

You have a pretag in your template that use niceURL but where is this defined?

bjorn2404 commented 9 years ago

In init around line 126.

monocraft commented 9 years ago

Thank you again. I want to use your niceURL to clean up some html tag but it saw it only remove https:// and http:// so I added another.

Handlebars.registerHelper('strip-tag', function(context) {
      var html = context;
      return new Handlebars.SafeString(html);
    });