<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
-- Forward references | |
local soundID | |
-- Determine the platform type | |
-- "iPhoneOS" or "Android" or "Mac OS X" | |
-- | |
local isAndroid = "Android" == system.getInfo("platformName") | |
local isSimulator = "simulator" == system.getInfo("environment") |
var endpoints = { | |
'demo': 'https://www.google.it/search?hl=it&output=search' | |
}, | |
system = require('system'), | |
server = require('webserver').create(), | |
evaluate = function (page, func) { | |
var args = [].slice.call(arguments, 2); | |
var fn = "function() { return (" + func.toString() + ").apply(this, " + JSON.stringify(args) + ");}"; | |
return page.evaluate(fn); | |
}, |
.upcloo-over { | |
width:280px; | |
padding:5px 10px; | |
position:fixed; | |
top:auto; | |
left:auto; | |
bottom:auto; | |
right:auto; | |
z-index:99999; | |
display:block; |
<script> | |
(function(g,opts) { | |
g.upCloo = g.upCloo || {}; | |
g.upCloo.bootStrap = opts; | |
var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; | |
s.src = '../../js/upcloo.js'; | |
var n = document.getElementsByTagName('script')[0]; | |
n.parentNode.insertBefore(s,n); | |
})(this,{"pageId" : "123456","siteKey" : "MYSITEKEY"}); | |
</script> |
(function(g){ return "upcloo" in g && "suggest" in g.upcloo ? g.upcloo.suggest.getData = function(){ return ["SOME","JSON"];} :false;})(this); |
.clearform{ | |
display:inline-block; | |
margin-left:-16px; | |
cursor:pointer; | |
width:10px; | |
height:10px; | |
background-image:url('/close.gif'); | |
-webkit-box-shadow: 0px 0px 10px 5px #fff ; | |
} |