Skip to content

Commit

Permalink
add labels
Browse files Browse the repository at this point in the history
  • Loading branch information
faust45 committed Feb 11, 2012
1 parent 3f1b98a commit 5804535
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/javascripts/admin/track_form.js 100644 → 100755
Expand Up @@ -38,12 +38,12 @@ View.TrackForm = {
fields.authorID = AuthorInput.create(); fields.authorID = AuthorInput.create();
fields.tags = TagsInput.create(); fields.tags = TagsInput.create();
fields.recordDate = DateInput.create(); fields.recordDate = DateInput.create();
fields.bookmarks = SimpleInput.create('textarea', {cols: '60', rows: '15'});
fields.mp3File = Mp3FileInput.create(); fields.mp3File = Mp3FileInput.create();
fields.albums = AlbumsInput.create(); fields.albums = AlbumsInput.create();
fields.deleteButton = Button.create('/images/delete.png', deleteTrack); fields.deleteButton = Button.create('/images/delete.png', deleteTrack);
fields.photos = PhotosInput.create('/admin/audios/upload/photo'); fields.photos = PhotosInput.create('/admin/audios/upload/photo');
fields.extracts = SimpleInput.create('textarea', {cols: '60', rows: '15'}); fields.bookmarks = SimpleInput.create('textarea', {cols: '60', rows: '15', 'data-label': 'Bookmarks'});
fields.extracts = SimpleInput.create('textarea', {cols: '60', rows: '15', 'data-label': 'Quotes'});
fields.description = SimpleInput.create('textarea', {cols: '60', rows: '15', 'data-label': 'Description'}); fields.description = SimpleInput.create('textarea', {cols: '60', rows: '15', 'data-label': 'Description'});
fields.keywords = SimpleInput.create('textarea', {cols: '60', rows: '15', 'data-label': 'Keywords'}); fields.keywords = SimpleInput.create('textarea', {cols: '60', rows: '15', 'data-label': 'Keywords'});


Expand Down

0 comments on commit 5804535

Please sign in to comment.