Skip to content

Commit

Permalink
updated version to v0.9.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jackocnr committed Jan 20, 2014
1 parent ed1e5eb commit 5eb1eeb
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
5 changes: 3 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@ module.exports = function(grunt) {
'license: <%= pkg.license %>\n'+
'author: <%= pkg.author %>\n'+
'*/\n'+
// wrap in UMD - see https://github.com/umdjs/umd/blob/master/jqueryPlugin.js
'(function (factory) {\n'+
' if (typeof define === \'function\' && define.amd) {\n'+
' if (typeof define === "function" && define.amd) {\n'+
' // AMD. Register as an anonymous module.\n'+
' define([\'jquery\'], function($){factory($, window, document);});\n'+
' define(["jquery"], function($){factory($, window, document);});\n'+
' } else {\n'+
' // Browser globals\n'+
' factory(jQuery, window, document);\n'+
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intl-tel-input",
"version": "0.9.8",
"version": "0.9.11",
"main": [
"./build/js/intlTelInput.min.js",
"./build/img/flags16.png",
Expand Down
6 changes: 3 additions & 3 deletions build/js/intlTelInput.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/*
intl-tel-input
version: 0.9.8
version: 0.9.11
description: A jQuery plugin for entering international telephone numbers
repository: https://github.com/Bluefieldscom/intl-tel-input.git
license: MIT
author: Jack O'Connor (http://jackocnr.com)
*/
(function (factory) {
if (typeof define === 'function' && define.amd) {
if (typeof define === "function" && define.amd) {
// AMD. Register as an anonymous module.
define(['jquery'], function($){factory($, window, document);});
define(["jquery"], function($){factory($, window, document);});
} else {
// Browser globals
factory(jQuery, window, document);
Expand Down
6 changes: 3 additions & 3 deletions build/js/intlTelInput.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion intl-tel-input.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intl-tel-input",
"version": "0.9.8",
"version": "0.9.11",
"description": "A jQuery plugin for entering international telephone numbers",
"keywords": [
"international",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intl-tel-input",
"version": "0.9.8",
"version": "0.9.11",
"description": "A jQuery plugin for entering international telephone numbers",
"keywords": [
"international",
Expand Down

0 comments on commit 5eb1eeb

Please sign in to comment.