Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/js/device/cocoon_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Cocoon.define("Cocoon.Utils" , function(extension){
* @param {boolean} saveToGallery Optional value to specify if the capture image should be stored in the device image gallery or not.
* @param {function} callback Response callback, check the error property to monitor errors. Check the 'url' property to get the URL of the saved Image
* @example
* Cocoon.Utils.captureScreenAsync("myScreenshot.png", Cocoon.Utils.StorageType.TMP_STORAGE, false, Cocoon.Utils.CaptureType.EVERYTHING, function(url, error){
* Cocoon.Utils.captureScreenAsync("myScreenshot.png", Cocoon.Utils.StorageType.TMP_STORAGE, Cocoon.Utils.CaptureType.EVERYTHING, false, function(url, error) {
* ...
* });
*/
Expand Down Expand Up @@ -234,4 +234,4 @@ Cocoon.define("Cocoon.Utils" , function(extension){

return extension;

});
});