This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function openInWebView(url) | |
{ | |
var anchor = document.createElement('a'); | |
anchor.setAttribute('href', url); | |
//anchor.setAttribute('target', '_self'); | |
var dispatch = document.createEvent('HTMLEvents') | |
dispatch.initEvent('click', true, true); | |
anchor.dispatchEvent(dispatch); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'logger' | |
require 'openssl' | |
class UcellGateway | |
#dunno what this is, but it's yours :) | |
include MessageFilter | |
def initialize | |
@logger = Logger.new |