mirror of
https://github.com/JanGross/quicknotes.git
synced 2025-11-30 23:37:16 +01:00
Fix title on new notes..
This commit is contained in:
@@ -13,10 +13,6 @@
|
||||
|
||||
$(document).ready(function () {
|
||||
|
||||
var translations = {
|
||||
newNote: $('#new-note-string').text()
|
||||
};
|
||||
|
||||
// this notes object holds all our notes
|
||||
var Notes = function (baseUrl) {
|
||||
this._baseUrl = baseUrl;
|
||||
@@ -551,7 +547,7 @@ View.prototype = {
|
||||
var self = this;
|
||||
$('#new-note').click(function () {
|
||||
var note = {
|
||||
title: translations.newNote,
|
||||
title: t('quicknotes', 'New note'),
|
||||
content: '',
|
||||
color: '#F7EB96'
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user