beginning to unify pandora.URL and pandora.Query as Ox.URL

This commit is contained in:
rlx 2011-09-20 21:50:00 +00:00
commit b7100792c5
5 changed files with 422 additions and 17 deletions

View file

@ -17,7 +17,10 @@ Ox.Clipboard = function() {
Ox.print('copy', JSON.stringify(clipboard));
},
paste: function(type) {
return clipboard;
return type ? clipboard.type : clipboard;
},
type: function(type) {
return type in clipboard;
}
};
}();