From 86b4f5377791cb0fbe6c2381633bd2eb7bf972f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Hanol?= Date: Mon, 23 Jun 2014 17:04:45 +0200 Subject: [PATCH] TRIVIAL: remove commented file --- .../category_notification_dropdown_view.js | 39 ------------------- 1 file changed, 39 deletions(-) delete mode 100644 app/assets/javascripts/discourse/views/buttons/category_notification_dropdown_view.js 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 cb0b99baba..0000000000 --- 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); -// } -// } - -// });