Index: /trunk/as3/com/jeroenwijering/models/LivestreamModel.as
===================================================================
--- /trunk/as3/com/jeroenwijering/models/LivestreamModel.as	(revision 485)
+++ /trunk/as3/com/jeroenwijering/models/LivestreamModel.as	(revision 487)
@@ -1,4 +1,4 @@
 ﻿/**
-* Wrapper for load and playback of Youtube videos through their API.
+* Wrapper for load and playback of Livestream channels through their API.
 **/
 package com.jeroenwijering.models {
@@ -33,5 +33,5 @@
 
 
-	/** Setup YouTube connections and load proxy. **/
+	/** Setup Livestream application loader. **/
 	public function LivestreamModel(mod:Model):void {
 		super(mod);
@@ -70,6 +70,5 @@
 				loader.load(new URLRequest(LOCATION),new LoaderContext(true,
 					ApplicationDomain.currentDomain,SecurityDomain.currentDomain));
-			} 
-			catch (e:SecurityError) {
+			} catch (e:SecurityError) {
 				loader.load(new URLRequest(LOCATION));
 			}
@@ -84,5 +83,11 @@
 
 
-	/** Play or pause the video. **/
+	/** Pause the livestream. **/
+	override public function pause():void {
+		stop();
+	};
+
+
+	/** Play the livestream. **/
 	override public function play():void {
 		player.channel = item['file'];
