added use strict
This commit is contained in:
src
containers
editable-form
element
inputs-ext
inputs
@ -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));
|
||||
|
Reference in New Issue
Block a user