import $ from 'jquery'; import { Types } from '../types'; import * as Models from '../ivprog_elements'; import { LocalizedStrings } from '../../services/localizedStringsService'; import * as GlobalsManagement from '../globals'; import * as VariablesManagement from '../variables'; export function createFloatingCommand () { return $('
'+LocalizedStrings.getUI('text_comment')+'
'); } export function renderCommand (command) { var el = $('
' + command.comment_text + '
'); $(el).data('command', command); return el; }