minor.
This commit is contained in:
parent
8901c29bd5
commit
b34c90ee2b
|
@ -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.
|
||||||
|
|
||||||
|
|
|
@ -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() {};
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue