Skip to content

Commit

Permalink
Update formatting and version
Browse files Browse the repository at this point in the history
  • Loading branch information
hansemannn committed Apr 8, 2017
1 parent e381e53 commit 6c77e95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ti.alternateicons.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Titanium Alternate Icons (Hyperloop)
* @version 1.0.1
* @version 1.1.0
* @author ccavazos
*/
var UIApplication = require('UIKit/UIApplication');
Expand All @@ -26,7 +26,7 @@ exports.alternateIconName = function() {
};

exports.setAlternateIconName = function(iconName, cb) {
UIApplication.sharedApplication.setAlternateIconNameCompletionHandler(iconName, function(error) {
UIApplication.sharedApplication.setAlternateIconNameCompletionHandler(iconName, function(error) {
if (!cb) {
return;
}
Expand All @@ -40,7 +40,7 @@ exports.setAlternateIconName = function(iconName, cb) {
}

cb(event);
});
});
};

exports.setDefaultIconName = function(cb) {
Expand Down

0 comments on commit 6c77e95

Please sign in to comment.