|
|
@@ -390,18 +390,6 @@ var View = FC.View = Class.extend({
|
|
|
},
|
|
|
|
|
|
|
|
|
- // Renders business-hours onto the view. Assumes updateSize has already been called.
|
|
|
- renderBusinessHours: function() {
|
|
|
- // subclasses should implement
|
|
|
- },
|
|
|
-
|
|
|
-
|
|
|
- // Unrenders previously-rendered business-hours
|
|
|
- unrenderBusinessHours: function() {
|
|
|
- // subclasses should implement
|
|
|
- },
|
|
|
-
|
|
|
-
|
|
|
// Signals that the view's content has been rendered
|
|
|
triggerRender: function() {
|
|
|
this.trigger('viewRender', this, this, this.el);
|
|
|
@@ -436,6 +424,22 @@ var View = FC.View = Class.extend({
|
|
|
},
|
|
|
|
|
|
|
|
|
+ /* Business Hours
|
|
|
+ ------------------------------------------------------------------------------------------------------------------*/
|
|
|
+
|
|
|
+
|
|
|
+ // Renders business-hours onto the view. Assumes updateSize has already been called.
|
|
|
+ renderBusinessHours: function() {
|
|
|
+ // subclasses should implement
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
+ // Unrenders previously-rendered business-hours
|
|
|
+ unrenderBusinessHours: function() {
|
|
|
+ // subclasses should implement
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
/* Dimensions
|
|
|
------------------------------------------------------------------------------------------------------------------*/
|
|
|
|