Exemplo n.º 1
0
		public Controller(View v)
		{
			Instance = this;
			this.View = v;
			this.Server = v.server;

			if (Misc.BrowserIsIE)
				JQueryAPI.JQuery(Document.Body).ready(new Action(initialise));
			else
				initialise();
		}
Exemplo n.º 2
0
		public View(string clientId)
			 : base(clientId)
		{
			this.clientId = clientId;
			this.server = new Server();
		}