2019-06-03
Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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(W, D, $, ns, _){ | |
_.detectIE11 = function(ua, doc){ | |
/** | |
*/ | |
if ((ua.match(/MSIE 10.0/i))) { | |
doc.className = doc.className + " ie10"; | |
} else if((ua.match(/rv:11.0/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
.divfactory { | |
background: red; | |
width: 20px; | |
height: 20px; | |
position: relative; | |
margin: 10px; | |
-moz-box-shadow: 2px 2px 5px #888; | |
-webkit-box-shadow: 2px 2px 5px #888; | |
box-shadow: 2px 2px 5px #888; | |
} |
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
.divfactory { | |
background: red; | |
width: 20px; | |
height: 20px; | |
position: relative; | |
margin: 10px; | |
} |
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
<div id="log"></div> |