Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewplummer committed Sep 7, 2012
1 parent e831f6a commit 8e7c1da
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 38 deletions.
19 changes: 0 additions & 19 deletions release/edge/precompiled/development/date.js
Expand Up @@ -1622,25 +1622,6 @@
return this;
},

/***
* @method toUTC()
* @returns Date
* @short Converts the date to UTC time, effectively subtracting the timezone offset.
* @extra Note here that the method %getTimezoneOffset% will still show an offset even after this method is called, as this method effectively just rewinds the date. %format% however, will correctly set the %{tz}% (timezone) token as UTC once this method has been called on the date, and %isUTC% will return %true%. Once a date is set to UTC the only way to unset is the %clone% method.
* @example
*
* new Date().toUTC() -> current time in UTC
*
***/
/*
'toUTC': function() {
if(this.utc) return this;
//var d = this.clone().addMinutes(this.getTimezoneOffset());
this.utc = true;
return this;
},
*/

/***
* @method isUTC()
* @returns Boolean
Expand Down
19 changes: 0 additions & 19 deletions release/edge/sugar-edge-full.development.js
Expand Up @@ -3675,25 +3675,6 @@
return this;
},

/***
* @method toUTC()
* @returns Date
* @short Converts the date to UTC time, effectively subtracting the timezone offset.
* @extra Note here that the method %getTimezoneOffset% will still show an offset even after this method is called, as this method effectively just rewinds the date. %format% however, will correctly set the %{tz}% (timezone) token as UTC once this method has been called on the date, and %isUTC% will return %true%. Once a date is set to UTC the only way to unset is the %clone% method.
* @example
*
* new Date().toUTC() -> current time in UTC
*
***/
/*
'toUTC': function() {
if(this.utc) return this;
//var d = this.clone().addMinutes(this.getTimezoneOffset());
this.utc = true;
return this;
},
*/

/***
* @method isUTC()
* @returns Boolean
Expand Down

0 comments on commit 8e7c1da

Please sign in to comment.