mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
init -> _init
This commit is contained in:
parent
4f55751d8a
commit
69bbd38444
@ -15,7 +15,7 @@
|
||||
var counter = 0;
|
||||
|
||||
$.widget("ui.magnifier", {
|
||||
init: function() {
|
||||
_init: function() {
|
||||
var self = this,
|
||||
o = this.options;
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
(function($) {
|
||||
|
||||
$.widget("ui.progressbar", {
|
||||
init: function() {
|
||||
_init: function() {
|
||||
|
||||
$.extend(this.options, {
|
||||
_interval: this.options.interval
|
||||
|
@ -13,7 +13,7 @@
|
||||
(function($) {
|
||||
|
||||
$.widget("ui.spinner", {
|
||||
init: function() {
|
||||
_init: function() {
|
||||
|
||||
//Initialize needed constants
|
||||
var self = this;
|
||||
|
@ -13,13 +13,13 @@
|
||||
(function($) {
|
||||
|
||||
$.widget("ui.tabs", {
|
||||
init: function() {
|
||||
_init: function() {
|
||||
this.options.event += '.tabs'; // namespace event
|
||||
|
||||
// create tabs
|
||||
this._tabify(true);
|
||||
},
|
||||
setData: function(key, value) {
|
||||
_setData: function(key, value) {
|
||||
if ((/^selected/).test(key))
|
||||
this.select(value);
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user