This commit is contained in:
Christopher Jeffrey 2015-03-31 06:12:14 -07:00
parent 8901c29bd5
commit b34c90ee2b
3 changed files with 3 additions and 3 deletions

View File

@ -1498,7 +1498,7 @@ all code is your original work. `</legalese>`
## License ## License
Copyright (c) 2013, Christopher Jeffrey. (MIT License) Copyright (c) 2013-2015, Christopher Jeffrey. (MIT License)
See LICENSE for more info. See LICENSE for more info.

View File

@ -3672,7 +3672,7 @@ Program.prototype.savePrivateValues = function(params) {
Program.prototype.manipulateWindow = function() { Program.prototype.manipulateWindow = function() {
var args = slice.call(arguments); var args = slice.call(arguments);
var callback = typeof args[args.length-1] === 'function' var callback = typeof args[args.length - 1] === 'function'
? args.pop() ? args.pop()
: function() {}; : function() {};

View File

@ -767,7 +767,7 @@ Tput.prototype._compile = function(info, key, str) {
} }
function stmt(c) { function stmt(c) {
if (code[code.length-1] === ',') { if (code[code.length - 1] === ',') {
code = code.slice(0, -1); code = code.slice(0, -1);
} }
code += c; code += c;