1 package org.jahia.services.htmleditors; 2 3 11 12 public class MozillaGeckoTester implements EditorCompatibilityTesteable { 13 public MozillaGeckoTester() { 14 } 15 16 public boolean isCompatible(ClientCapabilities clientCapabilities) { 17 String clientAgent = clientCapabilities.getClientAgent(); 18 if (!(clientAgent.indexOf("Mozilla") != -1)) { 19 return false; 20 } 21 if (!(clientAgent.indexOf("Gecko") != -1)) { 22 return false; 23 } 24 return true; 25 } 26 27 } | Popular Tags |