From 4cef99310b1cc224aa4b1432c4140662dc5a836d Mon Sep 17 00:00:00 2001 From: anovi Date: Wed, 18 Jun 2014 23:34:21 +0400 Subject: [PATCH] Fixed query path --- dist/selectonic.js | 10 +++++----- dist/selectonic.min.js | 2 +- libs/jquery-loader.js | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dist/selectonic.js b/dist/selectonic.js index 4a0dba4..af77eaa 100644 --- a/dist/selectonic.js +++ b/dist/selectonic.js @@ -1,6 +1,6 @@ -/*! Selectonic - v0.4.2 - 2014-06-18 -* https://github.com/anovi/selectonic -* Copyright (c) 2014 Alexey Novichkov; Licensed MIT */ +/*! Selectonic - v0.4.3 - 2014-06-18 +* https://github.com/anovi/selectonic +* Copyright (c) 2014 Alexey Novichkov; Licensed MIT */ (function($, window, undefined) { 'use strict'; @@ -1564,6 +1564,6 @@ return this.each( function(key, elem) { if ( !Plugin.getDataObject(elem) ) { new Plugin( elem, options ); } }); - }; - + }; + }(jQuery, window)); \ No newline at end of file diff --git a/dist/selectonic.min.js b/dist/selectonic.min.js index 545f71f..00be20e 100644 --- a/dist/selectonic.min.js +++ b/dist/selectonic.min.js @@ -1,4 +1,4 @@ -/*! Selectonic - v0.4.2 - 2014-06-18 +/*! Selectonic - v0.4.3 - 2014-06-18 * https://github.com/anovi/selectonic * Copyright (c) 2014 Alexey Novichkov; Licensed MIT */ diff --git a/libs/jquery-loader.js b/libs/jquery-loader.js index 1f8e52a..c8ef9fb 100644 --- a/libs/jquery-loader.js +++ b/libs/jquery-loader.js @@ -1,6 +1,6 @@ (function() { // Default to the local version. - var path = '../bower_components/jquery/jquery.js'; + var path = '../bower_components/jquery/dist/jquery.js'; // var path = '../bower_components/jquery-1.10.2/jquery.js'; // Get any jquery=___ param from the query string. var jqversion = location.search.match(/[?&]jquery=(.*?)(?=&|$)/);