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
| <div class="slider"> | |
| <label id="slider-label" class="slider-label isRight"></label> | |
| <input id="slider-input" class="slider-input" type="range" min="0" value="0" max="100"> | |
| </div> |
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
| CmdUtils.makeBookmarkletCommand({ | |
| name: "Evernote", | |
| description: "Save a note on Evernote.", | |
| icon: "http://www.evernote.com/favicon.ico", | |
| homepage: "http://www.makadia.com", | |
| author: {name: "Svapan Makadia", email: "codewzrd@hotmail.com"}, | |
| help: "Select content and invoke this command to save the selection as a note or just save the whole page without selecting anything.", | |
| url: "javascript:(function(){EN_CLIP_HOST='http://www.evernote.com';try{var%20x=document.createElement('SCRIPT');x.type='text/javascript';x.src=EN_CLIP_HOST+'/public/bookmarkClipper.js?'+(new%20Date().getTime()/100000);document.getElementsByTagName('head')[0].appendChild(x);}catch(e){location.href=EN_CLIP_HOST+'/clip.action?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title);}})();" | |
| }) |