Skip to content

Commit

Permalink
implement isCreated function
Browse files Browse the repository at this point in the history
  • Loading branch information
Radosław Hryciów committed Jun 9, 2014
1 parent a0c8996 commit 975c85b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tiptop.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,6 @@
}

}
console.log('tiptops', _tiptops);
}

if (params.options.visible !== undefined) {
Expand Down Expand Up @@ -404,6 +403,10 @@
Tiptop.prototype.isVisible = function() {
return _visible;
};

Tiptop.prototype.isCreated = function() {
return _created;
};

if (typeof define === 'function' && define.amd) {
define('tiptop', [], function() {
Expand Down

0 comments on commit 975c85b

Please sign in to comment.