gutterBoxTemplate = require('libs/text!./gutterBox.html');
-var GutterView = function(gutter) {
+var GutterView = function(gutter, tutorial) {
gutter.on('show', function(group) {
if(this.groupView) {
this.groupView.remove();
this.groupView.show();
}, this);
this.dom = $('<div class="gutter"></div>');
+ var tutorialHolder = $('<div/>').attr('data-toggle', 'tutorial').attr('data-tutorial', tutorial.index)
+ .attr('data-placement', 'left').attr('data-content', tutorial.text).css('height', '200px');
+ this.dom.append($('<div>/').css('height', '0').append(tutorialHolder));
};