added use strict

This commit is contained in:
vitalets
2013-04-11 23:40:05 +04:00
parent b45ee2c3d9
commit fd2898de94
28 changed files with 62 additions and 20 deletions

@ -8,6 +8,7 @@ Applied as jQuery method.
@uses editableform
**/
(function ($) {
"use strict";
var Popup = function (element, options) {
this.init(element, options);

@ -3,6 +3,7 @@
* ---------------------
*/
(function ($) {
"use strict";
//copy prototype from EditableContainer
//extend methods

@ -4,6 +4,7 @@
* requires bootstrap-popover.js
*/
(function ($) {
"use strict";
//extend methods
$.extend($.fn.editableContainer.Popup.prototype, {

@ -4,6 +4,7 @@
* requires jquery.poshytip.js
*/
(function ($) {
"use strict";
//extend methods
$.extend($.fn.editableContainer.Popup.prototype, {

@ -4,7 +4,8 @@
* requires jquery ui 1.9.x
*/
(function ($) {
"use strict";
//extend methods
$.extend($.fn.editableContainer.Popup.prototype, {
containerName: 'tooltip', //jQuery method, aplying the widget
@ -105,4 +106,4 @@
});
}(window.jQuery));
}(window.jQuery));