small change to player form

This commit is contained in:
drigato 2015-03-10 16:47:08 -04:00
parent 7744e6b656
commit 8198d89095
2 changed files with 1 additions and 2 deletions

View File

@ -17,5 +17,5 @@ class EmbeddablePlayerController extends Zend_Controller_Action
public function embedCodeAction()
{
$this->view->layout()->disableLayout();
}
}
}

View File

@ -10,7 +10,6 @@ class Application_Form_EmbeddablePlayer extends Zend_Form_SubForm
$embedSrc = new Zend_Form_Element_Text('player_embed_src');
$embedSrc->setAttrib("readonly", "readonly");
$embedSrc->setAttrib("class", "player_embed_src");
$embedSrc->setValue('<iframe frameborder="0" src="http://localhost/embeddableplayer/embed-code"></iframe>');
$embedSrc->removeDecorator('label');
$this->addElement($embedSrc);