eb12c84e9a
Canonical names to forced to lowercase Made user model compatible to other DBs CSS adjustments Basic Firepad support (no presence info) Cleaned up JS a bit Added ability to remove draft from localstorage Added support for drafts on multiple pages Alert user if page changes, issue #1
13 lines
402 B
JavaScript
13 lines
402 B
JavaScript
// Handlebar helpers
|
|
Handlebars.registerHelper('well', function(options) {
|
|
return '<div class="well">' + options.fn(this) + '</div>';
|
|
});
|
|
|
|
Handlebars.registerHelper('well-sm', function(options) {
|
|
return '<div class="well well-sm">' + options.fn(this) + '</div>';
|
|
});
|
|
|
|
Handlebars.registerHelper('well-lg', function(options) {
|
|
return '<div class="well well-lg">' + options.fn(this) + '</div>';
|
|
});
|