rubyx-debugger/app/main/models/blocks_model.rb

9 lines
205 B
Ruby
Raw Normal View History

2015-07-30 09:09:04 +02:00
class BlocksModel < Volt::ArrayModel
def instruction_changed old , ins
self.last._class_name = "" if( page._blocks.length > 0)
self << { :name => ins.to_s , :class_name => "active" }
end
end