Skip to content

Instantly share code, notes, and snippets.

@canonic-epicure
Created November 5, 2009 20:12
Show Gist options
  • Save canonic-epicure/227342 to your computer and use it in GitHub Desktop.
Save canonic-epicure/227342 to your computer and use it in GitHub Desktop.
Class('Test.Run.Harness.Browser.UI.Viewport', {
xtype : 'my-viewport',
isa : Ext.Viewport,
have : {
title : null,
harness : null
},
override : {
initComponent : function () {
Ext.apply(this, {
slots : true
....
})
this.SUPER()
}
},
methods : {
addUrlRecord : function (url) {
...
},
testStart : function (test) {
...
},
testUpdate : function (test, result) {
...
},
testEnd : function (test) {
...
},
removeTest : function (test) {
...
}
}
})
//eof Test.Run.Harness.Browser.UI.Viewport
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment