diff --git a/app/assets/javascripts/discourse/views/buttons/category_notification_dropdown_view.js b/app/assets/javascripts/discourse/views/buttons/category_notification_dropdown_view.js deleted file mode 100644 index cb0b99babaa..00000000000 --- a/app/assets/javascripts/discourse/views/buttons/category_notification_dropdown_view.js +++ /dev/null @@ -1,39 +0,0 @@ -// /** -// This view handles rendering of a button with an associated drop down - -// @class CategoryNotificationDropdownButtonView -// @extends Discourse.View -// @namespace Discourse -// @module Discourse -// **/ -// Discourse.CategoryNotificationDropdownButtonView = Discourse.View.extend({ -// //classNameBindings: [':btn-group', 'hidden'], -// //shouldRerender: Discourse.View.renderIfChanged('text', 'text'), -// //templateName: 'category_notification_dropdown', -// // didInsertElement: function() { -// // // If there's a click handler, call it -// // if (this.clicked) { -// // var dropDownButtonView = this; -// // this.$('ul li').on('click.dropdown-button', function(e) { -// // e.preventDefault(); -// // dropDownButtonView.clicked($(e.currentTarget).data('id')); -// // return false; -// // }); -// // } -// // }, - -// // willDestroyElement: function() { -// // this.$('ul li').off('click.dropdown-button'); -// // }, - -// click: function(foo) { -// console.log(foo); -// }, - -// actions: { -// setNotification: function(foo){ -// console.log(foo); -// } -// } - -// });