This file contains 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
new Date(seconds * 1000).toISOString().substr(11, 8) |
This file contains 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
window.onscroll = function(ev) { | |
if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) { | |
alert("you're at the bottom of the page"); | |
} | |
}; |
This file contains 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
CORDOVA - MAC EMULATE | |
Android | |
- Install JDK | |
- Install Android Studio & SDK | |
- Install emulator | |
- Install Brew cli | |
- Install Gradle from Brew |
This file contains 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 getdata(index,itemArr,cat,type){ | |
$.ajax({ | |
url:url, | |
method:'POST', | |
data : "itemIds="+itemArr, | |
success:function(res){ | |
var food1 = eval(res); | |
if(type=="NORMAL" || type==undefined){ | |
for(var i=0;i < food1.length;i++){ |
This file contains 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 getItemKp(itemdIds, callback, loadMoreOptions){ | |
if(itemdIds.length > 0){ | |
$.ajax({ | |
type : "POST", url : baseUrl + "/kp/itemCache", data : "itemIds="+itemdIds , timeout: 5000, success : function(data) { | |
/** list Property | |
* | |
* data.id item Id | |
* data.title item name |
This file contains 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
var obj = document.getElementById('partitioned'); | |
obj.addEventListener("keydown", stopCarret); | |
obj.addEventListener("keyup", stopCarret); | |
function stopCarret() { | |
if (obj.value.length > 3){ | |
setCaretPosition(obj, 3); | |
} | |
} |
This file contains 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
var obj = document.getElementById('partitioned'); | |
obj.addEventListener("keydown", stopCarret); | |
obj.addEventListener("keyup", stopCarret); | |
function stopCarret() { | |
if (obj.value.length > 3){ | |
setCaretPosition(obj, 3); | |
} | |
} |
This file contains 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
var getUrlParameter = function getUrlParameter(sParam) { | |
var sPageURL = decodeURIComponent(window.location.search.substring(1)), | |
sURLVariables = sPageURL.split('&'), | |
sParameterName, | |
i; | |
for (i = 0; i < sURLVariables.length; i++) { | |
sParameterName = sURLVariables[i].split('='); | |
if (sParameterName[0] === sParam) { |
This file contains 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
<!DOCTYPE html> | |
<!-- Aysad Kozanoglu --> | |
<html> | |
<head> | |
<title>foto cek</title> | |
<style> | |
html { | |
-webkit-user-select: none; | |
} | |
</style> |