This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define(['lib'], function (lib) { | |
var PresetWidgetView = lib.marionette.ItemView.extend({ | |
template: lib.handlebars.compile( | |
'{{displayName}}' + | |
'<div class="btn-group-justified nooui-btngroup">' + | |
'<a href="#" class="btn btn-default nooui-button js-btn-on"> On </a>' + | |
'<a href="#" class="btn btn-default nooui-button js-btn-off"> Off </a>' + | |
'</div>'), | |
className: 'nooui-widget', |