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
//refactor code | |
var findWhere = ['a.ewEdit', 'a.ewView']; | |
var isBinded = false; | |
var findIndex = 0; | |
while(!isBinded && findIndex < findWhere.length){ | |
findIndex++; | |
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
/* | |
* Copyright (C) 2006 The Android Open Source Project | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 map = new google.maps.Map(document.getElementById('map'), { | |
zoom: 10, | |
center: new google.maps.LatLng(-33.92, 151.25), | |
mapTypeId: google.maps.MapTypeId.ROADMAP | |
}); | |
var template = [ | |
'<?xml version="1.0"?>', | |
'<svg width="26px" height="26px" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg">', | |
'<circle stroke="#222" fill="{{ color }}" cx="50" cy="50" r="35"/>', |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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> | |
<html> | |
<head> | |
<title>save scroll state</title> | |
<style type="text/css" media="screen"> | |
.single-post{ | |
padding: 20px; | |
margin: 20px 0; | |
width: 300px; | |
height: 400px; |
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 storage = {"name":"hoang-anh", "rong":"10m", "dai":"20m"}; | |
if(typeof Object.create != 'function'){ | |
Object.create = function(object){ | |
var f = function(){}; | |
f.prototype = object; | |
return new f(); | |
}; | |
} | |
var storage_1 = Object.create(storage); |
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 print_r(theObj, div){ | |
div = typeof div == 'undefined'? $('body') : div; | |
if(theObj.constructor == Array || theObj.constructor == Object){ | |
div.append("<ul>") | |
for(var p in theObj){ | |
if(theObj[p].constructor == Array || theObj[p].constructor == Object){ | |
div.append("<li>["+p+"] => "+typeof(theObj)+"</li>"); | |
div.append("<ul>") | |
print_r(theObj[p]); | |
div.append("</ul>") |