Browse Source

Added basic global variable declaration

OmnomIRC or $o will allow you to reference the globally available
OmnomIRC API.
Nathaniel van Diepen 12 years ago
parent
commit
f451e1319d
1 changed files with 3 additions and 1 deletions
  1. 3 1
      www/js/omnomirc.js

+ 3 - 1
www/js/omnomirc.js

@@ -18,5 +18,7 @@
 	along with OmnomIRC.  If not, see <http://www.gnu.org/licenses/>.
 */
 (function(window,undefined){
-
+	var $o = window.OmnomIRC = window.$o = function(){
+		
+	};
 })(window);