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
/** | |
* A module for calling the BTC-e trading API methods | |
* @author Eugene Maslovich <[email protected]> | |
*/ | |
var https = require('https'), | |
querystring = require('querystring'), | |
crypto = require('crypto'), | |
nonce = Math.round((new Date()).getTime() / 1000); |
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
jQuery.fn.extend({ | |
/** | |
* Smooth scrolling to element | |
* @param interval Scrolling interval | |
* @param offset Offset from an element | |
*/ | |
scrollTo: function (interval, offset) { | |
'use strict'; | |
if (typeof interval === 'undefined') { | |
interval = 1000; |
NewerOlder