Skip to content
Snippets Groups Projects
Select Git revision
  • 17e1661b0c9fda1aa58ad6ee866a1927a9bda7d9
  • master default
  • JS-based-scroll-rendering
  • Paul_Marius_Level
  • Paul_Marius_2
  • Paul_Marius
  • Andi_Mark
  • be-UnityWebView
  • gitignoreFrameitServer
  • ZimmerBSc
  • Bugfix_StageLoading
  • stages
  • MAZIFAU_Experimental
  • tsc/coneworld
  • tsc/fact-interaction
  • marcel
  • MaZiFAU_TopSort
  • mergeHelper
  • zwischenSpeichern
  • tempAndrToMaster
  • SebBranch
  • 3.0
  • v2.1
  • v2.0
  • v1.0
25 results

PopupBehavior.cs

Blame
    • MaZiFAU's avatar
      436df6b7
      QOL; Bug Fixes; Known Bugs; · 436df6b7
      MaZiFAU authored
      QOL:
      +Factexplorer: Quick apply and hide
      +Pushout Highlights: also in FactScreen
      +using PopUp for dynamic scroll applications
      Bug Fixes:
      +Too fast Fact application forbidden, crashes Server otherwise
      +Repaired PopUp
      +(dirty->MMT) Hot Pached deserialization error when an Scroll error occured
      Known Bugs:
      + Entering a level while waiting on scrolls crahes game
      436df6b7
      History
      QOL; Bug Fixes; Known Bugs;
      MaZiFAU authored
      QOL:
      +Factexplorer: Quick apply and hide
      +Pushout Highlights: also in FactScreen
      +using PopUp for dynamic scroll applications
      Bug Fixes:
      +Too fast Fact application forbidden, crashes Server otherwise
      +Repaired PopUp
      +(dirty->MMT) Hot Pached deserialization error when an Scroll error occured
      Known Bugs:
      + Entering a level while waiting on scrolls crahes game
    GetManifestForFrameCommand.cs 591 B
    using MasterDevs.ChromeDevTools;
    using Newtonsoft.Json;
    using System.Collections.Generic;
    
    namespace MasterDevs.ChromeDevTools.Protocol.iOS.ApplicationCache
    {
    	/// <summary>
    	/// Returns manifest URL for document in the given frame.
    	/// </summary>
    	[Command(ProtocolName.ApplicationCache.GetManifestForFrame)]
    	[SupportedBy("iOS")]
    	public class GetManifestForFrameCommand: ICommand<GetManifestForFrameCommandResponse>
    	{
    		/// <summary>
    		/// Gets or sets Identifier of the frame containing document whose manifest is retrieved.
    		/// </summary>
    		public string FrameId { get; set; }
    	}
    }